• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.vscode/H11-Jan-2021-3333

bin/H11-Jan-2021-246198

demos/H11-Jan-2021-889694

docker/H11-Jan-2021-6056

docs/H03-May-2022-3,1732,225

rpyc/H11-Jan-2021-5,8304,569

tests/H11-Jan-2021-2,1251,586

.gitignoreH A D11-Jan-2021106 1312

.pep8H A D11-Jan-202127 32

.readthedocs.ymlH A D11-Jan-2021569 2418

.travis.ymlH A D11-Jan-2021882 3831

CHANGELOG.rstH A D11-Jan-202124 KiB686478

CONTRIBUTORS.rstH A D11-Jan-20211.4 KiB4538

LICENSEH A D11-Jan-20211.1 KiB2318

MANIFEST.inH A D11-Jan-202136 42

README.rstH A D11-Jan-20211.9 KiB4632

setup.pyH A D11-Jan-20212.4 KiB7058

README.rst

1|Version| |Python| |Tests| |License|
2
3RPyC_ (pronounced like *are-pie-see*), or *Remote Python Call*, is a
4**transparent** library for **symmetrical** `remote procedure calls`_,
5clustering_, and distributed-computing_.  RPyC makes use of object-proxying_,
6a technique that employs python's dynamic nature, to overcome the physical
7boundaries between processes and computers, so that remote objects can be
8manipulated as if they were local.
9
10Documentation can be found at https://rpyc.readthedocs.io
11
12.. figure:: http://rpyc.readthedocs.org/en/latest/_images/screenshot.png
13   :align: center
14
15   A screenshot of a Windows client connecting to a Linux server.
16
17   Note that text written to the server's ``stdout`` is actually printed on
18   the server's console.
19
20
21.. References:
22
23.. _RPyC:                   https://github.com/tomerfiliba-org/rpyc
24.. _remote procedure calls: http://en.wikipedia.org/wiki/Remote_procedure_calls
25.. _clustering:             http://en.wikipedia.org/wiki/Clustering
26.. _distributed-computing:  http://en.wikipedia.org/wiki/Distributed_computing
27.. _object-proxying:        http://en.wikipedia.org/wiki/Proxy_pattern
28
29.. Badges:
30
31.. |Version| image::   https://img.shields.io/pypi/v/rpyc.svg?style=flat
32   :target:            https://pypi.python.org/pypi/rpyc
33   :alt:               Version
34
35.. |Python| image::    https://img.shields.io/pypi/pyversions/rpyc.svg?style=flat
36   :target:            https://pypi.python.org/pypi/rpyc#downloads
37   :alt:               Python Versions
38
39.. |Tests| image::     https://img.shields.io/travis/tomerfiliba-org/rpyc/master.svg?style=flat
40   :target:            https://travis-ci.org/tomerfiliba-org/rpyc
41   :alt:               Build Status
42
43.. |License| image::   https://img.shields.io/pypi/l/rpyc.svg?style=flat
44   :target:            https://github.com/tomerfiliba-org/rpyc/blob/master/LICENSE
45   :alt:               License: MIT
46