Skip to main content

Turn Flask into a simple RPC server

Project description

📣 Flask-RPC

Flask Remote Procedure Call (RPC) is a simple library that allows you to expose functions in your Flask application to be called remotely. It is designed to be straightforward to use and easy to understand.

Flask-RPC does not follow any current already existing RPC standard, but uses its own standard, and primarily works with JSON over HTTP POST requests to call functions.

The typical request/response cycle is as follows:

Request

{
    "frpc": 0.1,
    "function": "add_numbers",
    "data": [1, 2, 3]
}

Response

{
  "frpc": 0.1,
  "ok": true,
  "message": "Function 'add_numbers' executed successfully",
  "data": 6
}

Installation

pip install flask-rpc

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

flask_rpc-0.1.3.tar.gz (7.9 kB view hashes)

Uploaded Source

Built Distribution

flask_rpc-0.1.3-py2.py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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