├── .gitattributes ├── .github └── workflows │ └── main-ci.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pyro5 ├── __init__.py ├── api.py ├── callcontext.py ├── client.py ├── compatibility │ ├── Pyro4.py │ └── __init__.py ├── configure.py ├── core.py ├── errors.py ├── nameserver.py ├── nsc.py ├── protocol.py ├── serializers.py ├── server.py ├── socketutil.py ├── svr_existingconn.py ├── svr_multiplex.py ├── svr_threads.py └── utils │ ├── __init__.py │ ├── echoserver.py │ └── httpgateway.py ├── Readme.rst ├── certs ├── client_cert.pem ├── client_key.pem ├── readme.txt ├── server_cert.pem └── server_key.pem ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── css │ │ └── customize.css │ ├── flammable.png │ ├── pyro-large.png │ ├── pyro.png │ └── tf_pyrotaunt.png │ ├── api.rst │ ├── api │ ├── api.rst │ ├── callcontext.rst │ ├── client.rst │ ├── compatibility.rst │ ├── config.rst │ ├── core.rst │ ├── echoserver.rst │ ├── errors.rst │ ├── httpgateway.rst │ ├── nameserver.rst │ ├── protocol.rst │ ├── server.rst │ ├── socketserver.rst │ └── socketutil.rst │ ├── changelog.rst │ ├── clientcode.rst │ ├── commandline.rst │ ├── conf.py │ ├── config.rst │ ├── docutils.conf │ ├── errors.rst │ ├── index.rst │ ├── install.rst │ ├── intro.rst │ ├── license.rst │ ├── nameserver.rst │ ├── pyrolite.rst │ ├── security.rst │ ├── servercode.rst │ ├── tipstricks.rst │ └── tutorials.rst ├── examples ├── attributes │ ├── Readme.txt │ ├── client.py │ └── server.py ├── autoproxy │ ├── Readme.txt │ ├── client.py │ ├── server.py │ └── thingy.py ├── autoreconnect │ ├── Readme.txt │ ├── client.py │ ├── clientNS.py │ ├── server.py │ └── serverNS.py ├── autoretry │ ├── Readme.txt │ ├── client.py │ └── server.py ├── banks │ ├── Readme.txt │ ├── banks.py │ ├── client.py │ └── server.py ├── batchedcalls │ ├── Readme.txt │ ├── client.py │ └── server.py ├── benchmark │ ├── Readme.txt │ ├── bench.py │ ├── client.py │ ├── connections.py │ └── server.py ├── blob-dispatch │ ├── Readme.txt │ ├── client │ │ ├── client.py │ │ └── customdata.py │ ├── dispatcher │ │ └── dispatcher.py │ └── listeners │ │ ├── customdata.py │ │ ├── listener.py │ │ └── main.py ├── callback │ ├── Readme.txt │ ├── client.py │ ├── client2.py │ ├── server.py │ └── server2.py ├── callcontext │ ├── Readme.txt │ ├── client.py │ └── server.py ├── chatbox │ ├── Readme.txt │ ├── client.py │ └── server.py ├── circular │ ├── Readme.txt │ ├── chain.py │ ├── client.py │ ├── servA.py │ ├── servB.py │ └── servC.py ├── custom-serialization │ ├── Readme.txt │ ├── client.py │ ├── mycustomclasses.py │ └── server.py ├── diffie-hellman │ ├── Readme.txt │ ├── client.py │ ├── diffiehellman.py │ └── server.py ├── disconnects │ ├── Readme.txt │ ├── client.py │ └── server.py ├── distributed-computing │ ├── Readme.txt │ ├── client.py │ ├── dispatcher.py │ ├── worker.py │ └── workitem.py ├── distributed-computing2 │ ├── Readme.txt │ ├── alice.zip │ ├── client.py │ └── servers.py ├── distributed-computing3 │ ├── Readme.txt │ ├── client.py │ └── worker.py ├── distributed-mandelbrot │ ├── Readme.txt │ ├── client_asciizoom.py │ ├── client_graphics.py │ ├── launch_servers.sh │ ├── normal.py │ ├── normal_graphics.py │ └── server.py ├── echoserver │ ├── Readme.txt │ └── client.py ├── eventloop │ ├── Readme.txt │ ├── client.py │ ├── server_multiplexed.py │ └── server_threads.py ├── exceptions │ ├── Readme.txt │ ├── client.py │ ├── excep.py │ └── server.py ├── filetransfer │ ├── Readme.txt │ ├── client.py │ └── server.py ├── gui_eventloop │ ├── Readme.txt │ ├── client.py │ ├── gui_nothreads.py │ └── gui_threads.py ├── handshake │ ├── Readme.txt │ ├── client.py │ └── server.py ├── http │ ├── Readme.txt │ ├── client.js │ └── client.py ├── hugetransfer │ ├── Readme.txt │ ├── client.py │ └── server.py ├── instancemode │ ├── Readme.txt │ ├── client.py │ └── server.py ├── maxsize │ ├── Readme.txt │ └── client.py ├── messagebus │ ├── Readme.txt │ ├── manytopics_publisher.py │ ├── manytopics_subscriber.py │ ├── messagebus │ │ ├── __init__.py │ │ ├── messagebus.py │ │ └── server.py │ ├── publisher.py │ ├── subscriber.py │ └── subscriber_manual_consume.py ├── nameserverstress │ ├── Readme.txt │ └── stress.py ├── nonameserver │ ├── Readme.txt │ ├── client.py │ └── server.py ├── ns-metadata │ ├── Readme.txt │ ├── example.py │ └── resources.py ├── oneway │ ├── Readme.txt │ ├── client.py │ ├── client2.py │ ├── server.py │ └── server2.py ├── privilege-separation │ ├── Readme.txt │ ├── drop_privs_client.py │ ├── drop_privs_server.py │ ├── elevated_client.py │ └── elevated_server.py ├── resourcetracking │ ├── Readme.txt │ ├── client.py │ └── server.py ├── robots │ ├── Readme.txt │ ├── client.py │ ├── gameserver.py │ ├── remote.py │ └── robot.py ├── servertypes │ ├── Readme.txt │ ├── client.py │ └── server.py ├── shoppingcart │ ├── Readme.txt │ ├── clients.py │ ├── shoppingcart.py │ └── shopserver.py ├── socketpair │ ├── pair-fork.py │ ├── pair-thread.py │ └── readme.txt ├── ssl │ ├── Readme.txt │ ├── client.py │ └── server.py ├── stockquotes │ ├── Readme.txt │ ├── phase1 │ │ ├── stockmarket.py │ │ └── viewer.py │ ├── phase2 │ │ ├── stockmarket.py │ │ └── viewer.py │ └── phase3 │ │ ├── stockmarket.py │ │ └── viewer.py ├── streaming │ ├── Readme.txt │ ├── client.py │ └── server.py ├── thirdpartylib │ ├── Readme.txt │ ├── awesome_thirdparty_library.py │ ├── client.py │ ├── server.py │ └── server2.py ├── threadproxysharing │ ├── Readme.txt │ └── client.py ├── timeout │ ├── Readme.txt │ ├── client.py │ └── server.py ├── timezones │ ├── Readme.txt │ ├── client.py │ └── server.py ├── unixdomainsock │ ├── Readme.txt │ ├── abstract_namespace_server.py │ ├── client.py │ └── server.py ├── usersession │ ├── Readme.txt │ ├── client.py │ ├── database.py │ └── server.py └── warehouse │ ├── Readme.txt │ ├── phase1 │ ├── person.py │ ├── visit.py │ └── warehouse.py │ ├── phase2 │ ├── person.py │ ├── visit.py │ └── warehouse.py │ └── phase3 │ ├── person.py │ ├── visit.py │ └── warehouse.py ├── mypy.ini ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── support.py ├── test_api.py ├── test_client.py ├── test_core.py ├── test_daemon.py ├── test_echoserver.py ├── test_errors.py ├── test_httpgateway.py ├── test_naming.py ├── test_protocol.py ├── test_pyro4compat.py ├── test_serialize.py ├── test_server.py ├── test_server_timeout.py ├── test_socketutil.py └── test_threadpool.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/.github/workflows/main-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Makefile -------------------------------------------------------------------------------- /Pyro5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/__init__.py -------------------------------------------------------------------------------- /Pyro5/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/api.py -------------------------------------------------------------------------------- /Pyro5/callcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/callcontext.py -------------------------------------------------------------------------------- /Pyro5/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/client.py -------------------------------------------------------------------------------- /Pyro5/compatibility/Pyro4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/compatibility/Pyro4.py -------------------------------------------------------------------------------- /Pyro5/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pyro5/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/configure.py -------------------------------------------------------------------------------- /Pyro5/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/core.py -------------------------------------------------------------------------------- /Pyro5/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/errors.py -------------------------------------------------------------------------------- /Pyro5/nameserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/nameserver.py -------------------------------------------------------------------------------- /Pyro5/nsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/nsc.py -------------------------------------------------------------------------------- /Pyro5/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/protocol.py -------------------------------------------------------------------------------- /Pyro5/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/serializers.py -------------------------------------------------------------------------------- /Pyro5/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/server.py -------------------------------------------------------------------------------- /Pyro5/socketutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/socketutil.py -------------------------------------------------------------------------------- /Pyro5/svr_existingconn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/svr_existingconn.py -------------------------------------------------------------------------------- /Pyro5/svr_multiplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/svr_multiplex.py -------------------------------------------------------------------------------- /Pyro5/svr_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/svr_threads.py -------------------------------------------------------------------------------- /Pyro5/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # just to make this a package. 2 | -------------------------------------------------------------------------------- /Pyro5/utils/echoserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/utils/echoserver.py -------------------------------------------------------------------------------- /Pyro5/utils/httpgateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Pyro5/utils/httpgateway.py -------------------------------------------------------------------------------- /Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/Readme.rst -------------------------------------------------------------------------------- /certs/client_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/certs/client_cert.pem -------------------------------------------------------------------------------- /certs/client_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/certs/client_key.pem -------------------------------------------------------------------------------- /certs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/certs/readme.txt -------------------------------------------------------------------------------- /certs/server_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/certs/server_cert.pem -------------------------------------------------------------------------------- /certs/server_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/certs/server_key.pem -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/css/customize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/_static/css/customize.css -------------------------------------------------------------------------------- /docs/source/_static/flammable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/_static/flammable.png -------------------------------------------------------------------------------- /docs/source/_static/pyro-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/_static/pyro-large.png -------------------------------------------------------------------------------- /docs/source/_static/pyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/_static/pyro.png -------------------------------------------------------------------------------- /docs/source/_static/tf_pyrotaunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/_static/tf_pyrotaunt.png -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/api/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/api.rst -------------------------------------------------------------------------------- /docs/source/api/callcontext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/callcontext.rst -------------------------------------------------------------------------------- /docs/source/api/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/client.rst -------------------------------------------------------------------------------- /docs/source/api/compatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/compatibility.rst -------------------------------------------------------------------------------- /docs/source/api/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/config.rst -------------------------------------------------------------------------------- /docs/source/api/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/core.rst -------------------------------------------------------------------------------- /docs/source/api/echoserver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/echoserver.rst -------------------------------------------------------------------------------- /docs/source/api/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/errors.rst -------------------------------------------------------------------------------- /docs/source/api/httpgateway.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/httpgateway.rst -------------------------------------------------------------------------------- /docs/source/api/nameserver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/nameserver.rst -------------------------------------------------------------------------------- /docs/source/api/protocol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/protocol.rst -------------------------------------------------------------------------------- /docs/source/api/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/server.rst -------------------------------------------------------------------------------- /docs/source/api/socketserver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/socketserver.rst -------------------------------------------------------------------------------- /docs/source/api/socketutil.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/api/socketutil.rst -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/clientcode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/clientcode.rst -------------------------------------------------------------------------------- /docs/source/commandline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/commandline.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/config.rst -------------------------------------------------------------------------------- /docs/source/docutils.conf: -------------------------------------------------------------------------------- 1 | [restructuredtext parser] 2 | smart_quotes=true 3 | -------------------------------------------------------------------------------- /docs/source/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/errors.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/nameserver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/nameserver.rst -------------------------------------------------------------------------------- /docs/source/pyrolite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/pyrolite.rst -------------------------------------------------------------------------------- /docs/source/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/security.rst -------------------------------------------------------------------------------- /docs/source/servercode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/servercode.rst -------------------------------------------------------------------------------- /docs/source/tipstricks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/tipstricks.rst -------------------------------------------------------------------------------- /docs/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/docs/source/tutorials.rst -------------------------------------------------------------------------------- /examples/attributes/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/attributes/Readme.txt -------------------------------------------------------------------------------- /examples/attributes/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/attributes/client.py -------------------------------------------------------------------------------- /examples/attributes/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/attributes/server.py -------------------------------------------------------------------------------- /examples/autoproxy/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoproxy/Readme.txt -------------------------------------------------------------------------------- /examples/autoproxy/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoproxy/client.py -------------------------------------------------------------------------------- /examples/autoproxy/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoproxy/server.py -------------------------------------------------------------------------------- /examples/autoproxy/thingy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoproxy/thingy.py -------------------------------------------------------------------------------- /examples/autoreconnect/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoreconnect/Readme.txt -------------------------------------------------------------------------------- /examples/autoreconnect/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoreconnect/client.py -------------------------------------------------------------------------------- /examples/autoreconnect/clientNS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoreconnect/clientNS.py -------------------------------------------------------------------------------- /examples/autoreconnect/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoreconnect/server.py -------------------------------------------------------------------------------- /examples/autoreconnect/serverNS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoreconnect/serverNS.py -------------------------------------------------------------------------------- /examples/autoretry/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoretry/Readme.txt -------------------------------------------------------------------------------- /examples/autoretry/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoretry/client.py -------------------------------------------------------------------------------- /examples/autoretry/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/autoretry/server.py -------------------------------------------------------------------------------- /examples/banks/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/banks/Readme.txt -------------------------------------------------------------------------------- /examples/banks/banks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/banks/banks.py -------------------------------------------------------------------------------- /examples/banks/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/banks/client.py -------------------------------------------------------------------------------- /examples/banks/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/banks/server.py -------------------------------------------------------------------------------- /examples/batchedcalls/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/batchedcalls/Readme.txt -------------------------------------------------------------------------------- /examples/batchedcalls/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/batchedcalls/client.py -------------------------------------------------------------------------------- /examples/batchedcalls/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/batchedcalls/server.py -------------------------------------------------------------------------------- /examples/benchmark/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/benchmark/Readme.txt -------------------------------------------------------------------------------- /examples/benchmark/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/benchmark/bench.py -------------------------------------------------------------------------------- /examples/benchmark/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/benchmark/client.py -------------------------------------------------------------------------------- /examples/benchmark/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/benchmark/connections.py -------------------------------------------------------------------------------- /examples/benchmark/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/benchmark/server.py -------------------------------------------------------------------------------- /examples/blob-dispatch/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/blob-dispatch/Readme.txt -------------------------------------------------------------------------------- /examples/blob-dispatch/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/blob-dispatch/client/client.py -------------------------------------------------------------------------------- /examples/blob-dispatch/client/customdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/blob-dispatch/client/customdata.py -------------------------------------------------------------------------------- /examples/blob-dispatch/dispatcher/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/blob-dispatch/dispatcher/dispatcher.py -------------------------------------------------------------------------------- /examples/blob-dispatch/listeners/customdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/blob-dispatch/listeners/customdata.py -------------------------------------------------------------------------------- /examples/blob-dispatch/listeners/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/blob-dispatch/listeners/listener.py -------------------------------------------------------------------------------- /examples/blob-dispatch/listeners/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/blob-dispatch/listeners/main.py -------------------------------------------------------------------------------- /examples/callback/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callback/Readme.txt -------------------------------------------------------------------------------- /examples/callback/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callback/client.py -------------------------------------------------------------------------------- /examples/callback/client2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callback/client2.py -------------------------------------------------------------------------------- /examples/callback/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callback/server.py -------------------------------------------------------------------------------- /examples/callback/server2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callback/server2.py -------------------------------------------------------------------------------- /examples/callcontext/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callcontext/Readme.txt -------------------------------------------------------------------------------- /examples/callcontext/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callcontext/client.py -------------------------------------------------------------------------------- /examples/callcontext/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/callcontext/server.py -------------------------------------------------------------------------------- /examples/chatbox/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/chatbox/Readme.txt -------------------------------------------------------------------------------- /examples/chatbox/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/chatbox/client.py -------------------------------------------------------------------------------- /examples/chatbox/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/chatbox/server.py -------------------------------------------------------------------------------- /examples/circular/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/circular/Readme.txt -------------------------------------------------------------------------------- /examples/circular/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/circular/chain.py -------------------------------------------------------------------------------- /examples/circular/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/circular/client.py -------------------------------------------------------------------------------- /examples/circular/servA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/circular/servA.py -------------------------------------------------------------------------------- /examples/circular/servB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/circular/servB.py -------------------------------------------------------------------------------- /examples/circular/servC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/circular/servC.py -------------------------------------------------------------------------------- /examples/custom-serialization/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/custom-serialization/Readme.txt -------------------------------------------------------------------------------- /examples/custom-serialization/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/custom-serialization/client.py -------------------------------------------------------------------------------- /examples/custom-serialization/mycustomclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/custom-serialization/mycustomclasses.py -------------------------------------------------------------------------------- /examples/custom-serialization/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/custom-serialization/server.py -------------------------------------------------------------------------------- /examples/diffie-hellman/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/diffie-hellman/Readme.txt -------------------------------------------------------------------------------- /examples/diffie-hellman/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/diffie-hellman/client.py -------------------------------------------------------------------------------- /examples/diffie-hellman/diffiehellman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/diffie-hellman/diffiehellman.py -------------------------------------------------------------------------------- /examples/diffie-hellman/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/diffie-hellman/server.py -------------------------------------------------------------------------------- /examples/disconnects/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/disconnects/Readme.txt -------------------------------------------------------------------------------- /examples/disconnects/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/disconnects/client.py -------------------------------------------------------------------------------- /examples/disconnects/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/disconnects/server.py -------------------------------------------------------------------------------- /examples/distributed-computing/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing/Readme.txt -------------------------------------------------------------------------------- /examples/distributed-computing/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing/client.py -------------------------------------------------------------------------------- /examples/distributed-computing/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing/dispatcher.py -------------------------------------------------------------------------------- /examples/distributed-computing/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing/worker.py -------------------------------------------------------------------------------- /examples/distributed-computing/workitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing/workitem.py -------------------------------------------------------------------------------- /examples/distributed-computing2/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing2/Readme.txt -------------------------------------------------------------------------------- /examples/distributed-computing2/alice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing2/alice.zip -------------------------------------------------------------------------------- /examples/distributed-computing2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing2/client.py -------------------------------------------------------------------------------- /examples/distributed-computing2/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing2/servers.py -------------------------------------------------------------------------------- /examples/distributed-computing3/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing3/Readme.txt -------------------------------------------------------------------------------- /examples/distributed-computing3/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing3/client.py -------------------------------------------------------------------------------- /examples/distributed-computing3/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-computing3/worker.py -------------------------------------------------------------------------------- /examples/distributed-mandelbrot/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-mandelbrot/Readme.txt -------------------------------------------------------------------------------- /examples/distributed-mandelbrot/client_asciizoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-mandelbrot/client_asciizoom.py -------------------------------------------------------------------------------- /examples/distributed-mandelbrot/client_graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-mandelbrot/client_graphics.py -------------------------------------------------------------------------------- /examples/distributed-mandelbrot/launch_servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-mandelbrot/launch_servers.sh -------------------------------------------------------------------------------- /examples/distributed-mandelbrot/normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-mandelbrot/normal.py -------------------------------------------------------------------------------- /examples/distributed-mandelbrot/normal_graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-mandelbrot/normal_graphics.py -------------------------------------------------------------------------------- /examples/distributed-mandelbrot/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/distributed-mandelbrot/server.py -------------------------------------------------------------------------------- /examples/echoserver/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/echoserver/Readme.txt -------------------------------------------------------------------------------- /examples/echoserver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/echoserver/client.py -------------------------------------------------------------------------------- /examples/eventloop/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/eventloop/Readme.txt -------------------------------------------------------------------------------- /examples/eventloop/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/eventloop/client.py -------------------------------------------------------------------------------- /examples/eventloop/server_multiplexed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/eventloop/server_multiplexed.py -------------------------------------------------------------------------------- /examples/eventloop/server_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/eventloop/server_threads.py -------------------------------------------------------------------------------- /examples/exceptions/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/exceptions/Readme.txt -------------------------------------------------------------------------------- /examples/exceptions/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/exceptions/client.py -------------------------------------------------------------------------------- /examples/exceptions/excep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/exceptions/excep.py -------------------------------------------------------------------------------- /examples/exceptions/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/exceptions/server.py -------------------------------------------------------------------------------- /examples/filetransfer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/filetransfer/Readme.txt -------------------------------------------------------------------------------- /examples/filetransfer/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/filetransfer/client.py -------------------------------------------------------------------------------- /examples/filetransfer/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/filetransfer/server.py -------------------------------------------------------------------------------- /examples/gui_eventloop/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/gui_eventloop/Readme.txt -------------------------------------------------------------------------------- /examples/gui_eventloop/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/gui_eventloop/client.py -------------------------------------------------------------------------------- /examples/gui_eventloop/gui_nothreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/gui_eventloop/gui_nothreads.py -------------------------------------------------------------------------------- /examples/gui_eventloop/gui_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/gui_eventloop/gui_threads.py -------------------------------------------------------------------------------- /examples/handshake/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/handshake/Readme.txt -------------------------------------------------------------------------------- /examples/handshake/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/handshake/client.py -------------------------------------------------------------------------------- /examples/handshake/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/handshake/server.py -------------------------------------------------------------------------------- /examples/http/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/http/Readme.txt -------------------------------------------------------------------------------- /examples/http/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/http/client.js -------------------------------------------------------------------------------- /examples/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/http/client.py -------------------------------------------------------------------------------- /examples/hugetransfer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/hugetransfer/Readme.txt -------------------------------------------------------------------------------- /examples/hugetransfer/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/hugetransfer/client.py -------------------------------------------------------------------------------- /examples/hugetransfer/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/hugetransfer/server.py -------------------------------------------------------------------------------- /examples/instancemode/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/instancemode/Readme.txt -------------------------------------------------------------------------------- /examples/instancemode/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/instancemode/client.py -------------------------------------------------------------------------------- /examples/instancemode/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/instancemode/server.py -------------------------------------------------------------------------------- /examples/maxsize/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/maxsize/Readme.txt -------------------------------------------------------------------------------- /examples/maxsize/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/maxsize/client.py -------------------------------------------------------------------------------- /examples/messagebus/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/Readme.txt -------------------------------------------------------------------------------- /examples/messagebus/manytopics_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/manytopics_publisher.py -------------------------------------------------------------------------------- /examples/messagebus/manytopics_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/manytopics_subscriber.py -------------------------------------------------------------------------------- /examples/messagebus/messagebus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/messagebus/__init__.py -------------------------------------------------------------------------------- /examples/messagebus/messagebus/messagebus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/messagebus/messagebus.py -------------------------------------------------------------------------------- /examples/messagebus/messagebus/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/messagebus/server.py -------------------------------------------------------------------------------- /examples/messagebus/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/publisher.py -------------------------------------------------------------------------------- /examples/messagebus/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/subscriber.py -------------------------------------------------------------------------------- /examples/messagebus/subscriber_manual_consume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/messagebus/subscriber_manual_consume.py -------------------------------------------------------------------------------- /examples/nameserverstress/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/nameserverstress/Readme.txt -------------------------------------------------------------------------------- /examples/nameserverstress/stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/nameserverstress/stress.py -------------------------------------------------------------------------------- /examples/nonameserver/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/nonameserver/Readme.txt -------------------------------------------------------------------------------- /examples/nonameserver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/nonameserver/client.py -------------------------------------------------------------------------------- /examples/nonameserver/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/nonameserver/server.py -------------------------------------------------------------------------------- /examples/ns-metadata/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/ns-metadata/Readme.txt -------------------------------------------------------------------------------- /examples/ns-metadata/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/ns-metadata/example.py -------------------------------------------------------------------------------- /examples/ns-metadata/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/ns-metadata/resources.py -------------------------------------------------------------------------------- /examples/oneway/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/oneway/Readme.txt -------------------------------------------------------------------------------- /examples/oneway/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/oneway/client.py -------------------------------------------------------------------------------- /examples/oneway/client2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/oneway/client2.py -------------------------------------------------------------------------------- /examples/oneway/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/oneway/server.py -------------------------------------------------------------------------------- /examples/oneway/server2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/oneway/server2.py -------------------------------------------------------------------------------- /examples/privilege-separation/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/privilege-separation/Readme.txt -------------------------------------------------------------------------------- /examples/privilege-separation/drop_privs_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/privilege-separation/drop_privs_client.py -------------------------------------------------------------------------------- /examples/privilege-separation/drop_privs_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/privilege-separation/drop_privs_server.py -------------------------------------------------------------------------------- /examples/privilege-separation/elevated_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/privilege-separation/elevated_client.py -------------------------------------------------------------------------------- /examples/privilege-separation/elevated_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/privilege-separation/elevated_server.py -------------------------------------------------------------------------------- /examples/resourcetracking/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/resourcetracking/Readme.txt -------------------------------------------------------------------------------- /examples/resourcetracking/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/resourcetracking/client.py -------------------------------------------------------------------------------- /examples/resourcetracking/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/resourcetracking/server.py -------------------------------------------------------------------------------- /examples/robots/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/robots/Readme.txt -------------------------------------------------------------------------------- /examples/robots/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/robots/client.py -------------------------------------------------------------------------------- /examples/robots/gameserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/robots/gameserver.py -------------------------------------------------------------------------------- /examples/robots/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/robots/remote.py -------------------------------------------------------------------------------- /examples/robots/robot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/robots/robot.py -------------------------------------------------------------------------------- /examples/servertypes/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/servertypes/Readme.txt -------------------------------------------------------------------------------- /examples/servertypes/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/servertypes/client.py -------------------------------------------------------------------------------- /examples/servertypes/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/servertypes/server.py -------------------------------------------------------------------------------- /examples/shoppingcart/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/shoppingcart/Readme.txt -------------------------------------------------------------------------------- /examples/shoppingcart/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/shoppingcart/clients.py -------------------------------------------------------------------------------- /examples/shoppingcart/shoppingcart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/shoppingcart/shoppingcart.py -------------------------------------------------------------------------------- /examples/shoppingcart/shopserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/shoppingcart/shopserver.py -------------------------------------------------------------------------------- /examples/socketpair/pair-fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/socketpair/pair-fork.py -------------------------------------------------------------------------------- /examples/socketpair/pair-thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/socketpair/pair-thread.py -------------------------------------------------------------------------------- /examples/socketpair/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/socketpair/readme.txt -------------------------------------------------------------------------------- /examples/ssl/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/ssl/Readme.txt -------------------------------------------------------------------------------- /examples/ssl/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/ssl/client.py -------------------------------------------------------------------------------- /examples/ssl/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/ssl/server.py -------------------------------------------------------------------------------- /examples/stockquotes/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/stockquotes/Readme.txt -------------------------------------------------------------------------------- /examples/stockquotes/phase1/stockmarket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/stockquotes/phase1/stockmarket.py -------------------------------------------------------------------------------- /examples/stockquotes/phase1/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/stockquotes/phase1/viewer.py -------------------------------------------------------------------------------- /examples/stockquotes/phase2/stockmarket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/stockquotes/phase2/stockmarket.py -------------------------------------------------------------------------------- /examples/stockquotes/phase2/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/stockquotes/phase2/viewer.py -------------------------------------------------------------------------------- /examples/stockquotes/phase3/stockmarket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/stockquotes/phase3/stockmarket.py -------------------------------------------------------------------------------- /examples/stockquotes/phase3/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/stockquotes/phase3/viewer.py -------------------------------------------------------------------------------- /examples/streaming/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/streaming/Readme.txt -------------------------------------------------------------------------------- /examples/streaming/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/streaming/client.py -------------------------------------------------------------------------------- /examples/streaming/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/streaming/server.py -------------------------------------------------------------------------------- /examples/thirdpartylib/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/thirdpartylib/Readme.txt -------------------------------------------------------------------------------- /examples/thirdpartylib/awesome_thirdparty_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/thirdpartylib/awesome_thirdparty_library.py -------------------------------------------------------------------------------- /examples/thirdpartylib/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/thirdpartylib/client.py -------------------------------------------------------------------------------- /examples/thirdpartylib/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/thirdpartylib/server.py -------------------------------------------------------------------------------- /examples/thirdpartylib/server2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/thirdpartylib/server2.py -------------------------------------------------------------------------------- /examples/threadproxysharing/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/threadproxysharing/Readme.txt -------------------------------------------------------------------------------- /examples/threadproxysharing/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/threadproxysharing/client.py -------------------------------------------------------------------------------- /examples/timeout/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/timeout/Readme.txt -------------------------------------------------------------------------------- /examples/timeout/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/timeout/client.py -------------------------------------------------------------------------------- /examples/timeout/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/timeout/server.py -------------------------------------------------------------------------------- /examples/timezones/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/timezones/Readme.txt -------------------------------------------------------------------------------- /examples/timezones/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/timezones/client.py -------------------------------------------------------------------------------- /examples/timezones/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/timezones/server.py -------------------------------------------------------------------------------- /examples/unixdomainsock/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/unixdomainsock/Readme.txt -------------------------------------------------------------------------------- /examples/unixdomainsock/abstract_namespace_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/unixdomainsock/abstract_namespace_server.py -------------------------------------------------------------------------------- /examples/unixdomainsock/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/unixdomainsock/client.py -------------------------------------------------------------------------------- /examples/unixdomainsock/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/unixdomainsock/server.py -------------------------------------------------------------------------------- /examples/usersession/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/usersession/Readme.txt -------------------------------------------------------------------------------- /examples/usersession/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/usersession/client.py -------------------------------------------------------------------------------- /examples/usersession/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/usersession/database.py -------------------------------------------------------------------------------- /examples/usersession/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/usersession/server.py -------------------------------------------------------------------------------- /examples/warehouse/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/Readme.txt -------------------------------------------------------------------------------- /examples/warehouse/phase1/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase1/person.py -------------------------------------------------------------------------------- /examples/warehouse/phase1/visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase1/visit.py -------------------------------------------------------------------------------- /examples/warehouse/phase1/warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase1/warehouse.py -------------------------------------------------------------------------------- /examples/warehouse/phase2/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase2/person.py -------------------------------------------------------------------------------- /examples/warehouse/phase2/visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase2/visit.py -------------------------------------------------------------------------------- /examples/warehouse/phase2/warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase2/warehouse.py -------------------------------------------------------------------------------- /examples/warehouse/phase3/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase3/person.py -------------------------------------------------------------------------------- /examples/warehouse/phase3/visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase3/visit.py -------------------------------------------------------------------------------- /examples/warehouse/phase3/warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/examples/warehouse/phase3/warehouse.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/mypy.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | serpent>=1.41 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | build 2 | serpent>=1.41 3 | msgpack>=0.5.2 4 | pytest 5 | -------------------------------------------------------------------------------- /tests/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/support.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_daemon.py -------------------------------------------------------------------------------- /tests/test_echoserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_echoserver.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_httpgateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_httpgateway.py -------------------------------------------------------------------------------- /tests/test_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_naming.py -------------------------------------------------------------------------------- /tests/test_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_protocol.py -------------------------------------------------------------------------------- /tests/test_pyro4compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_pyro4compat.py -------------------------------------------------------------------------------- /tests/test_serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_serialize.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/test_server_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_server_timeout.py -------------------------------------------------------------------------------- /tests/test_socketutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_socketutil.py -------------------------------------------------------------------------------- /tests/test_threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tests/test_threadpool.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irmen/Pyro5/HEAD/tox.ini --------------------------------------------------------------------------------