Skip to main content

Networking made simply using nng

Project description

This is pynng.

MIT License PyPI Version smoketest Build docs

Ergonomic bindings for nanomsg next generation (nng), in Python. pynng provides a nice interface on top of the full power of nng. nng, and therefore pynng, make it easy to communicate between processes on a single computer or computers across a network. This library is compatible with Python ≥ 3.6. nng is the rewriting of Nanomsg, which is the spiritual successor to ZeroMQ.

Goals

Provide a Pythonic, works-out-of-the box library on Windows and Unix-y platforms. Like nng itself, the license is MIT, so it can be used without restriction.

Installation

On Windows, MacOS, and Linux, the usual

pip3 install pynng

should suffice. Note that on 32-bit Linux and on macOS no binary distributions are available, so CMake is also required.

Building from the GitHub repo works as well, natch:

git clone https://github.com/codypiersall/pynng
cd pynng
pip3 install -e .

(If you want to run tests, you also need to pip3 install trio curio pytest pytest-asyncio pytest-trio pytest-curio, then just run pytest test.)

pynng might work on the BSDs as well. Who knows!

Using pynng

Using pynng is easy peasy:

from pynng import Pair0

s1 = Pair0()
s1.listen('tcp://127.0.0.1:54321')
s2 = Pair0()
s2.dial('tcp://127.0.0.1:54321')
s1.send(b'Well hello there')
print(s2.recv())
s1.close()
s2.close()

Since pynng sockets support setting most parameters in the socket's __init__ method and is a context manager, the above code can be written much shorter:

from pynng import Pair0

with Pair0(listen='tcp://127.0.0.1:54321') as s1, \
        Pair0(dial='tcp://127.0.0.1:54321') as s2:
    s1.send(b'Well hello there')
    print(s2.recv())

Using pynng with an async framework

Asynchronous sending also works with

curio, trio and asyncio. Here is an example using trio:

import pynng
import trio

async def send_and_recv(sender, receiver, message):
    await sender.asend(message)
    return await receiver.arecv()

with pynng.Pair0(listen='tcp://127.0.0.1:54321') as s1, \
        pynng.Pair0(dial='tcp://127.0.0.1:54321') as s2:
    received = trio.run(send_and_recv, s1, s2, b'hello there old pal!')
    assert received == b'hello there old pal!'

Many other protocols are available as well:

  • Pair0: one-to-one, bidirectional communication.
  • Pair1: one-to-one, bidirectional communication, but also supporting polyamorous sockets
  • Pub0, Sub0: publish/subscribe sockets.
  • Surveyor0, Respondent0: Broadcast a survey to respondents, e.g. to find out what services are available.
  • Req0, Rep0: request/response pattern.
  • Push0, Pull0: Aggregate messages from multiple sources and load balance among many destinations.

Examples

Some examples (okay, just two examples) are available in the examples directory.

Git Branch Policy

The only stable branch is master. There will never be a git push -f on master. On the other hand, all other branches are not considered stable; they may be deleted, rebased, force-pushed, and any other manner of funky business.

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

pynng-0.8.1.tar.gz (6.4 MB view details)

Uploaded Source

Built Distributions

