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 to Intree for supporting development of this project.

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.0.13.tar.gz (118.6 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.0.13-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

natsrpy-0.0.13-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

natsrpy-0.0.13-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

natsrpy-0.0.13-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

natsrpy-0.0.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

natsrpy-0.0.13-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

natsrpy-0.0.13-cp314-cp314t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

natsrpy-0.0.13-cp314-cp314t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

natsrpy-0.0.13-cp314-cp314t-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

natsrpy-0.0.13-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

natsrpy-0.0.13-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

natsrpy-0.0.13-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.12+ i686

natsrpy-0.0.13-cp314-cp314t-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

natsrpy-0.0.13-cp314-cp314t-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

natsrpy-0.0.13-cp314-cp314-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86-64

natsrpy-0.0.13-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

natsrpy-0.0.13-cp314-cp314-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

natsrpy-0.0.13-cp314-cp314-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

natsrpy-0.0.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

natsrpy-0.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

natsrpy-0.0.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

natsrpy-0.0.13-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

natsrpy-0.0.13-cp314-cp314-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

natsrpy-0.0.13-cp313-cp313t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

natsrpy-0.0.13-cp313-cp313t-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

natsrpy-0.0.13-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

natsrpy-0.0.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-cp313-cp313-win_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows ARM64

natsrpy-0.0.13-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

natsrpy-0.0.13-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

natsrpy-0.0.13-cp313-cp313-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

natsrpy-0.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

natsrpy-0.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

natsrpy-0.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

natsrpy-0.0.13-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

natsrpy-0.0.13-cp313-cp313-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

natsrpy-0.0.13-cp312-cp312-win_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows ARM64

natsrpy-0.0.13-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

natsrpy-0.0.13-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

natsrpy-0.0.13-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

natsrpy-0.0.13-cp312-cp312-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

natsrpy-0.0.13-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

natsrpy-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

natsrpy-0.0.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

natsrpy-0.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

natsrpy-0.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

natsrpy-0.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

natsrpy-0.0.13-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

natsrpy-0.0.13-cp312-cp312-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

natsrpy-0.0.13-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

natsrpy-0.0.13-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

natsrpy-0.0.13-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

natsrpy-0.0.13-cp311-cp311-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

natsrpy-0.0.13-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

natsrpy-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

natsrpy-0.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

natsrpy-0.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

natsrpy-0.0.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

natsrpy-0.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

natsrpy-0.0.13-cp311-cp311-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

natsrpy-0.0.13-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

natsrpy-0.0.13-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

natsrpy-0.0.13-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

natsrpy-0.0.13-cp310-cp310-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

natsrpy-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

natsrpy-0.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

natsrpy-0.0.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

File details

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

File metadata

  • Download URL: natsrpy-0.0.13.tar.gz
  • Upload date:
  • Size: 118.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13.tar.gz
Algorithm Hash digest
SHA256 5c1f91b79b2bc1fd5ac1e1b3bfa89388ce9e4d5c5aabfdc62256fbed025419b8
MD5 2dbe0033ab6390c9a39f6f39f69b0a87
BLAKE2b-256 f693e782d42fcf73681cc49ca8ed52d52872ef24f2fc10ec9992e2981a9fc3a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec20383c6c58990ad82cef092d91daaf8099e8493c75051af04a87d37adf9be6
MD5 f8e2e2f62571cebff53badaecb9d6ade
BLAKE2b-256 ea6b37551e34dcd03917ed5b0a24f8e60344a028cf3d034b4575a634333c5b90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcdb255c2a951addbea79522a4584aedd6ebc36d0b4eabb8cc45f1d847f7cffc
MD5 434ed2c2e78bcf21a3377bb1040e1cc6
BLAKE2b-256 ec7d377e5aeb2f275995c4155db5d79494b29b19319128ac96a08c5bbf25b0d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3228d9729e5c44a5148345bec82f499e19ae1ff0bf80b0512f1e0b5e7e04762e
MD5 aebc76ccf07bfe0d65a773379f1d2114
BLAKE2b-256 bb40c2e6c2fe9e60640835a8816ff3b388b9daa1caa81e5b1a8c8f50600113cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b96938f70c5bbe03e173cfb413b6cc5884435a2f16eb570ca9c335a8f34d8bb
MD5 2128197279d5e9141410fc1ac757d754
BLAKE2b-256 ae0c2326d5dd5b710e7046328492402c7bde16cab40bfe745fbcdad835177b85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6a160b6c946659ff7e013deede519c9cbf748c85c6bea069b7531bc9b15bb92
MD5 8a4431ad9bab62bf3dbef1928719a86c
BLAKE2b-256 83ec2d866e63b4d21e6c0e59548cb58ba7511a4c5b8bfcca2a4e6c2f0c22e324

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c301c929c199f9c65e41d7da52e7385070dc403a579d7a5eb24b0f846a044020
MD5 76c84552e137b18311a2413c4750acc2
BLAKE2b-256 87f7c0d9c6e9278af0be655780d1d0b4fb8b73778217c5e065dbc5377b7da1b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75484573ff35a31b5268473f4b963c1891535652592d197c2fba33c1ffa20b45
MD5 45c5d57b99ae42d6131d5e06c2bd44d6
BLAKE2b-256 7e29257a6219509f101fff061e9a8495d7202c2bdf811d51775236d59bba04d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 086cd438d8604c3398d9acf8aad717793433ede28731727a85bc3d77ae7cf9bb
MD5 6c10815bf9c86b17032b227b29f5fa98
BLAKE2b-256 6611687c23029485e3172270ebb94b3d68fac038525ccf463db3c5ebcae77607

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67cc09db367eb22cc535a6be75fe44078e5c172821ac598ae255ec3950833fbb
MD5 145fd184fa0c3f4f98dca3adc4ac5fec
BLAKE2b-256 587a996659938277213d0a6df6ced4aaee8db040ddd0686efc9df664f99115f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: PyPy, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 37ba973dae522cc3ea1d5cc4b3f484f0ed3c36007d2f50c636c1b885424ad6f2
MD5 d5376c0987ab880dbb8b20ece22c63e4
BLAKE2b-256 fc6f0d9e3d10e918b5f1da4bf0b84e8ebc45f6a3aada3003ef300e37b0a02176

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff039a913ef24cda7b2ae2d423410f5315bff7a255021f85556a86587a0f3267
MD5 feda8d0f86d0a4eddbb234f7532ccd6b
BLAKE2b-256 cdcd1ad42c35f2698b9ca00388c27361ba33bedd26f4cee206cbc0e67c0106a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f61dc6dbeacb1e8d3972b29253028969380436208104a78e77ff5aea6ed54c3
MD5 85810fce1e1149eef961bb1dffa265a7
BLAKE2b-256 9a821577ad5706d2db5cce82430b7b056ed334e59a8a7c811226abc5bb9ff04a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08716ac8e50f2f5aa6e8d3244351803228e9abce64ff6da73b9c5f04fa3498d0
MD5 1697dcd30b164a1c4f24e8e8a8146776
BLAKE2b-256 45f67febc390536ce3eb06bf26f6d49094857496c0e91d47dd90dc8a8ab357fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ca682da3620ac625ea0e32eb153c1c12a10646ba6551272dabbcfb208e8bc2b
MD5 f55ab59a7b4b4b420e6d3c7117510edf
BLAKE2b-256 e05f53ec64fb78cbd166599982bf46cc30ae13c55cbb964f05e0f2bc24fa7307

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e542452f300cf1b25b3ef28c8dbff5cc13d98f4f10738beb05c558b380a32eed
MD5 b88e67e2bb6438d833bad6bae4c8b807
BLAKE2b-256 adb9da793952a471a40f6c3af55fb4ab54a4fe74a7eb984ff5dce712ebf76c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27b900c1ffdb99787451d2e38c940a3f7a2240f350e4450ff8c572c8aa8c2833
MD5 d9078bb0bbb3a1dafe79859c5cc72ed1
BLAKE2b-256 9f5593b63c9eeef2be82b84b8f4080a3e7f13b84bf7a4bc5b1fb3384237763a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf6752b56393e2cd13356c9327a22aec7060bde7df38a16bb2e8a2bd0774e2c4
MD5 d743e42cb40169513a115cd61ac00565
BLAKE2b-256 3c5727f3da183de6d385b1745eccf248b4d93b376baf78f06e9dd40aba6ced8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88eb5fdc49672424b75e7d416f52c14cd2e2ef77ba7af973368c0a32d1ca812d
MD5 d55c00023b56d91e69793b70682ead22
BLAKE2b-256 dcdf73a34021d3e22183842141025335a784349b3457a0252ac772fc2b48559f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9124f797969297118fc316c6e33fa98d1f2b0238fdb1fbadbbe65282dbd0d007
MD5 41e758ca0ff57fe0249935584ffe26e1
BLAKE2b-256 b965c8365175e363b1a23393cc67c29a94c8fb06b5404a76280aca5e9084e5fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 227162cce2980c8feef6e6175d7e31a426a555978c80114047d077cb908d7ac2
MD5 f86bc1abbdefcee65be4a45818024e90
BLAKE2b-256 63d62776eccf796425e318264aa887be3ed0483e8836a763bf628946bd6208c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cb59721a271b51c9379b4ef4ab1daf0e7bac8ec7221903d159814f50a25abfe
MD5 19c014dfdc384e5940eb8139bd818fdd
BLAKE2b-256 a024ba417f6f3c5af59c90c867622c9ec76424ec0a5cd72d4d7133e0b153ccf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e921f9ca1e47c09d6a6a1df6473e2df63cfd8b5fed13930783ae55b3729d7c2
MD5 e7527806d029048843469513d30e4b78
BLAKE2b-256 2a0534b0ec726f971f005c9ab95f4fca65e6055cac2c3bd4e2cf2f754e252f1b

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 369a0ff93869a81906b1b2c840fc7f4511b6e2ad073c4050ecdee0385b0ec697
MD5 5eea0de2c085e592493d7e9720f80025
BLAKE2b-256 174258c0133556e54ec5147ed5f019e8041692a7457ebf9f5e7f667acb005d52

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6c19b70701c658d28afb5e3984a791d8652b1e40a62c6b871e9830fa1280d319
MD5 976d7d9bc5b6bc6929c0ca5a35fef52d
BLAKE2b-256 8fc10176b2eeda31af98d3df2292d0dffda3a6f03e73a93608eebee69d52a884

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22a76281d684f618c0163cba05bb5f97cc2c998109a80b4b285ac0245cdb2a40
MD5 29519dcfdaf7de74ea6f33cf94d4f1dd
BLAKE2b-256 7d7d492bb1471ade8669e3bae7e8585ca6a392fd875c68b09814353db5b133b6

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4556125832608c43fc32aa38452a8dd29f4bbe77511ccab79919e785f3a18c5b
MD5 aa2021ee23449ce980c26541c06f9f3d
BLAKE2b-256 c51f5b880ad01be4151b465e610174381ea5398e597cc154672998d25b6c945a

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 972cf067a086b37b74d216a586dc3ce914bfbba94e28593e4f534c9fb95fea32
MD5 184f0252ef4b9d8b15e8b4963313a96e
BLAKE2b-256 f98a5f49ac2569423d8d4cc30fc2a932a7bcc622a7867da9e7179318ab25077b

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1822a0af299d99704f33007335e725dddcb3280de14ab9430b77297cdcb856db
MD5 a510dad8a7a3b2c515d65ff8024e84d9
BLAKE2b-256 a2e0445aefb0ad4b827ce05075ee7f62b1b2970928a43496ac92685100045f84

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c83b1870a0603f65092c3eeb451efe959f39d846a1543e30872fc9a782d61dc5
MD5 9e672fab2f3d286e62a3eb787c49b11e
BLAKE2b-256 2535cc237d1f268f401f182654acb963ffa70df0295f95887e6745c57eb46590

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3071f04d7be4a8ad2fe734ba74b261f4eee9810085d0305c5bc9bac23440e4ed
MD5 b949eb722a7d77a4deab51b827b19f63
BLAKE2b-256 9010adc60e9d93f6c5c758d90e05b1dec443ca77b49b4deba4e176ae7af7d824

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6886560728690125dde327fbaef4b19edeeb8dac2e1163380345294cae4d1676
MD5 d9ffc08e7869a4394f0f2f3055cd1cfe
BLAKE2b-256 49f4caa768c664dd8fd5c48610c91b5101d9e6fb0d68926f00ddedabdf95cf8a

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78bdda2d5f431a6cd5f3161f6c6561c5dde6ca2e346c2480cbb7b7b6d54bb0f5
MD5 b3bad1a1afbf8b3e74f8c8569c75af80
BLAKE2b-256 45e9e6b9d5d4aaaba610b143fcb9c9db4ff992c500031b3b8aca923f6495cba7

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34b8da9913e581a7082e29d7e04ff4083bb8253f86867a9b8bf730a98ac53e52
MD5 497fdafdf4624fa0053db79b9d4c6165
BLAKE2b-256 67d64073b40ac3b81103fef438ac55649a6175984c68d0a2d50094aa55a0e4cb

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0e8ee4d78f2d4d092d88d840e94d3084bddbaeb00ba664fab537de1a0b952186
MD5 a34235da13b90b19ae86527325ae4a0a
BLAKE2b-256 08de76bdda3a9b0fa62c748605accc1f8cddc57cb2ed92fd1707dd170f3f65e8

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cf7aa04096bc68dd20d2a11c10cc357d8dbf9c519eff88979aa4ee65552313c
MD5 3c2c68d24d289bb8db725aaecd391dc8
BLAKE2b-256 e53f8f4b2d6aec28606e1e8273adda2284d2154e6b05b9b95a0da28ecbc6f592

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4172d446be11073200b5258d0bfbe0f66fabe74c2714f3e8414ab6c83df071b8
MD5 53cb1212c0abc0060ef6725182e46172
BLAKE2b-256 3b809569dac676795886a0f9fed8ca393de40da86b9304cbc9f8bf8454698298

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 093d556d0988452adeb8fb042da3589e3045f16194e22559da3f27e38d9a4167
MD5 fa487faef47b87b58ce5b7c8c09405f8
BLAKE2b-256 a48c17bc1c98ffd2e5db10bdda339be77b2e97d33e5f07c2f456eb07e8458ce3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3b87eef3e65a965faa7f005f79a931d80a2426f1bff5870b328be29eaff99f8
MD5 a843b1eb8c77b71970286331db941517
BLAKE2b-256 78f1578263e7a8645d59ff110fad19fb60453b1e1346897000b3239fcb4d0d3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c97dae51f37a5dd9a2607937dbe9249c626932c29dd3608eac11d7354ae9a13
MD5 4ad51214cedac567a7e6dba640d2667d
BLAKE2b-256 443871624afe70a9ef63178084dd1a5952fefab60b60ac5d41e4f9570acff046

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd99988ab22b17c323a39b48e64fb665e15168be5f9e2eaa5985ac3694195bfc
MD5 fea58141a89eb2d999df32afe682afa5
BLAKE2b-256 61232eb92102ecca14874f875fb1b5fee6575f5d5dac2d24a4c8cb8b5e109764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c079c8cbcbc74bd75ed298a821975fbbce8bf111671f415f21b50c3e36095b79
MD5 dfae45e889ed9e3dbe9ce8ffa9ee0660
BLAKE2b-256 89e7121a3e37ceab4038d67d693a803d71bedeb457fc7760fb37c030cec3b01b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d5484d511c02447ebe04dc5436720fb05444069a5b44bf08ce7a44e9af5bba9
MD5 b5b26fc299bc38cba3cb343310a91dee
BLAKE2b-256 7f439337956b3f697dc3a2bc7f2a32c93c25c4454d9eba7720622581b2c27bb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36187df45962d364c9ccdd8f1017a02d05b67a2491bb1efb59fdaaa8020fd86c
MD5 2942208307deb91b7ff5675a8e7562a3
BLAKE2b-256 25ff2623f1acfd16dd7a2894e6eb73920ae8ee30f71fa5be10d3e9b24f22aefe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec7c810919d26604d8081aa43f5669674163a6a96e7e0abe5693f546872b9339
MD5 3d7e611b15d64ed0de76f1845d25fc53
BLAKE2b-256 9288d0738f8997b9224f3ab6904370634d1af1a469f9c53782282363c280ca67

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6c4d5845e8a0f662a017bb1c3d5d976483f03b907ed109b7c696ff11241bce44
MD5 408032afd3043f4131234832f2717aa4
BLAKE2b-256 1587f3c7e148aba44b97f05f78123930cc162c993d588318c9975702a8e14bf7

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 54290fd82a49e57fac784c7dd77e4013500e884442045e5be372f1849dec861a
MD5 a9ec872bd8f1ef28dbce171aa355987f
BLAKE2b-256 c450cb176aace4b9d9acfa4d035e22f1ade0406bfbee24734b839933017dab59

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-win32.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 757a5af64a64ec80e934ad023edc4371552f6445c55fab0f0c8fe5a4f59d1f8f
MD5 7006dd3d746712dfde6f01ac47a282ef
BLAKE2b-256 ca83fd9b708992ebcc4d24007305a24e59a5d724b4634ad989d1e5a38fdb0772

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62fead8849581bd10cc94cf11134ca5e2f39352c3aeb5b83aaa7ba2c5e0953f3
MD5 2b09225fe8e974af4fb13e39ecf0a594
BLAKE2b-256 92cf94fb0a84a70fa2c2f54de28375f153e1ec312a38971226c27c69529c3d6a

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20d4ea82a9e423faf511aa21049915bae324cfbcf6fb631dffd2c9874d5ab3e2
MD5 091b3183cdaf35e60bde27bffdaba724
BLAKE2b-256 b8cc957bba5446b5131b9a4346ec7adc42bc0fa54f33bda8f494c7ca71d0f209

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07e86a1c1172257bd67e5fb0d5ee79eb5b8f48fe534c6de95a9c8e69cf23d476
MD5 9910ea4296747b7c77006a63cedae0e8
BLAKE2b-256 6e2fdcf5dc1e92c6765be681dc7f0d014b0eeafb64a124d7915500e3df828cd2

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff74e4c7e46f72a18e4cf9c253e4fa2609da2b5bf4bf8abe0378da6e0ecec60d
MD5 7cc5c0e50184ad8c7ec10b77e30e3640
BLAKE2b-256 719ca7e1f6fb450c5d16695160d3ce901c90d15bdd24bdb703272574d40d6224

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da447b3aae2119b048f738cb2368b16804f02d0d3590c040b0bd493c58a5cc1e
MD5 28a0d99a89d2e42bf22185c7edc2eb8e
BLAKE2b-256 3c5574e3e15e56d5418739d14b0b3020c3416a746601878d342aae16188af740

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04d5e958b7897955440e4ec97d5fc41423c7d0e2cb29fc2377129c030e406a70
MD5 8c2764e218ab844b8e4c9afdd8b6ca4b
BLAKE2b-256 cfabe678794667abd006d3857cc165aceb35af7968f175f5a545e5de1b0a175b

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81da6432cc0ac70f032401b33db773d09dd1229c6d27b06acda974bb7cd1623d
MD5 f2097c1b4c6aa7fb4b3a463b34a2196a
BLAKE2b-256 9018ec98f7beab790daff145278c2a6356997284ca3d5eab4f15c4be0f749721

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf246deb62519f82ce13a596562c54e272a35ab6260e9885717a635d043745f5
MD5 c5a8a4dcd6f112ebc67a17f7ca0572d6
BLAKE2b-256 e51ca132081d97570a628662d4a075b1f594b30ba7c0afbd29562529ea11c7eb

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11918480becd19a57bc65abba89c66398c18c0adea9906ffc308d10bd4e9c66d
MD5 7d42a48fbbeccb7bb32ab4f51e3a657a
BLAKE2b-256 1ba81ed4d128a0155b746febdb18b199c03200139ea005da41ce65551bd93b22

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5ea53bd4301e92f50435fcaacc0334d46a0d960e6dd74b9956d6dc0893b7078
MD5 0e8364b1277b1858d1d525febf42b2b5
BLAKE2b-256 0d63e57450769cf4615a7ce0196090f0f09de02a86a2128621b384b49874ef50

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dad600fcce8b372a789bd2d4b223ba6ea0874aa337e5463e410d13930b092e7
MD5 45b02e06557dbaf628e5842b50eb7e9f
BLAKE2b-256 c7ab3b47dc12aeaa4b8e9f60fbbed91ab5dfdce4d30f11d2df5e0c0bf969167b

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4b8f90238cb19529d17bb0c72b9e2b592c31a2820d193e6f24a1456cb0e3fcd
MD5 0f7bc5aa68204c9257c678ee38762d52
BLAKE2b-256 40af3448eaf0295c726e1ce10a2ae730b83f731bf10f53f0fc4fc8d4a37b426f

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e33c5d80a436125aa3e57446c91b5a2bd25eec987611a41aadd3ba768fbd0c72
MD5 c43b46f61586be4e82bfd7ba8e6016fe
BLAKE2b-256 5863f76b55f51d40c0ad73bfc8d6f68cdb52a66bfab4912b8bf5c414905b1a86

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6db400bf192a03e77abdd8fddf0b8b9ff9f27a8baa8819d3991a7b4ee42e4b70
MD5 956a031a53859d703197f4935ea94c60
BLAKE2b-256 494a20f96c30e076923bd673c139df74dd4b07394c618529241cf99b3813a9ce

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a207dfb2ef49255377515de3f945667f35d4025f8e713bbb65e087602d9be5a8
MD5 705e226d65472c10ad306b27013bad65
BLAKE2b-256 de302b9704046e245bc186fc06451013cd9e7c480af2d4e059626c28d4e29705

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 702de81662405faa68314bca39529602e93081864db58737a23b02b97f7c0616
MD5 ae911ec73b6ffda76c60d7d5cd844544
BLAKE2b-256 45e50121e4ffee9f2fa33208e8a37fc030486083a2b58050dc15ce3215e40a88

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8edc3e42697a2e9293900f33ebe5c279084bc926e12fb03094570abd31e3a86d
MD5 5c5fef52f2573a91eff8520a99674531
BLAKE2b-256 0b72f061128704e747064d71016806ec78da37b8f18ebd00031b8a6c4665a05c

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 431967a29716bce6d471a12371a0e7e41fa6122d12c08d158a842855f28b6565
MD5 74ac1f7829d7206ef030996503389569
BLAKE2b-256 73da8c6a30c87ed1a7c9aa8cae11f7aee7b54eb317cbdda4bbc8e649508b271b

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7836ee3da8bd6793620d28cc0e34208bdf5e0839773f69fac6e08a71d1766ccb
MD5 a51582b8ec0d183a2aca7a23bf50b2fd
BLAKE2b-256 337635bae5c3c9994f9ce9225ff82d8c92d28e60e0b530604930056ff1176bfd

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a499f51507fde88f92b217e3074bd428a5136690a5521031955818e962fa148
MD5 0bbf62271e0e590ae31dd4deab22b1ed
BLAKE2b-256 da73be0f00dab63417e629bbf56aae34cd1e3db2e9ad07cc372e4c618c658da6

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a37f6ff94072fd4a0d5012b4807eb78d1f0ac6bfff08934d81c70a438db783df
MD5 080dcd6444cf228939fdd0059e36f6e0
BLAKE2b-256 16e8879727c416215813c9bc0fdd234ea18c7f0a8fc177b7c8b372fb7bdb365d

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9c4daaf7515ca2e2b667787b705e8c6f69b5083b037e23bbcee366b2d521010
MD5 632d95f3f595b7c2f5b00ef67b4857d6
BLAKE2b-256 64d544bfde27318d6978692e667b6e1559541388489ac77f4abbc7cd061b849d

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9410bda4b3d387815b0cc8235f5850b9f41b5b8da988cdf0e3e80101ac102a6a
MD5 58ecafd8247efb5eda26b5f4a7d48e99
BLAKE2b-256 bdd75231c0a8ddec6a79384d539062ce70be639fad715e3c010bbfaf69687c50

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5e783f69807e3371b4f011dfc1234ac1a59c1f80ada946288ff13c13848cf45d
MD5 14fd6342eb187926d7e63976f3de5002
BLAKE2b-256 10777b70ef2388da5f87ba9fa7f0dfa54ea8ef295b0e31d0598070608fcce230

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8951c3ccfbe5a1ec9995aaccf532c13ec3f90552bfca46dbe8fc8aa8e34ee5c7
MD5 a220451d1e02af8f43442fa5c93d1e28
BLAKE2b-256 5a2126db45bd828fce401956c4e19fe0d4d1751f6b3c8a7276e458d483171606

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6084d20725c2236c6f929867ef64f95a8903dfe2a5bfb451ee917ce3eeca2e1
MD5 0a6ecea5db91ddc16b18ad77fbe014da
BLAKE2b-256 d90bb1286bfcccb6815a6421bb23148191a0d65470c1a85212d0ad3bdef76a1d

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 381ab4bf7eee70397dc8c2543ce0d05ba618e42cb8a2f7c17f88b5d111a8d316
MD5 38446e5e5c23b90602ed8f560ce0f313
BLAKE2b-256 ba7b6975a561ea038616990a2b2d3df18318b07f4398c70374a1ebd204733030

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d22315b83fd817602bd18e6b4193de65dc0157e1c3e247149d2b8768d6223d0
MD5 2f065018144b5c5fce75219eab00a7ee
BLAKE2b-256 7eca761dfaf04bf07079ce7ca66e8a37fd27ef9235bd3a5dba6098eefbad7df8

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0be2279b3b34f9b555e7a4e1c942badb41967a07e9979c84b04a8d3b394f8c1
MD5 e04f6f1ae0f5ee048be17d7404fdfb41
BLAKE2b-256 8f3fa7aa7145e4fecdabcb06486498cdedb77b7ddb798d1d197c80d191848fc5

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 828632363a2f0b062e0df20ac78c5b845e39371eb563da9f79aeda3882e938f8
MD5 731e9a1babc19d1dbad1f2282ea5d22d
BLAKE2b-256 890fc8a3998ede0da53e5f283b3292fb4ba35759390765a1483f7115799a67bb

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 795879cd1f96dd9c772196265e215ff278594288c1bc302c823d6644b95329f7
MD5 08e671a3486f653a7cbb1688e128483a
BLAKE2b-256 c54a9e3949d1fafecb2663859febe6fa65ecd7fffa42698959e4805cba41ee9f

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4452bf6cc8676df89127382e08ccc13b8e26b01e00005b80e67ef37d724b9f06
MD5 ea34ad11fc4ead0cad589e09c8ea486b
BLAKE2b-256 c18b340fe416e0140046ac203bf3036223207444c0f091f7a3e100264dc9e6b5

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af1112d6ff6a6ae0d7259532d9cbd2c848d34fb108fbcacd1e6db1bc83fceccb
MD5 fa656da655679c6b0c54c97731d11e4c
BLAKE2b-256 d57445d0527c50c7a3ca5ed597d242614890a6d24e79c40449121e375e603375

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b1d726702543c6b2bcb860188021143bee8390ce7e0f165a9f19868d87ee8e0
MD5 b0cedca003f792c0fdc730125154341e
BLAKE2b-256 2c797fee82b4ad85727e95195f59bb1b25365584053146bdc5898b7300ffe676

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e7c3ff516279550d20ec0c009cc2dadd25ee34772261714bca78e4a7b446ddd
MD5 638ed981d34cb97f3c6f2e3f448d47ea
BLAKE2b-256 53322b8571b3b521c4dc7e1eecd851907b434622da4cf36c19bbbd2a5cf84fa1

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39004027e32c8272316c1ab849203953c6fcc139420f47913304c3aabb422564
MD5 06ba350d8fb87cf7a3e0f80103b21bc4
BLAKE2b-256 675fdbfb1401c36670f711a68ccaaee47370ded0e6f912e727c190faea3d827a

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 312d2430800c322cdbc912b8a5de84f128f8873680fecb8472af519c4b868e02
MD5 08fb2af611d92998be1a200d56cca77c
BLAKE2b-256 68460cd1915bff9af3693648a041ab5d720e2179a5c0fbe01e11a8d2f6205e8d

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ca3aac222d768e44370e4dd9459cd8564986d93b30d490af3d1b2be6e26f71b
MD5 7b501917e043e779cf4eeea97f387200
BLAKE2b-256 3acb365c4b3da2d5db9468c061285bc9dc76dd8eb4d648146adef690d2c7f966

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e681bb72e7935f7026dd828c10127c474d31946a804831da20ffcd5b15c9e60
MD5 3493e7ec6bcbd47d2849c851024f9607
BLAKE2b-256 0b932982aa4d6a670b654052671cb903d2fdcecc88ba1063698ddc8611a9555a

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a99f83da054c3558d44b6c0e8ab692fc5ea3a05884b2838884d756e5fb8e384f
MD5 af6fd2dc30f4cecfd4c8ffd90e344c81
BLAKE2b-256 68fb7ee612de8040ce8e02f34f7b7579f7ae380a3a1a1d10eb7c057e0dcc9220

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50b537086d32234de14d98941b8b892377c825e3d702dfa4cb3b9113aa5963e3
MD5 218a9280b3d352a209b4e7b14b72fb0d
BLAKE2b-256 f7ad7a0c9425efd2de810a03657b79db35c6ffa7080c391a91c816f15c43e89b

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a4166de0cbb1ca2220379838611200b2431dd62b6af779049cd892c0af30ca5
MD5 090d300090dbfbbc593b72ea56b07b8c
BLAKE2b-256 d6deaeee8f702908f0a358c5968b935c75b64830891c6c7e86865c9e19d6c920

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d8158858ec3fc23e5d9ace55e95b6b9346920994060166fe64dc72f899ef5bf
MD5 a66dbdb81a76455ee0daa617b920a3b2
BLAKE2b-256 97f08040a00a4ed01dc2891dac633068db96daa66e04a48d30990b1140f4d6bb

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c499e73ec14f8888785dbfa3d5ce42c556446747628ca92b0048d738135ea278
MD5 cb23abd3e80534ea886cef5cf296137f
BLAKE2b-256 6c1087d89ca0c91fef48a54dcf4d64c7d02b465f690b43a8f9c1a3a9faf87f43

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd3711257fe9fb41ccbf54062f54193502b24beb5032c762f1681ec372b50c8c
MD5 4b861ca35ce38253d96f36779818ee25
BLAKE2b-256 72a6f167d09b4323a6823060eb4bc9e32705ffc57d59744a539496190a799709

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7fda51e0ff893fb52df6140fd5e7392fc41eb61d7a0666cb80aa7b7b25297915
MD5 9a33baaae8956c8617d353ee1d958cf1
BLAKE2b-256 0882e9f5b67e378fe3f7eb55ceb452517da04c16142ca6249bac1454d6d3744e

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c53bc99cc3dbdd36b2a48d4c6b1ac2738086228f3051d53cfacbd6ffdf690d6c
MD5 22c71e016b5df7bdf48a586128a13e78
BLAKE2b-256 ae0d7ae0519d064796871bf15e3307d97fa8735086a414cb26a634835408cf6b

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6cc5d8df7c6252c151db0966ccebf7de9775e8a57e54aaa3229fa0ca267d5619
MD5 30780cd4c5004bf876596635c10800f5
BLAKE2b-256 f3a0534c2b5f66d8a53314fa4b8fa859e1751b06af52793c1c8b20a9b4f31ffc

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-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.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40a37ebf574e398f853f3218d60510d3977a7b24be7e549a675050868a167685
MD5 893e965eaef2203e43a8c81823b80222
BLAKE2b-256 d73f2d402392f88526efc6496d012330c5c0b535a1ea9b11cc0a1998ad2b1120

See more details on using hashes here.

File details

Details for the file natsrpy-0.0.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: natsrpy-0.0.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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.0.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 13ac633c710765153f9e6774bd910eca9379a94db127cb65a39723ec7903ddc6
MD5 efb3b8fad1611a12382992d61ae703f8
BLAKE2b-256 b7371a5c3970ceeb2450c5a1d2359eafccb254f8944554169ac9e4ab10ce1092

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