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

This bit: https://github.com/irmen/Pyro5/blob/0f09262d4bd3957db3fa0d3ce3efbe7390093aed/Pyro5/serializers.py#L291-L297 will not call special serializers created via `Pyro5.api.register_class_to_dict`. I sense there must be some reason for that. What is it? Context: I am hitting a case where...

cgi module will be removed in Python 3.13 replace cgi.parse with urllib.parse.parse_qs

Server sockets are created with noinherit, should client sockets have this too? Does this avoid proxy connection issues with forking/ multiprocessing?

enhancement

This isn't so much an issue with the very nice and well documented package that is Pyro, rather with my own knowledge in python and multi-threading. I'd like to call...

We are interested in extending nameserver functionality. In particular, registering the multiple instances of same class and letting nameserver to generate unique name for them. The idea is to use...

I am using Python 3.12.1 on both Windows 11 with Pyro5 5.15, and I started out my testing of Pyro5 with the example show here: https://pyro5.readthedocs.io/en/latest/intro.html#simple-example * File `greeting_server.py`: ```python...

I'm sure there's a better way to achieve this - but this tweak means properties can be generators too. I did note that in the case you tried to call...

I am trying to remotely control a very OO interface by leveraging Pyro5's autoproxying features I implemented a version of this workaround in a util function in the module I...

Hello! I've been using the autoproxying features of Pyro to interact with a heavily OO API [`kicad-python`](https://github.com/atait/kicad-python), that returns/yields lots of other rich/custom objects. I wanted to maintain the existing...

We've got a need to heavily customize the SSLContext creation and parameters; however the current code does leave much to be desired. Could it be possible to allow setting a...