https://github.com/explodinglabs/jsonrpcserver
Process incoming JSON-RPC requests in Python
https://github.com/explodinglabs/jsonrpcserver
api json-rpc python
Last synced: about 1 month ago
JSON representation
Process incoming JSON-RPC requests in Python
- Host: GitHub
- URL: https://github.com/explodinglabs/jsonrpcserver
- Owner: explodinglabs
- License: mit
- Created: 2015-11-01T23:51:59.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2023-05-31T01:16:14.000Z (over 2 years ago)
- Last Synced: 2024-04-30T00:02:51.571Z (over 1 year ago)
- Topics: api, json-rpc, python
- Language: Python
- Homepage: https://www.jsonrpcserver.com
- Size: 1.12 MB
- Stars: 184
- Watchers: 7
- Forks: 39
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Process incoming JSON-RPC requests in Python
Documentation |
Developer Wiki
https://github.com/user-attachments/assets/94fb4f04-a5f1-41ca-84dd-7e18b87990e0
## 🚀 Installation
```sh
pip install jsonrpcserver
```
## ⚒️ Usage
```python
from jsonrpcserver import dispatch, method, Success
@method
def ping():
return Success("pong")
response = dispatch('{"jsonrpc": "2.0", "method": "ping", "id": 1}')
# => '{"jsonrpc": "2.0", "result": "pong", "id": 1}'
```
## 📚 Documentation
👉 Full documentation is at [explodinglabs.com/jsonrpcserver/](https://explodinglabs.com/jsonrpcserver/).
👉 See the [Wiki](https://github.com/explodinglabs/jsonrpcserver/wiki) for community-editable usage examples in various frameworks, libraries, and transport protocols.
## ➡️ See Also
- [jsonrpcclient](https://github.com/explodinglabs/jsonrpcclient) – Create JSON-RPC requests and parse responses in Python