Pyro5 icon indicating copy to clipboard operation
Pyro5 copied to clipboard

Pyro 5 - Python remote objects

Results 18 Pyro5 issues
Sort by recently updated
recently updated
newest added

Hi, we were almost done migrating our use cases from Pyro4 to Pyro5 when I noticed this ```python def asyncproxy(*args, **kwargs): raise NotImplementedError("async proxy is no longer available in Pyro5")...

I want to Proxy an object using Pyro5, which has a `__call__` method defined. Therefore, I can do `object()` but when I then use Pyro5 and have ``` proxy_object =...

An autoproxy consists of a server object, and a client proxy. When the client proxy is released, the server object should be as well. Add a few simple tests to...

I'm trying to take an existing Python library, and allow it to be used remotely over the network. The library creates and returns Python objects which contain C library handles,...

I'm currently trying to detect a thread deadlocked in the remote method on the server side. The goal is to auto restart the server in this case. To do that...

## Goals Pyro5 is a great library to accelerate development for python IPC projects. However, it lacks two things that are necessary for our use cases. Firstly, it doesn't have...

In essence I need a message bus daemon and separate mover of python objects daemon on one server. Ideally, I need message bus on localhost to serialize input. on the...

https://pypi.org/project/msgpack-numpy/ Seems like this solves the NumPy serialization problem. Add this to the docs in the numpy chapter.