Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 867 Bytes

File metadata and controls

38 lines (24 loc) · 867 Bytes

PyPI PyPI - Downloads

Nats client

This is a client library for NATS written in rust.

Credits for Intree for supporting this project.

installation

This package can be installed from pypi:

pip install natsrpy

Or alternatively you ca build it yourself using maturin, and stable rust.

Development

We use stable rust and pyo3 for writing python extension module.

In order to run the project use maturin:

# To create .venv folder
uv venv
# To build and install the package in a virtual environment
maturin dev --uv

For lints please use pre-commit.

pre-commit run -a