Skip to main content

Python implementation of fastrpc protocol

Project description

Pyfrpc

Pyfrpc is a Python implementation of FastRPC protocol/library ( @github or @sourceforge ). The original library contains Python bindings, but:

  1. I prefer python packages without dependencies on debian packages.
  2. Its flexibility is limited in some points. E.g. the library provides its own implementation of HTTP server and client, which is nice to have in C++, but not in Python I would say as there are already full-featured and more mature libraries available for those tasks.
  3. In my opinion it's not worth to wrap such a library for python anyway (at least not from today's perspective). The original binding itself is 3500 lines of code. So this is an alternative aproach.
  4. And I want to use it as a showcase for cython as well.

This library provides FastRPC encoding/decoding functions, FastRPC client (based on 'requests') and an interactive FastRPC client/terminal 'pyfrpc' (an alternative to 'fastrpc-netcat' based on 'IPython'). API mostly differs and is not meant to be a drop-in replacement.

It is compatible with protocol versions 1.0, 2.0, 2.1 and 3.0.

Package provides both cython (C extencion) and pure python implementations. Cython implementation is faster but requires C toolchain (or available python wheels). To use pure python implementation set env variable PYFRPC_NOEXT=1 during installation.

Some features missing are:

  • handling of base64 encoded FastRPC
  • helper to build a server

Interactive client

Interactive client opens na ipython session with varible client initialized to FastFRPC connection. It supports tab-based completion of remote procedures' names as well as shownig their documentation using question mark notation as is usual in ipython.

$ pyfrpc --help

usage: pyfrpc [-h] [--insecure] URL

FRPC netcat for interactive connection to FRPC server

positional arguments:
  URL         URL of FRPC server to connect to

optional arguments:
  -h, --help  show this help message and exit
  --insecure  Do not check server's cert
$ pyfrpc http://my-avesome-server

In [1]: client.greeting?
...
Docstring:   Prints greeting.

In [2]: client.greeting()
Out[2]: 
'hello from server'

Benchmark

2024-01-02, Python3.11 @ debian bookworm:

+------------------------+----------+----------+----------+
| description            | encoding | decoding | total    |
+------------------------+----------+----------+----------+
| orjson                 |    0.3ms |    0.9ms |    1.2ms |
| pyfrpc                 |    0.6ms |    1.2ms |    1.8ms |
| fastrpc                |    0.8ms |    1.7ms |    2.6ms |
| ujson                  |    1.8ms |    2.1ms |    3.9ms |
| json                   |    2.6ms |    1.4ms |    4.1ms |
| pyfastrpc              |   12.8ms |   18.3ms |   31.1ms |
+------------------------+----------+----------+----------+

2020-12-02, Python3.7 @ debian buster:

+------------------------+----------+----------+----------+
| description            | encoding | decoding | total    |
+------------------------+----------+----------+----------+
| pyfrpc                 |    1.6ms |    3.6ms |    5.3ms |
| ujson                  |    5.1ms |    4.7ms |    9.9ms |
| fastrpc                |    3.2ms |    7.0ms |   10.2ms |
| json                   |    7.0ms |    5.2ms |   12.3ms |
| pyfastrpc              |   59.2ms |   77.2ms |  136.3ms |
+------------------------+----------+----------+----------+

2017-12-29, benchmarks during library development:

+------------------------+----------+----------+----------+
| description            | encoding | decoding | total    |
+========================+==========+==========+==========+
| fastrpc (original lib) |   1.7 ms |   5.7 ms |   7.5 ms |
+------------------------+----------+----------+----------+
| python                 |  35.1 ms |  25.8 ms |  60.8 ms |
+------------------------+----------+----------+----------+
| pypy                   |  12.6 ms |   5.2 ms |  17.8 ms |
+------------------------+----------+----------+----------+
| cython (naive)         |  17.9 ms |  43.1 ms |  61.0 ms |
| cython (cdef)          |  11.9 ms |  22.6 ms |  34.4 ms |
| cython (static typing) |   2.2 ms |   3.7 ms |   5.9 ms |
| cython (low level api) |   1.3 ms |   3.7 ms |   4.9 ms |
+------------------------+----------+----------+----------+

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyfrpc-0.2.14.tar.gz (18.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyfrpc-0.2.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (324.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfrpc-0.2.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (327.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfrpc-0.2.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (327.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfrpc-0.2.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (320.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfrpc-0.2.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (309.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfrpc-0.2.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (308.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

File details

Details for the file pyfrpc-0.2.14.tar.gz.

File metadata

  • Download URL: pyfrpc-0.2.14.tar.gz
  • Upload date:
  • Size: 18.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for pyfrpc-0.2.14.tar.gz
Algorithm Hash digest
SHA256 28be10b9b007ab4cc082541dcd0dd7d23bb78e780c1ab0ac9c0214b5fd6acaf9
MD5 2e53740c8061cda94bd8bf56ac94da2f
BLAKE2b-256 f53e51fbc7b543db364a0c84deee676be0ac2a3cf52420634779c021a574e5ae

See more details on using hashes here.

File details

Details for the file pyfrpc-0.2.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfrpc-0.2.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad8927248828a79b9cf023c3ea15aa21a79731e6dcc1a72fd021332ac770cd7a
MD5 448166ea0b90477ef0aff3b32622300b
BLAKE2b-256 a2c10013b28841d6f7334e44d4d04a691f8261ef552fc1cbf21815b8690fe5ff

See more details on using hashes here.

File details

Details for the file pyfrpc-0.2.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfrpc-0.2.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15302458445244b67d14880718126c5d80406fd3ba6aa35af8f7a3a5be47b442
MD5 466d1001bfa10b807da414f958bf0c61
BLAKE2b-256 6be16b57530451519e2a4a359c0ca6b254cd43a17be86ccd7faf808fc909bbc3

See more details on using hashes here.

File details

Details for the file pyfrpc-0.2.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfrpc-0.2.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e286fb8cea0cbeceddd599d1cc2eec216c2a66a11557f693453463a7e843bf3
MD5 f381a05bfe09c4c258d0b1ddf2af6394
BLAKE2b-256 a6322852709e27563713137729277de701ccfe240d43cba4b0580215dd4cecd8

See more details on using hashes here.

File details

Details for the file pyfrpc-0.2.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfrpc-0.2.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be46c4804a5283e9e3b98b80c042efeb58d37136437e29473fefa21b5b8e2651
MD5 ba5e7e7e6cb78773d19e3039cdcf0951
BLAKE2b-256 d75b05ff22ecb903417486c97bcb3632d5f1bdba73f9e33ce4c5cf49c470f3d5

See more details on using hashes here.

File details

Details for the file pyfrpc-0.2.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfrpc-0.2.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb2991e1b3959ef631477694c73b90c4843cbcdf13f848f78645e652764894e3
MD5 423642c713aa2f1e969b4933fabc75c5
BLAKE2b-256 8f4b8d10c7f2aaa3c14559be34def0747bc6d614cf46355405350b6893bbe709

See more details on using hashes here.

File details

Details for the file pyfrpc-0.2.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfrpc-0.2.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 224131d444c8ccbae357d11527c6f2fa860d97384a1c911516d1489a61d6601a
MD5 58263d5d0368c861a06b0f4375311755
BLAKE2b-256 29f594f25f5f290e64951c2df087813863d5066c54fd8b81ec7bde1f012d8ec1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page