Metadata-Version: 2.4
Name: natsrpy
Version: 0.0.10
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Rust
Classifier: Topic :: System :: Networking
Requires-Dist: typing-extensions>=4.14.0
License-File: LICENSE
Summary: Nats client library written in rust
Author-email: Pavel Kirilin <s3riussan@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

[![PyPI](https://img.shields.io/pypi/v/natsrpy?style=for-the-badge)](https://pypi.org/project/scyllapy/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/natsrpy?style=for-the-badge)](https://pypistats.org/packages/scyllapy)

# Nats client

This is a client library for [NATS](https://nats.io) written in rust.

Credits for [Intree](https://intree.com) for supporting this project.


## installation

This package can be installed from pypi:

```bash
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:

```bash
# 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`.

```bash
pre-commit run -a
```

