Skip to main content

Nats client library written in rust

Project description

PyPI PyPI - Downloads

Nats client

This is a client library for NATS written in rust.

Sponsors of this project

Special thanks for supporting development of this project.

Fallback image description

share to connect

installation

This package can be installed from pypi:

pip install natsrpy

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

Usage

import asyncio

from natsrpy import Nats

async def main() -> None:
    nats = Nats(["nats://localhost:4222"])
    await nats.startup()

    subscription = await nats.subscribe("hello")

    await nats.publish("hello", "str world")

    subscription.unsubscribe(limit=1)
    async for message in subscription:
        print(message)

    # Don't forget to call shutdown.
    await nats.shutdown()


if __name__ == "__main__":
    asyncio.run(main())

You can see more usage examples in our examples folder.

Also, our tests are written in python and could be a good place to discover features and the way they intended to be used.

As of for now, our documentation is only availabe in source code. You can see it in our type-stubs folder.

Development

We use stable rust and pyo3 for writing python extension module. In order to build the project, use uv and maturin.

uv is used for all python-side dependencies (including dev deps). Maturin is used only for building rust-side.

# To create .venv folder
uv venv
# Sync deps
uv sync --locked
# To build and install the package in a virtual environment
uv run -- maturin dev --uv

If you want to setup automatic rebuilds, use this command:

uv run -- python -m maturin_import_hook site install

It will force rebuild project when rust code changes.

For lints please use pre-commit.

pre-commit run -a

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