pynng-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.8.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (665.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.8.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (665.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.8.1-pp38-pypy38_pp73-win_amd64.whl (412.0 kB view details)

Uploaded PyPyWindows x86-64

pynng-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.8.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (664.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.8.1-pp37-pypy37_pp73-win_amd64.whl (412.0 kB view details)

Uploaded PyPyWindows x86-64

pynng-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (643.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.8.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (682.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.8.1-cp313-cp313-win_amd64.whl (450.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pynng-0.8.1-cp313-cp313-win32.whl (370.6 kB view details)

Uploaded CPython 3.13Windows x86

pynng-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl (941.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pynng-0.8.1-cp313-cp313-musllinux_1_2_i686.whl (736.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pynng-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pynng-0.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (727.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pynng-0.8.1-cp313-cp313-macosx_10_13_universal2.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pynng-0.8.1-cp312-cp312-win_amd64.whl (450.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pynng-0.8.1-cp312-cp312-win32.whl (370.6 kB view details)

Uploaded CPython 3.12Windows x86

pynng-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl (941.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pynng-0.8.1-cp312-cp312-musllinux_1_2_i686.whl (736.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pynng-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pynng-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (727.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pynng-0.8.1-cp312-cp312-macosx_10_13_universal2.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pynng-0.8.1-cp311-cp311-win_amd64.whl (450.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pynng-0.8.1-cp311-cp311-win32.whl (370.6 kB view details)

Uploaded CPython 3.11Windows x86

pynng-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl (939.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pynng-0.8.1-cp311-cp311-musllinux_1_2_i686.whl (736.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pynng-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (936.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pynng-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (727.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pynng-0.8.1-cp311-cp311-macosx_10_9_universal2.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pynng-0.8.1-cp310-cp310-win_amd64.whl (450.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pynng-0.8.1-cp310-cp310-win32.whl (370.6 kB view details)

Uploaded CPython 3.10Windows x86

pynng-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl (939.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pynng-0.8.1-cp310-cp310-musllinux_1_2_i686.whl (736.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pynng-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (936.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pynng-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (727.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pynng-0.8.1-cp310-cp310-macosx_10_9_universal2.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

pynng-0.8.1-cp39-cp39-win_amd64.whl (450.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pynng-0.8.1-cp39-cp39-win32.whl (370.6 kB view details)

Uploaded CPython 3.9Windows x86

pynng-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl (939.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pynng-0.8.1-cp39-cp39-musllinux_1_2_i686.whl (736.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pynng-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (936.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pynng-0.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (727.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pynng-0.8.1-cp39-cp39-macosx_10_9_universal2.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

pynng-0.8.1-cp38-cp38-win_amd64.whl (450.2 kB view details)

Uploaded CPython 3.8Windows x86-64

pynng-0.8.1-cp38-cp38-win32.whl (370.6 kB view details)

Uploaded CPython 3.8Windows x86

pynng-0.8.1-cp38-cp38-musllinux_1_2_x86_64.whl (940.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pynng-0.8.1-cp38-cp38-musllinux_1_2_i686.whl (946.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pynng-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (936.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pynng-0.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (936.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pynng-0.8.1-cp38-cp38-macosx_10_9_universal2.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

pynng-0.8.1-cp37-cp37m-win_amd64.whl (450.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

pynng-0.8.1-cp37-cp37m-win32.whl (370.6 kB view details)

Uploaded CPython 3.7mWindows x86

pynng-0.8.1-cp37-cp37m-musllinux_1_2_x86_64.whl (938.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

pynng-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl (945.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

pynng-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (935.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pynng-0.8.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (935.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

File details

Details for the file pynng-0.8.1.tar.gz.

File metadata

  • Download URL: pynng-0.8.1.tar.gz
  • Upload date:
  • Size: 6.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1.tar.gz
Algorithm Hash digest
SHA256 60165f34bdf501885e0acceaeed79bc35a57f3ca3c913cb38c14919b9bd3656f
MD5 b92d229b2399e4b83500e4288a6c1cb1
BLAKE2b-256 d48c23141a4b94fdb69c72fe54734a5da192ecbaf5c4965ba6d3a753e6a8ac34

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efa0d9f31feca858cc923f257d304d57674bc7795466347829b075f169b622ff
MD5 bb743ed494f3b54612ed47a1ce392a5c
BLAKE2b-256 0d781546f8fc8ede004d752b419f5cf7b2110b45f9ecb71048c8247d25cf82a4

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12463f0641b383847ccc85b4b728bce6952f18cba6e7027c32fe6bc643aa3808
MD5 63da4b7f73f731072bdef79d27ef07c1
BLAKE2b-256 c519e7b318de628f63d84c02a8b372177030894e92947b9b64f5e496fda844fe

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1070aca5457a2ac9097ae6d7fc866fe12b1b43d34efdc72e1e5d4e188d926023
MD5 ad4e492af684f52c232044c34f5bfafe
BLAKE2b-256 a59560f6175cc2b3e0b4f6a9c4f5f5b2f6efecfda15a8860c3e6ddac9e48b298

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 520a22eb20df16f1f551caa975656ab72c4a95a0d7fe356eb3a317b05f287729
MD5 fa0cbf3bdd471c42669075af37cacded
BLAKE2b-256 4f4a8df2b38b3896a1b71736d281aa06c8430359d7f9c4ac0871df031da9eb34

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 03644a593bac61ae15c5c0200e775972d552a15a959595228b55b9c5dd51a80e
MD5 9ad2a16a2f0137612d102bd6fc2c354d
BLAKE2b-256 f1dbb5a582a8d5527cf8118da8111cbdca8e8bc7afce9b0286b5234680147004

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e17459a5fb1bc89f52d88624a03b5208f396f9de88aa96931bc4b7705e3a5b6
MD5 7e1d6af17648df96e976a71c9972de14
BLAKE2b-256 8dc3452e1e8329f91246ff99ebb9ff06361af0431831f96873ebc12a075d572c

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cf7f84f2b1c969fe5c1ba7b4bc00453b546f8799de37cf9e9b402ee46dc86ed
MD5 10ce078e8c68c87bdefb114e7468468a
BLAKE2b-256 9f766970fc320d38eed598a2214ee9bcf6446b793bcd2ee05e540ddf43f0d319

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3c189db41a325cd0c5f1e18f0240a107b30f3460c39490632e12969e018be2a2
MD5 e730629de3df5ccd9e5cd99be939373a
BLAKE2b-256 fa7e0aba85b7d8d1db59633422141eac05183f6cec131e85c174dcc0aec37a4f

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 751cadea89ba3bbe432a1ef4cd4a890bc0eaae74d0d6daec523618bc0c885228
MD5 0927a01c13601f15046202e7792fceb5
BLAKE2b-256 debea027ebbb008d3581524c20198c409a03405e698fcf782e71dfb6397f17ec

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 949c937399519da0bae74e1be1ed6cd455c0a11a6cb4efc36379a43a7ec26657
MD5 f92f6527eaefd09877cebe52b8cdb526
BLAKE2b-256 01ca0854728187af5a99fe94c3343f16b8f92d156ea3fb1515421d04544920f4

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pynng-0.8.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 450.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f9c52bca0d063843178d6f43a302e0e2d6fbe20272de5b3c37f4873c3d55a42
MD5 5fa48d999aaa032e44b22d10ea6cad86
BLAKE2b-256 ff0e11d76f7aeb733e966024eb6b6adf73280d2c600f8fa8bdb6ea34d33e9a19

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pynng-0.8.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6d5c51249ca221f0c4e27b13269a230b19fc5e10a60cbfa7a8109995b22e861e
MD5 93484654b4c1fe42ba89cdf09f39d857
BLAKE2b-256 26f39a7676e3d115834a5acf674590bb32e61f9caa5b8f0971628fc562670d35

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f635d6361f9ad81d16ba794a5a9b3aa47ed92a7709b88396523676cb6bddb1f
MD5 584fe36a7b4e18dd7da331b35094c32b
BLAKE2b-256 b6db9bf6a8158187aa344c306c6037ff20d134132d83596dcbb8537faaad610d

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88cbda575215e854a241ae837aac613e88d197b0489ef61f4a42f2e9dd793f01
MD5 cb2f146b6324d27141bc88e4b543c30c
BLAKE2b-256 0491580382d32fe90dd3cc0310358d449991070091b78a8f97df3f8e4b3d5fee

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2f0a7fdd96c99eaf1a1fce755a6eb39e0ca1cf46cf81c01abe593adabc53b45
MD5 ceb5be9c3ced19ce73f36927f6f1673c
BLAKE2b-256 723d2d77349fa87671d31c5c57ea44365311338b0a8d984e8b095add62f18fda

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a89b5d3f9801913a22c85cf320efdffc1a2eda925939a0e1a6edc0e194eab27
MD5 d4fda59e093e1f1c33c6780fba533b76
BLAKE2b-256 4471134faf3a6689898167c0b8a55b8a55069521bc79ae6eed1657b075545481

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e1013dc1773e8a4cee633a8516977d59c17711b56b0df9d6c174d8ac722b19d9
MD5 fd8a36f703bcba5a8ff0156976f1956e
BLAKE2b-256 0dfdb6b43259bf87c7640824310c930761ea814eb4b726f2814ef847ad80d96d

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pynng-0.8.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 450.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 117552188abe448a467feedcc68f03f2d386e596c0e44a0849c05fca72d40d3f
MD5 b665a7b6c1b6a2005dd6ecb102cceca5
BLAKE2b-256 4b19bd014dfc7cdaacdba15c61a591dc12e7d5307006013f8ceb949bed6d3c48

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pynng-0.8.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 78fe08a000b6c7200c1ad0d6a26491c1ba5c9493975e218af0963b9ca03e5a7a
MD5 f895e0fd83478b716e3d89f70618e6ab
BLAKE2b-256 9e67e1027872acbdd755994d9cdf3195a6329ce2a141943fbae0e9687c533a59

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d8237ed1c49823695ea3e6ef2e521370426b67f2010850e1b6c66c52aa1f067
MD5 1842bd986e47638fc30f63c0c982eb3b
BLAKE2b-256 9beb347e5626e3174992b4b4cf8ff3f7fe965a2e7c7703bf2765db828970f895

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ead5f360a956bc7ccbe3b20701346cecf7d1098b8ad77b6979fd7c055b9226f1
MD5 f7bd0986f12f06c206074a435c829598
BLAKE2b-256 412e2196c9c3d8ad1af35faf942482fbfc1156898b0945e8412a33d3cfcbfbe8

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 915f4f8c39684dcf6028548110f647c44a517163db5f89ceeb0c17b9c3a37205
MD5 2e781d41a3f13b1b701a082d9018fdcd
BLAKE2b-256 9442cf84ac7b60713af568ffaa8774eb41650e49ba3c0906107f9a889cf86d40

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2fb8d43c23e9668fb3db3992b98b7364c2991027a79d6e66af850d70820a631c
MD5 71a5337a5b6282e11ffd7406f38af8f5
BLAKE2b-256 cb9ed7c10e38ddaa7a2e3f59cd3a5d2b3978f28d7e3f5ae1167c9555e35f1c48

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 df13ffa5a4953b85ed43c252f5e6a00b7791faa22b9d3040e0546d878fc921a4
MD5 5c081b2c94b63e9f625a4c97a9ad639e
BLAKE2b-256 7ab7243a4e919b2e58cb21ba3e39b9d139e6a58158e944a03b78304b0d2b2881

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pynng-0.8.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b4e271538ed0dd029f2166b633084691eca10fe0d7f2b579db8e1a72f8b8011e
MD5 cbb2b9e6072f1ef34211df7ead7c71e0
BLAKE2b-256 8ee363ab15b96be4e61be4d563b78eb716be433afb68871b82cdc7ab0a579037

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pynng-0.8.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1200af4d2f19c6d26e8742fff7fcede389b5ea1b54b8da48699d2d5562c6b185
MD5 6037db65586188bf5de4a9639d3826df
BLAKE2b-256 19fb86a9530f2ca1f1154f10b83607ca72b42716f9a2d4fbb46f039ff0b3c38d

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4656e541c0dd11cd9c69603de0c13edf21e41ff8e8b463168ca7bd96724c19c2
MD5 0367471d13b57748ba85a9dcad3b0301
BLAKE2b-256 4eb4661543256fc81ab024960d8dd58f01f2b80f65f6374fd5a46ef1ccccf4c8

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d40eaddeaf3f6c3bae6c85aaa2274f3828b7303c9b0eaa5ae263ff9f96aec52
MD5 2512ac178f2540f2ba276cac20584a5a
BLAKE2b-256 5e21c03e8c37c87ce781a61577233ba1f1b5c8da89f6638fe78e3f63a3fac067

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3ee6a617f6179cddff25dd36df9b7c0d6b37050b08b5c990441589b58a75b14
MD5 06366555dabd6b2a9b302ccc45ba276a
BLAKE2b-256 b5036edd6cea97aa838f2ebfa81178800e5b3cd1f0e979efe01ed50f21ab8f76

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ec0b1164fc31c5a497c4c53438f8e7b181d1ee68b834c22f92770172a933346
MD5 8311c62b119d285728541274c93c151c
BLAKE2b-256 b4346c15e10660be6cc1229948773f1c3868ace7f68f8e728e91234722fe3246

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 69b9231083c292989f60f0e6c645400ce08864d5bc0e87c61abffd0a1e5764a5
MD5 76c30c5d96797a31228582dd78aa51c6
BLAKE2b-256 c4526e4f578abfddde63d6bfe4915ca94ecdfd24215a30eefcd22190d2ee0474

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pynng-0.8.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6da8cbfac9f0d295466a307ad9065e39895651ad73f5d54fb0622a324d1199fd
MD5 00c6c6ae146b576c8f73a01579533f2d
BLAKE2b-256 5e730d23eb6ad97f1c1b3daf36fa40631680f2df10ef74b4e49d1ac04178775c

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pynng-0.8.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 549c4d1e917865588a902acdb63b88567d8aeddea462c18ad4c0e9e747d4cabf
MD5 569837f742b7598cca5f6d8ad0a9b212
BLAKE2b-256 d480e0118e0f76f5ed9a90602919a2d38f8426b9a3eb7d3a4138db1be6baacfe

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95373d01dc97a74476e612bcdc5abfad6e7aff49f41767da68c2483d90282f21
MD5 1602212e45ba2f1b4c6cfdeff224b284
BLAKE2b-256 d03b9938dd108a0497a60df65079c6599b65d96bcf130cf637b9c3eb3fbce1db

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba00bd1a062a1547581d7691b97a31d0a8ac128b9fa082e30253536ffe80e9a3
MD5 544cbe5e982d854c68336ff785e13a58
BLAKE2b-256 2896025d8131c5caac3744c7fef058389285782e4422406b50b9d942a0af5d3c

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6046ddd1cfeaddc152574819c577e1605c76205e7f73cde2241ec148e80acb4d
MD5 58db82b0bacc5495701038e47f48ea14
BLAKE2b-256 e1be01d862eaea30a66225243496419516385662dc031a116ea47420a884204f

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef2712df67aa8e9dbf26ed7c23a9420a35e02d8cb9b9478b953cf5244148468d
MD5 d70b64ace9379458989ae486836704a3
BLAKE2b-256 92be3661bf68ac16ed6b63b30b9348d6f9e5375890ce96f6c893bbf54d071728

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7d458d4791b015041c9e1322542a5bcb77fa941ea9d7b6df657f512fbf0fa1a9
MD5 cff74a864efb4d74d3c5dc953ed0de9b
BLAKE2b-256 5db287323f8266006656ccfe6ec80c02be3c344edd24c1aa1083175a8edec345

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pynng-0.8.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0822e7f70d62f2d9768627413260fb809303a1c94bd7abab0f923a92facdea25
MD5 df531f311c71e6275ab3fdf94da5df36
BLAKE2b-256 d2b119d68fa42c20b83318a005518e946fe92928e5a6ec80a6801f062fe8a17e

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pynng-0.8.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 49ef09f5d9a1a9c5ea868a7442a580db57a935d8c37bf478d90fe54e91809a7a
MD5 a6300b4227668fef529347fbfa9f8ded
BLAKE2b-256 3a9e59a4291a0121fb3c62baed82b825a03c24cedcfafe1cb5175f598d3e9711

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0c7d4e74a21d68b66139971d9762c47547d911da8865d2e4597167f6c5dd967
MD5 165d65ccf72febb4aa36ab21e3661d1d
BLAKE2b-256 37c1085bee268bbc8489c8adbeee60527d6dd9d624ad4f1f2a7fd8026d718a40

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pynng-0.8.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 736.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 419a7d5d38537de0177f3c86f16fc98689173f2d790bac97eeb4c97fc5cced33
MD5 6d841ee365206342c58939b41e9b4aff
BLAKE2b-256 a909a4f51df82d8c95ffe43860e520a2936363dd097260eb69f014fc87f1552c

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7d05d8a0c0956bd271f0f9b4d54a58db2f7b6f7d281bf0552ddc62c1a241111
MD5 22880556777f99a19f536eeda0de779a
BLAKE2b-256 e95cb2a4112ce8cc49e685b7f612949d2e8ef9e21df20e405bd0d21775437716

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7aeda6216303e16d8feee28f205a781507ad3014cb27ed7294ac4f5749ea91fb
MD5 e64f0a910cee3ad489d432a85b9cf69c
BLAKE2b-256 7e55ef93fa4c5f75ce157650a204aba2d23a26886e837bbbb807298d39fbe759

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pynng-0.8.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e9d897c77087fd2a1a8adfa77f340e213f6676833f42d1db8d0c4e7bcbd7c234
MD5 a3ded8cc92e61d77ffec5ce117361352
BLAKE2b-256 ba353dc2fedd5ad203c771dbe0e487d95c35d238589e26cbf8ff79e8333bd8b5

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pynng-0.8.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c6f94552adcf6b2d9da87c24cffe3a551144294478bddc4be1031f7144911bea
MD5 66cc9d423738a620614675a67fe075a5
BLAKE2b-256 3545a08947b600368ca82ff3feceb2a220146264538179e2137908d1402786a2

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pynng-0.8.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 88a7e41d305197db75fe0e5b89cc304bd1c0aaa0598480a67932c2d5c2a19e14
MD5 a30e3aa1717c9a0ac0bc0cdbc5050e50
BLAKE2b-256 7b6fe4eded32166e3e5ee74dbd657930a9569b9e2d6d3aaeb6d182ff1bcc8207

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 533d13e63a347f1246e64263d7717993c6c12384d575392df66dd0889de0408a
MD5 5f71195ec800843f089ecdd6c6a292a9
BLAKE2b-256 07295d5b4548211d5b2bfd7d9cbcef1557ed25b5cecc33cdfb9b555c541cabe2

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pynng-0.8.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 946.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b97ce30e7d272dd17cf6849f24352390a4b5e4ca8eaa143e00109e7cdd59b297
MD5 62bdce357e7b4e5ab5835dee80803d26
BLAKE2b-256 cd6cd28ec46876eb8eb6ddba48eddd42e01d14d695691d50a6a8f06580983a34

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c04b6f5b49962c4b03be4a5937d22dfef0e431d9f1c052dff92f9c51ddc299a
MD5 50b5b916948dffdc303f5cb40dd4852d
BLAKE2b-256 6492d58525d5303d9beb8733ebec6178bea1c034128ce12c6d731a994c2ad8d5

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d8739596df44c81663c25c29020a4b9e301e43ab600720b9e3a2ebc9f8752c5
MD5 2392171407f2c11ccbc9b190f7e417c5
BLAKE2b-256 6a111de864fa808f37febfa9181236e8033fec4b37e88412a99eae33c6b05225

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pynng-0.8.1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c9a0aa7ec876cf29489e2cc47b337e3963f5fd9aba479e310dc8dbb6bfa2ce89
MD5 6680c2c4c14831ee4172244dff9df6bd
BLAKE2b-256 4946cf7d69900d27f987be4c330ff15b4b881d0b5feab4007817f734faf5ccda

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pynng-0.8.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9afdf5dfdf169a7b26a049477ca5dc8677daf2b21fd44b93026d6e9640178f84
MD5 1ed77ff01dae32cb0cccff45121433f9
BLAKE2b-256 1826bf6893d1eff0425385a5224ec4eeb08a75277cb148472d26f93492d09b2f

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pynng-0.8.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e2dfdd3b1625aa40579800355bbba695299d2fbbe28872cb5a59cb0104a223d0
MD5 c5c9f46cc79bd33a11d63a574e59c44b
BLAKE2b-256 03fd9ceac27deffd844920a37c3dcb446ce1cb2a399e518ef8460f3c241c0b38

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9860139bb29b8b8c7268df3822346bb4ea2d8b5a81a47b4568be8bab99b27821
MD5 d198fa21046825257a855e02d8d4092f
BLAKE2b-256 cf092ecfa8a0a4424a211adb1af67f3bdf0a1e63f1aeb7d48be4abbe4738c7b9

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pynng-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 945.8 kB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for pynng-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb3467b0855e6e80079808a84becd5114c0369d7461d2df96d97e5dfb350a235
MD5 9a1d2eac91c5581e4c0537b009df90bd
BLAKE2b-256 3d4d1291bde4965d1b82547747a45b70a4b070867c224d0f75c6f6f22485dc7a

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ba7f8b9f8de5d3249397acbc3d85448bf132811accd6e8a742f38ff05928915
MD5 5787713d7e3bc73ca93f194a7e711ccd
BLAKE2b-256 d4a455f4022b76fe2830e8f456dba2a4e831d8dc4a8c9d86c4121a1ca153a178

See more details on using hashes here.

File details

Details for the file pynng-0.8.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pynng-0.8.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d98a0310af1d5ae3bd823bf089d23cb86a8e73f247ad4205b3dba039d4817d7
MD5 0cd887e11875fb8b514f3f33ae86bafe
BLAKE2b-256 ef523bd1be9a98cfa2127f5cfa3f8cc5dffe39c2f8ee0a34400034ce8d431772

See more details on using hashes here.

Supported by

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