معرفی شرکت ها


fspyrpc-0.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A simple RPC-framework written in Python
ویژگی مقدار
سیستم عامل -
نام فایل fspyrpc-0.0.1
نام fspyrpc
نسخه کتابخانه 0.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Florian Schlachter
ایمیل نویسنده flori@n-schlachter.de
آدرس صفحه اصلی https://bitbucket.org/flosch/pyrpc
آدرس اینترنتی https://pypi.org/project/fspyrpc/
مجوز UNKNOWN
# PyRPC PyRPC is a simple RPC-framework written in Python. It supports simple and fast access to remotely provided procedures by pickling (using the fast but **in-secure** module cPickle, see below) all data (request/response) and transporting it via TCP to the remote host. Due to it's nature, cPickle is not intended to be secure. Under special circumstances (e. g. malicious messages) remote executions might be possible. Therefore you must ensure that the server is only reachable by trusted clients in a secure and restricted environment (a public server is therefore absolutely **not** recommended). Transmission is compressed using zlib. ## Installation PyRPC is available at PyPI and known as `fspyrpc`: pip install fspyrpc ## Usage Using PyRPC is pretty simple. See `client_example.py` for client-usage. The server consists of two classes: * `RPCServer` * `RPCServerHandler` `RPCServer` is used to manage all client connections; the `RPCServerHandler` is newly instantiated for every request. It implements all provided procedures to the client; the method name is prefixed by `handle_`. Every called method has access to the following instance attributes: * `address` - contains a (ip, port)-tuple of the remote client address * `data` - provides raw access to the request as a `dict`-object See `server_example.py` for corressponding server-usage.


نحوه نصب


نصب پکیج whl fspyrpc-0.0.1:

    pip install fspyrpc-0.0.1.whl


نصب پکیج tar.gz fspyrpc-0.0.1:

    pip install fspyrpc-0.0.1.tar.gz