natsrpy-0.1.3.tar.gz (138.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

natsrpy-0.1.3-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.12+ i686

natsrpy-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

natsrpy-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

natsrpy-0.1.3-cp314-abi3-win_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14+Windows ARM64

natsrpy-0.1.3-cp314-abi3-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.14+Windows x86-64

natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

natsrpy-0.1.3-cp313-abi3-win32.whl (2.6 MB view details)

Uploaded CPython 3.13+Windows x86

natsrpy-0.1.3-cp311-abi3-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

natsrpy-0.1.3-cp311-abi3-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

natsrpy-0.1.3-cp310-abi3-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

natsrpy-0.1.3-cp310-abi3-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ i686

natsrpy-0.1.3-cp310-abi3-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARMv7l

natsrpy-0.1.3-cp310-abi3-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

natsrpy-0.1.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ x86-64

natsrpy-0.1.3-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ s390x

natsrpy-0.1.3-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ppc64le

natsrpy-0.1.3-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARMv7l

natsrpy-0.1.3-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

natsrpy-0.1.3-cp310-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.12+ i686

File details

Details for the file natsrpy-0.1.3.tar.gz.

File metadata

  • Download URL: natsrpy-0.1.3.tar.gz
  • Upload date:
  • Size: 138.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3.tar.gz
Algorithm Hash digest
SHA256 783bccb04afd15af6fdb9756e82fe79ea663448d2b76a9196582b2dd3e110554
MD5 2edd8c12eb2bef248e50b4b4062732e8
BLAKE2b-256 a8eb1585c69ae1419a96854c8b126b881131eed34abc21ab16ff7f84e924dc43

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbfc32cfc9e2e523e02cd4b3019be5304b35bddbcc81b963aa309837f295225d
MD5 debbad666ad080df41a87d589da3ed22
BLAKE2b-256 430691d210ca9756818a639b4a4fcf054ad78cc4efc321b2ed8f74387b485249

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47947894790e0685d079e677585f7391089a36b3904a4940f7580eca0dd2a93b
MD5 ffdaeea79b287c0e5a4393fa8f9ba32d
BLAKE2b-256 74c3b5ed8e43bd9dd4a71bd099d889b168d44bdb657c7a97ae174afa7e577fe6

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4b905471c4b8655e594d472a9ae775c80e744784a1085532daa7d83de40b7bd
MD5 a72a831479135e9ec3d47487d89d1104
BLAKE2b-256 5e6117a1ef7da286eeaa8b3091a121be46f3c411731b0e87f8bc3f808ffc0b9c

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff6a3e5af56d428c8c64a4198039b6965b31e5045089d30f7fc275f315017534
MD5 f93d1aff498f6d47ee000ead3b466517
BLAKE2b-256 5bdf16bba92bf6d483ca489df4cbc4d5463e5b127c37abdfbe69a6b849b17653

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ac50ca1559ec73f11a4980027a0767227bbb31f320c5cbde87de86c6ccbdcdc
MD5 fa3cc7c8518160f3373217ee83ef105f
BLAKE2b-256 cebaf0b747cde159f2e61b763a8ca834117841527f53aedefa34109095712664

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cff148ccfa71d073d4a6e78bfc91c9a538bcd95fbfa0a0c6933a772cb793b24e
MD5 ae66475b0e0b5c1c0e8c089e83787d05
BLAKE2b-256 a981611ce1b877ccdde8aac24128cdb81e0645a810fb9a0dfbd72141f1057437

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4229a243140d967beb8645fcf5a3e63c1a0b3321dc78a981c658cf3f8fe2edb
MD5 fc9b02af65959c2735ff584faa01fecb
BLAKE2b-256 e49bfe95ddaa9a65dae18f7c7e3db455eab5a5fa6d433ca93797631c2ee870ff

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9abe918f2fbc8dbbb5e560ffd20e4ff4c77edad5a1b350ac9cbab677a8e52e24
MD5 55b59d80a535abed319fcc6de15ad3b5
BLAKE2b-256 61a64cbea17762e15c76b07594596385ad65949864eae5350e3121bf3f688379

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f5f8add68519c39178a30a6c39cd2404feb69fedc2f2a74708963d7ee088045
MD5 2a998a4191722590b2ccaa55e64e30d4
BLAKE2b-256 52b16b503f2e24c36b362efba6b61e73da053883249c3fe84e63474dd58ff316

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: PyPy, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b91839cceecb4e072f16fe13253875607e1fe31557f126aced73625feb910e9
MD5 a3e500a4e0476a4182a3ce20e535b77d
BLAKE2b-256 e8f78063859db2f2d06b8460827f787f57192d7e3d6038c83a0c1f1b265df029

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa200226fabc860b7273b21d3d6f5cb04cc240de3bbc6fa9a938368946404e90
MD5 519ed3e939a58562e06f2ec3e2591ed7
BLAKE2b-256 9f0f3a5959928410ee3b8f8f63be4d2a1dd85b7ae1927b8352cabc326f3170d6

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24b3bb83a4de095c9f0c66df123ecd7397edbd9f1554827486d9da8df5545310
MD5 84806ebe3108e0b31caa4e29c614a262
BLAKE2b-256 0389d4e773d22248d3bbfd2e8aa5afb46119e9ec1f71e2c41a934c9451967a71

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b9de581a6d7b0e4875be1311f1b9d0cee6cc3b3933ccf49c1c90bbefa7b4dad
MD5 06606d9702465df87526ad9f9d0935d6
BLAKE2b-256 17fc9428f2af5b23663231e236b895a8304249d80ecb2963597dae6219450ed3

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c800963d84dd04294dc4812b68b0cdb9d697e73d657d277b25e7303c03e02a2
MD5 cbbf88740296f63022698ea87fb37280
BLAKE2b-256 2730f30d4c501754e3363e87b7743bc7c07d90d2833fc048703c6c25a3d0a807

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 662903f5221a34260aef77ef8340d5d47dca484e36b7ef2a8ea66830c8334ecd
MD5 5b90bea35d603081e088d8f91809ab6e
BLAKE2b-256 d5539856f796baba5e90001796fb18870beb9e810bc1dd0001468b80b6561cdf

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ac995fc78edb07a31dcf24f15f106feb63ff00dfa15358e4d84191dd4be2839
MD5 b7ce24f1e00f4da3170dc2ae533c3441
BLAKE2b-256 e30436ddbf3546d6a58fe947061a29f35b653ddd9a1b383e05ce20912eacac82

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f11e139a8db09698a3d9a008cd48f5d567e8045032496a685da4ce0ce1d009c
MD5 45ff357ab43f82ee945701b202036983
BLAKE2b-256 889f1f4db01f65a261e0e1cd162b8a906b3d5b97531b2b6e20a0d176f531c529

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1178a33da3c347254fae04ecfe8b20f00270d0434ff0c7e33da3fa1d0d442fad
MD5 9f07751e500514019ae9baae0dad1131
BLAKE2b-256 417fa42dccf99f2c0f116384a25d741966f0a7bf1599d2254d409f1c0315ef0e

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4250252afab1bbe12719229623229e9f231b02eae7615f575605e7daa044b9a
MD5 2af4269105596292fbb29077ae8f96ff
BLAKE2b-256 b768cc96a9c0f1b8b6b9027c13beaac577049e85964bfd41ee5780ab1338e0b7

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 161000227bd2bf306afefd6ad40d6a10eee4f2e435b24f0662a50f3aa54c4d60
MD5 11923fb81d4498c0a42c38c96b6bf1fb
BLAKE2b-256 36d9982198e5f346ce7401fcd60d6011ba3a710ee9e83e057cd9a8ea5be3c3f4

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6167a0e2371217e157743c94f0cc0dd99fb0870e220116d3e3cf5a4dd60422a0
MD5 930a54eb6e3dc5add2ed0b5c7051371c
BLAKE2b-256 fa0ce9b8068a0a76be738bbe14066413e182b50b8b58e2751e285d4dd4b2f362

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f76559c9f10c49ea5d04195b64bf3ca1886255e18186bd76c5da50c17f6081c
MD5 4e3eca05913ad7a24df6cac3f71dc119
BLAKE2b-256 d53a6b3034945d7b7c04a2b2031c08085ce89d8c5ff64898f1dbcde22d521047

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-abi3-win_arm64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-abi3-win_arm64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 14e55f7edb979bbdac1a505c822978c195dd5e4d80fdfd41f9794a02a4709823
MD5 c056f647180f268c3d919e3b697b94ed
BLAKE2b-256 ede5bf8974d357095e3bef32f07628ed7b39f691ef61daef10b5906f1b44be96

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp314-abi3-win_amd64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp314-abi3-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp314-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 ef55b7e495758d80900f3b4d465dc4d06d7ef858f26c32f3651c93049966e182
MD5 259a4857f8967b06b1f6d5f7f1a07ff9
BLAKE2b-256 5e35cd6668c8195632f9322471f20b5ec42521c6fe6ab63be54b72be44bacd38

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 364297c253fd934f0c2ba90052c7ab6fab55de66220351274c3e88bfb71e43bb
MD5 82ba2e1ad28449ad5354725ad64913e6
BLAKE2b-256 f52e44fc2971673325a1c16a2cb2f9709cecee972e65804f1394cd602c5fad8f

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9eb998edadc07893a49b5215193b36865d9c74549b8f9b446bfedeed696cc0b6
MD5 a447ff026ed59722b44b8b90b4ef1d4e
BLAKE2b-256 205b46e19683f18c5113c83f86010a357057359806b68472064ba031ec33336b

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d27022b875daee3cfe03149dc16a64b89327bc6b1c9138f54ca93973c4ee9773
MD5 e9cd2f369ac51c6488c82245bf8485d6
BLAKE2b-256 a2c24d29cf78e5e34f762a929670991d0d2edebfba74603a7f124570f36eb140

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68eef3b4e356acb48edf15a306feb2cd67b20b4d30af0375361e5decc7cd3516
MD5 2aed625fad535ed459fd721bb0def90a
BLAKE2b-256 6af5668647edf580ef118d4303f3b28dcb9090965b871240d209a3915ae492c7

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 434e3c0e121ed2c29a38869abde9623e6db92468948826e60c9372c17213afbb
MD5 9b8ca83f05edf6abc3a372211fddcd85
BLAKE2b-256 50a776008909ab417ccc5e2b80ceb33dafbef80ba73d5ee19bc9c7bd9754c52d

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5658cbb5b6d630a1472bb35845300daa495f139c02def7aea080c2835b0b5b0e
MD5 6c2e2b0b349eccebc61fa94e650257d8
BLAKE2b-256 c52579cb6d161b71794a1a351eb1cf61aee7696d80c97e23422b9b84050b9cf6

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fa4553714b0dcb0bfdcaf800641b32f2b9e4c84735b75faad1d76436f799c21
MD5 37b3367f459e8096ff9eb3fb648c06a9
BLAKE2b-256 4e16a4379b2ea1cf2ba9b6608e4ef3121631093c1ee187a29e6be7c641eeed9f

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99bad4b0225bd9e19d179b793c29aa55be08f68951024463265e0c4f45b8345d
MD5 4beb46b7ea6a1295ea46b96271256e93
BLAKE2b-256 b4937cd05547d010ec356cc4627d203a74d9300a5f0c923e1526122cb38cc9d9

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp313-abi3-win32.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp313-abi3-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp313-abi3-win32.whl
Algorithm Hash digest
SHA256 8b11ce6ea1a74861d960174bd21fe0a3e21cc5485f00a8009ee9400d969f7d5d
MD5 058275b12a7255fcc9e29bbeb29b680e
BLAKE2b-256 3a583539f132a227e76d094439fd85ff9eccdb782d4f02d38ce66ca8ca4ae83a

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp311-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1f9144625838139d5265e7d075c60150fcdadd22d46a90a514e9645f783d648
MD5 7b7f5eee7372e0a1c500a96fe093995d
BLAKE2b-256 3753f954f7a3f26bddae5cec5cabe06a481b7d6007a5ad832f4d4d50cbe2d5a3

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp311-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp311-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0cd9a9cb8048d14ba7ac426d431d11e8f99326fa483e27050ff8ca0f0bb5b0b
MD5 81e077919044b552ed0bc48d650c6ffa
BLAKE2b-256 04bdd880b795a636ad2cd8ffc013371b7f32f9fbd496fa276bb32aac76a29150

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7556759ed7d6c5ae27ae675e9a30db822d95f0bb979403544336d7f38417083
MD5 41facf80f37cafeec8cfe38dd99a3421
BLAKE2b-256 de3739b452b930f8482c2b3bdf61225a7614aa541f1b1bf3be1200b6855df0ca

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fdf2a33102e78f8384c3b152637ac9689b7f13718569f076452a01329047515
MD5 cab73a40a2499d9ed40cfba86b0c69aa
BLAKE2b-256 84da9ea5b435715880f9a8498f1eeb0a4e8311d23f59f820b01593606c84c7a8

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d245ec29f086e9a1ef3ecd26d77cfabc65d1eab7a27c7ca139fbf91a757a0b79
MD5 45f1141f8005e220e6d0a88d2485a77c
BLAKE2b-256 e4c8cf820058c7468beeb5d78b5be8ea1449aae83ba577d15379d1ebcd5b6366

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfb3974dbc83a0693cddf4ce22bfb459c44e2b1c73a0ed9d64e06ba47ad84a80
MD5 cfb458d14d87e08b703f8b109c234f65
BLAKE2b-256 2488f656b79a19dddb574712af8beb46feb6695d47e37de37a9b204de2f280f5

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2d74a523338c731f37a44c75d0bc9f37a2d3993d658245391f0c5651d74286f
MD5 521202acf9a4cf4776d85af76faa0f94
BLAKE2b-256 b415e7d2aa45cb0219e75144f95e97d7458e8194eb967343b0b1866274fc2026

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63e3cc32c751933617f5a663fd40943e7d59c3615e237830247c0ba13342e4f9
MD5 bda931f291423f4877c2da87d1703a5b
BLAKE2b-256 acf101e649eda9bc1c473491f73badced7335750e36d6d564dcb31f70c77fb36

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07208942b770ffb24d97ffe5319714b568f3ea92934447f74deff881b3b67d32
MD5 39da0b1aef055e8c06750d880e2320fe
BLAKE2b-256 617535a53b56efa5f1bea94480414604e13930c8c00e2a74948a26d452f3b433

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 961352db1061d2eb00d8b0ac17640623a6369a259b7f30d690562675b40f7937
MD5 6140370f3feb4aeb04f76be8360dc096
BLAKE2b-256 38075466e6a164d8d33392f0c51f8dbf63e96ae38c7c6761734de0cb33919419

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acbf84df7e09f4fe1ead1a7185e1d9f57578057cc2d505753c50d5be71c76e68
MD5 9f338ddef03e186e7cba2ad57f49154b
BLAKE2b-256 783e84809cc0cfcff35caa6981dae218656658d1b3451ce67810495bbf173426

See more details on using hashes here.

File details

Details for the file natsrpy-0.1.3-cp310-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.1.3-cp310-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.13 {"installer":{"name":"uv","version":"0.11.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for natsrpy-0.1.3-cp310-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a7108b14786d57c6f0dccdf9aa070118a6ebe585d41d4f8813100a8d46abb871
MD5 d16dd163cd74ceab69ec983e6f543677
BLAKE2b-256 267e7dffdc3f32c37f42532af4bc57094e3fdbcd129392707331fa7015ac126e

See more details on using hashes here.

Supported by

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