Metadata-Version: 2.2
Name: jsonrpc-py
Version: 5.6.0
Summary: Pure zero-dependency JSON-RPC 2.0 and OpenRPC implementation
Author-email: Andrew Malchuk <andrew.malchuk@yandex.ru>
Maintainer-email: JSON-RPC Development Group <dev@jsonrpc.ru>
License: Apache-2.0 OR MIT
Project-URL: Homepage, https://docs.jsonrpc.ru
Project-URL: Source Code, https://gitlab.com/jsonrpc/jsonrpc-py
Project-URL: Documentation, https://docs.jsonrpc.ru
Project-URL: Change Log, https://docs.jsonrpc.ru/changelog.html
Keywords: jsonrpc,openrpc,asgi
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Provides-Extra: ujson
Requires-Dist: ujson; extra == "ujson"

# JSON-RPC Python

[![pipeline status][pipeline]][homepage]
[![coverage report][coverage]][homepage]
[![latest release][version]][pypi]
[![pypi downloads][downloads]][pypi]

**JSON-RPC Python** is a lightweight ASGI micro framework for building web applications.

## Features

* Pure zero-dependency JSON-RPC 2.0 and OpenRPC implementation.
* Simple and user-friendly API interface.
* 100% type annotated codebase.
* 100% test coverage, so it's production-ready.

## Requirements

Python 3.12 and above.

## Installation

```shell
$ pip install jsonrpc-py
```

## Distribution

This project is licensed under either of [Apache License 2.0](LICENSE-APACHE) or [MIT License](LICENSE-MIT) at your option.

## Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache License 2.0, shall be
dual licensed as above, without any additional terms or conditions.

## Links

* Documentation: <https://docs.jsonrpc.ru>
* PyPI Releases: <https://pypi.org/project/jsonrpc-py>
* Source Code: <https://gitlab.com/jsonrpc/jsonrpc-py>

[homepage]: <https://gitlab.com/jsonrpc/jsonrpc-py>
[pipeline]: <https://img.shields.io/gitlab/pipeline-status/jsonrpc/jsonrpc-py?branch=main&logo=gitlab&style=flat-square>
[coverage]: <https://img.shields.io/gitlab/pipeline-coverage/jsonrpc/jsonrpc-py?branch=main&logo=gitlab&style=flat-square>
[pypi]: <https://pypi.org/project/jsonrpc-py>
[version]: <https://img.shields.io/pypi/v/jsonrpc-py?color=steelblue&logo=python&logoColor=steelblue&style=flat-square>
[downloads]: <https://img.shields.io/pypi/dm/jsonrpc-py?color=steelblue&logo=python&logoColor=steelblue&style=flat-square>
