Skip to main content

Networking made simply using nng

Project description

This is pynng.

MIT License PyPI Version Build succeeding Wheels building 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.5. 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.7.4.tar.gz (3.8 MB view details)

Uploaded Source

Built Distributions

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

pynng-0.7.4-pp310-pypy310_pp73-win_amd64.whl (379.2 kB view details)

Uploaded PyPyWindows x86-64

pynng-0.7.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.7.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (545.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.7.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (438.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pynng-0.7.4-pp39-pypy39_pp73-win_amd64.whl (379.2 kB view details)

Uploaded PyPyWindows x86-64

pynng-0.7.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.7.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (545.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.7.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (438.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pynng-0.7.4-pp38-pypy38_pp73-win_amd64.whl (379.2 kB view details)

Uploaded PyPyWindows x86-64

pynng-0.7.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.7.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (545.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.7.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (438.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pynng-0.7.4-pp37-pypy37_pp73-win_amd64.whl (379.2 kB view details)

Uploaded PyPyWindows x86-64

pynng-0.7.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pynng-0.7.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (561.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pynng-0.7.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (438.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pynng-0.7.4-cp312-cp312-win_amd64.whl (425.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pynng-0.7.4-cp312-cp312-win32.whl (346.4 kB view details)

Uploaded CPython 3.12Windows x86

pynng-0.7.4-cp312-cp312-musllinux_1_1_x86_64.whl (898.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pynng-0.7.4-cp312-cp312-musllinux_1_1_i686.whl (862.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

pynng-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (891.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pynng-0.7.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (866.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pynng-0.7.4-cp312-cp312-macosx_10_9_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pynng-0.7.4-cp311-cp311-win_amd64.whl (425.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pynng-0.7.4-cp311-cp311-win32.whl (346.5 kB view details)

Uploaded CPython 3.11Windows x86

pynng-0.7.4-cp311-cp311-musllinux_1_1_x86_64.whl (896.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pynng-0.7.4-cp311-cp311-musllinux_1_1_i686.whl (861.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

pynng-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (890.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pynng-0.7.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (866.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pynng-0.7.4-cp311-cp311-macosx_10_9_x86_64.whl (498.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pynng-0.7.4-cp310-cp310-win_amd64.whl (425.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pynng-0.7.4-cp310-cp310-win32.whl (346.5 kB view details)

Uploaded CPython 3.10Windows x86

pynng-0.7.4-cp310-cp310-musllinux_1_1_x86_64.whl (896.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pynng-0.7.4-cp310-cp310-musllinux_1_1_i686.whl (861.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

pynng-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (890.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pynng-0.7.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (866.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pynng-0.7.4-cp310-cp310-macosx_10_9_x86_64.whl (498.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pynng-0.7.4-cp39-cp39-win_amd64.whl (425.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pynng-0.7.4-cp39-cp39-win32.whl (346.5 kB view details)

Uploaded CPython 3.9Windows x86

pynng-0.7.4-cp39-cp39-musllinux_1_1_x86_64.whl (896.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pynng-0.7.4-cp39-cp39-musllinux_1_1_i686.whl (861.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

pynng-0.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (890.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pynng-0.7.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (866.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pynng-0.7.4-cp39-cp39-macosx_10_9_x86_64.whl (498.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pynng-0.7.4-cp38-cp38-win_amd64.whl (425.2 kB view details)

Uploaded CPython 3.8Windows x86-64

pynng-0.7.4-cp38-cp38-win32.whl (346.5 kB view details)

Uploaded CPython 3.8Windows x86

pynng-0.7.4-cp38-cp38-musllinux_1_1_x86_64.whl (896.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pynng-0.7.4-cp38-cp38-musllinux_1_1_i686.whl (861.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

pynng-0.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (890.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pynng-0.7.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (866.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pynng-0.7.4-cp38-cp38-macosx_10_9_x86_64.whl (498.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pynng-0.7.4-cp37-cp37m-win_amd64.whl (425.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

pynng-0.7.4-cp37-cp37m-win32.whl (346.5 kB view details)

Uploaded CPython 3.7mWindows x86

pynng-0.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl (895.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pynng-0.7.4-cp37-cp37m-musllinux_1_1_i686.whl (860.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

pynng-0.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (889.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pynng-0.7.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (865.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

pynng-0.7.4-cp37-cp37m-macosx_10_9_x86_64.whl (498.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pynng-0.7.4.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4.tar.gz
Algorithm Hash digest
SHA256 6e4c8ea80d61d907d005ff29d58a34f7a23b320d4567b869a699f2b6329905e0
MD5 9d4973c9884c502ffeb5a4e91ca6b548
BLAKE2b-256 21d5cd08a1490cb8513021365fd902e7aa9c3271c027a18245594ab66c421915

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2a905e416840d65353325ea41684491f7628dccc73923b7c972b34b45cda090c
MD5 0fdbecb66e57925e5fb8bdbee8e8bb50
BLAKE2b-256 ec77a0704e4e9f72588aba273a657501aee1fc9dea3d937e2c8ae8ca730e561e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dee27382ed4bf9d4efce7fcbf17c5e970d1f6758fc162bfa2c35c77991238e2
MD5 7509ddf74599821c2a337e94b8a8d3b2
BLAKE2b-256 a7c078835d8cb68d5c6ea7467a11ceed7794cf520812f80ac5decd50aaa2f02b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95d6ed48c09bc076e5f5ca4be7439567d20242b360f0f16982c00b41660da332
MD5 e41cccb09a4c6d2d76768b178e5bc3c0
BLAKE2b-256 961f4dd033b5616da512a8a213432671a658d9a3e8672c4c6de28c07aabcba13

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a563f23e24dc3c9f37e25777d7ed2ac23d3316b56801aeec4371422118aec89
MD5 7733030de196091190fcf3cb77ccb971
BLAKE2b-256 1ee2f4dfadcf652512f0d55103c252c47f21e0f356af0754818349d6f875972c

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e1e48b4956ce566eb61b4e10bbe1088d1a938bdbab8caee377d9d232000463a6
MD5 600a988f133e89ec16ed172ef9a12745
BLAKE2b-256 b3f814a725e20e42b78e02b5816c6dcc96772065e99858d7a2a3713f1f3d1bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e05c0c9bd6e0e16f884301d825d5f5bccc7dd3194d656f90be2cb0527fabe42
MD5 e56e5c88ee538ed3fd31f7716ee3002d
BLAKE2b-256 76bcc5aec0409cb69cd919e565808a86f76f56b8d72cf42916ba7427b1598276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 681d4b870cf9f21b4183b18bba27c43bbc759375bf6ff9ff4049c21a1449b67e
MD5 a745d2ec001183ca32f5b27d5a1debc2
BLAKE2b-256 d561cb43e1fb189971c54e4ecc3968eeedbd9c0320ca8cb97ee7c62994ca5131

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5010720bc7f6f1fb07a69f1081fbd5ee4ed641de2b5a038ba8a5f9c55f0c1140
MD5 395d67271997944582d643f31aa4b4c0
BLAKE2b-256 223c311ffd68fd9b62a5a9d9b796bf3efcc4f63bca1e66041fcf2a419cd341c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5e63a43efcb6465714dbf7cff9c48410cca7d6c57bbbff796c57d91954a40158
MD5 73cab859fbd07d05ce116f4b4b53a99e
BLAKE2b-256 eaa7bd2f8a92777869aabfa4cee9e199f4b1435cb898ae9e5524ef54a07ca506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48516310bc5fbec0999cd67ec2d08e049cfc5c1d4b615c50bd72f0f8a6e62ccc
MD5 2f0a0f823f489f6721de299827b1814e
BLAKE2b-256 4f39e33d2513c17bc6595c7bd9db6325c05b1f9641eebaf745623cef84ed490b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8f54056fb0ee23bba710043edabc3bf051924e9af96107e610ea43488ca53f5
MD5 c6032b331cf61970c1bfe39de80509cf
BLAKE2b-256 75fca330f9c9ef3cc98d30d934f544ccc4e77b58a0b73303166e8c477987c6e6

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49c9ec278e00bad77211c92c9bd2ed9cfc52e8b297a03c1a274bcbc370b09044
MD5 3869737db15aef609b9a27a602a755b9
BLAKE2b-256 1ecc71a280bf86c1cbd586a79a05607ea834e09cf0b9bdae79e75e38727d3666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a4718fc0eb549cd7e3b349f7843e29f35062c659fb911a841e711892594f8fa0
MD5 56c3ae8c033e1d33d9b701d3b88c31a3
BLAKE2b-256 0695a356bb86154f5f1062f27cf8acbcf8556624243ed3ce93fc231ec1b4d048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f344c2e12750a67134c1bdf2f73c8ddf01b54ce68cdd395f66d3b141d8dbcf31
MD5 d539b82163336b62dc79ea5901a2b388
BLAKE2b-256 4ac1f0f41ee8aa97b9051d9cdcc997615babb007d06cceb562c2d9ebede35584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bddcf9678a11074eda4c39b10b184c8f5a3a621e70c53c47d69746624727f0d3
MD5 f4c0503ddafc7ff3d3d41e3adf974da5
BLAKE2b-256 859e842256bd077980533cde24c84b9dfca93b06bcab503b7a089b70bcabdf34

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c633f08abb548bf973fed0fdb04cb89609790a329eff53edaf658e316bb6aff3
MD5 8023e5d54d60c76b5dfc7697a4025efb
BLAKE2b-256 9034b270a91efa2f820126fc1925db7fd47d3226e239910120f3ba9212aba1ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 425.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c81e8e747443b3aeb4048628182cf91b686444fd1eecc7e523e9c34a91ba4af
MD5 ad9a20cbffd26d04622611472fad8da6
BLAKE2b-256 f3cab3c48fa5cfcee455de07da8a0052b69769406682100ea152115a8d417221

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 346.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d6940d769aa7685f5914526b858c15098d3455f69e4e6e9a66a73076fb88de7f
MD5 7f4aae964822b0f17334c6a34f4771c4
BLAKE2b-256 07a66cdaae1ad1fb2957448bed1c9a27446ada7368078ddc48a10afeb5bf85fe

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec0154ed73c22646d23d623be646bdd1560223cbaacc7c88c8d06d1bcb65c346
MD5 83d106d4f303e47b5fb9d57edcf168f4
BLAKE2b-256 dadb373f993490216b7d1da3f12782ea5fa62ce4363a4e5b70ed7564d90e9881

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 052b495c74ac8b0f753247dff8d457565365f63ac87b24ead959b35ac4cdc6f8
MD5 51b8dc06464ef5177bf93a53bbabbfea
BLAKE2b-256 d6d1755d579ebc52c8cc488ad79d59854a20d3a8626302e753c554cf4753bfe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 652bec4c178b1c58c4511f30323fae14926fb9a7cb1ed8ddbc957bb2d88468af
MD5 dfb3ce564e9d7c24bfea1c3cd44ee007
BLAKE2b-256 4a80c24d3c62d44516bfe1857e495d948c15471d40d85a1a957c79453a53db68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afec749bc619ab6c9086f97a6f95a9de72f028166d6d43a79ecc2baec1332ea5
MD5 84f5aa4344859af5c6f4d1303eadb279
BLAKE2b-256 4f03975a8bafb4f174db1e49a2110338a41f9ace0141fa36dd6393cf7622adfc

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f3eded5958aa98671832d730a615171cd4a7e4964d98e27cc85aadbe932552c
MD5 11efbfb14483d5ea32b501571ce51890
BLAKE2b-256 184212414cdb873faa4a555197a6ef6267c5fee3e8ef78341390d27bf8c023fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 018f65c18eb17717a7941d61f433d248e93d496e2cb31fa058b5fea8380eeb0e
MD5 b15b106fbbf02e379c5fd27a248babd3
BLAKE2b-256 f722155617b1f131189d7c71a964152cea5bb8473213e6f5d993ae0e683728d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 031dde561a17f81ea657ff325febcf3c5a24fa69b6cc1193ed6b3da80bca61c4
MD5 17142ae5bdb7a940d2c1be4a98823f61
BLAKE2b-256 8f4c2c4a58d80c4eade9d8579f627c1f9c4a3cdecd55a7aafaad3d4263fa166e

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f863fcd39cfb657f2fe140dd2f81913b140d45a5266f870201775e1f53c2d7f6
MD5 09891b55280dc8ae2051808537517970
BLAKE2b-256 0d1523ea10ed959964ea9faa47046476cb082e1a195fd5f91a7aab167268a387

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 52feb47db58ebff2f029a0003aa4b0a45fd1faf30142e773670fd01cda549565
MD5 27cd079336715d243480e53eafcaa45e
BLAKE2b-256 00af63808b07d42ca9a6f7d06724c2fd69886aec8fbb1298f3268b1aa2862562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a34c2d4d2a9d085d0d70c5f066191f0dbc5c3fce434482c7a17f18e8e97ba2a
MD5 01c6fd525b6728113068620072739d3e
BLAKE2b-256 3084339a82c8fcbd078197e487b02b2b72daf28975bbb44325be154c8fc985c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d1131fb7016bc6b2fa306d51fb8a72efac6b21ca7713ef68715b6c374c89a6a
MD5 578fc93a7072f9ba2e47f60ba95e29a5
BLAKE2b-256 6df384d9c3ad1b264dfe112611e46610febad3e6b6368176032d80144201dff5

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ff2726f100946ab39c0f7726d8e4ad325a570d6d10fb2f3e9aed6a7721afd9e
MD5 21863fd13a869b4fbd957bf34a804f7d
BLAKE2b-256 8ea15ba607491bf0f03b5bcc3235fabdbffc7f95a25a0ac09b9abfe6aa77e10c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 173ae85df01296fbdb0e854eb950d80a067e4ac81451518581dcd402ae9024d4
MD5 95c502cb3063be27ecb5af303f7e143c
BLAKE2b-256 fd83de5154c6118f6abe8ad45adc9754546ad253677eb28fb8913bb6b41de1de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c55bbeff82c2b050919e08cb608b7b2d0447a4973d3ebd90a39787ff39fe6e10
MD5 f4e714226ee5b23d4e76e6c54e1533e7
BLAKE2b-256 2ef65cb2cf37f981e82783bf6e99d72e3da4283484d36805cd1e4a282a63215c

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 946947df8ad5351ec892260e53ed14d3b3175bb33727da80a7dae4827897c766
MD5 a6746103dd52b7fb88f0220fcd78e2a8
BLAKE2b-256 a5410de488dc9e79a079b3a0ad7e9cb73c5439c4634983cb85f30a2dd428af39

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5225f2a8f0d94f2773288512bfe741d585874d244d1e47dc39fafc0e5aab91c0
MD5 d2f691ab5cbfcd9240622da5899aed02
BLAKE2b-256 a60630eefd5ade6a68e626a4dc74cfbff5575cb30d771e6687a53df214951d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6e8086184eb35e996da55b16c3af6c5f6203f6a84c5cf37a0cbcc27123d6d5d
MD5 687c3e9fb16886955f3dc193b6670bff
BLAKE2b-256 349fa7844880ee49f12fe61c0d2200c40a09ffac6a7858233abb56412ce7b53d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d067dced61f8a1e4d8b67fee30808b54f03dcdbfaca46c26f5c431448e1c47dd
MD5 8496b3def721e7de87038d5b891c3906
BLAKE2b-256 97ef829eaca37e58634cd30d624ab5b62c85dfc321dd2d12ed5fb8767cfe70ee

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0fdc087da1f66d7e58372a2aa9cc89c0eeada807e03f343362eea988762da1c
MD5 24e3a0f65f85f9f37a96938187decceb
BLAKE2b-256 82fc40ca71a7256446c50a07c0a32ec4964b142d529948f1eebad24287186ae6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9ce6b00cb1930484a0d0bd82c41108b4b3af4b2c8f5cedadb78a57a9e196b67
MD5 8092ba628237b9352382e4e6062a0ee9
BLAKE2b-256 02a64d05ce247217b64fd9758fcdd19d382935ed7e7fcf66025f2056cc573998

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1d98bae4077fe7bc49d6569b350150bd59129251639ede63b3816e2900b7a770
MD5 488254941af067162c7db65fdf9c3b96
BLAKE2b-256 18ace7216c506816040ba07ab8c936fcd1fe496c81c21c740cb26299ff176daa

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pynng-0.7.4-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 896.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 effa394d1d23187904dfdaf7af2eedfa57fd4d825a36a93a91b54498ed02b04f
MD5 773cabb8771d7ed4fa59244f8743ac52
BLAKE2b-256 c5cf4be06da491806c444d91c2d2ad8ba304f4b75c8a09b75ca08c218d0682c2

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pynng-0.7.4-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 861.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1f9c3db68ac4971453599db8693f6ea0384883b7c74b6999e7db22d98f7cb79c
MD5 085b021e3ee7ac0bf2bee129fe4948df
BLAKE2b-256 5ab9058ae43a6267b3b09353c573cd01ff9431a34fbd5b34cbeee7aac79ca2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 860f8f823ec8da91ebd8dbf65ceeb3ce4685ced395ccfd22759525502fbd972a
MD5 bdadc58a5ac7c605a58d50acd52619b4
BLAKE2b-256 14a6453428a2f236b3e48350f21f94884c0119b8a5a534350adbdb2c9071d3ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 407154943b65d481027c028addbedd9a20250b3ad959a8c09172383deba35e42
MD5 a295541b8c484911bfb310ad7ac521c6
BLAKE2b-256 f6e62bf06d43baa38b202f98409c0955ee70482b8fed38211c6f1d58fa83e62f

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63e55ed106d581b2ec3da7c1ef9cd4ca711c413ae58c4aa060e5e1843fce8a3c
MD5 e61bfbbf5bb4751cf067ac4e2cc38234
BLAKE2b-256 394da94e64e62561b5063a3c67ca6789d8fecedc6cdb93dc8804510059f5cce8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5ebe930b53591ecd1eabbc7ad88827608e89a3fe4de12a1671288407bee5dcfa
MD5 5f1a3740002a4e4e5c06311292e6d2b3
BLAKE2b-256 df96e25ec06df073e266dec04dfca80f6015d8f20a4e9d0d3a694e0f52c2b30d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 10003c15225d2a53d400eb2eb32b352df286fb0e258e7f97200f4b96846bf553
MD5 04dccdb76382ef735a4fea3c7666c754
BLAKE2b-256 43836734f5527fff80842199124ca8b1a4a746b5ab9fe1d335ee3bad32bf4987

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pynng-0.7.4-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 896.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c8d3436d94fb33d3528d301861f16eb41ddac608226c530fb6bc8f151e1cea99
MD5 b7a257097ac53a67700e81a578b4cfbe
BLAKE2b-256 0eccb467badeca76823c90305150a2500b9ca3ce62b17a6dc449ad93a706f62c

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pynng-0.7.4-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 861.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4deab97d0867c554355ac5ed856fc8989fa6c30adf5214fa66eee411b861bf50
MD5 963da8f1e693ee90b581926fb17b6cfe
BLAKE2b-256 b6d5f7dc401d5d8c603312dcb0c78cba7db766ad7fff969b985b96f986d90b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4132896fb845b881a3901c0bd93a5112847e73586b45a9990e860d437927b4de
MD5 41bd76c60786f9d74cdbd3f58dac22b4
BLAKE2b-256 da2ddba3a18145a7a971ac55e34d044e8c2a939784372eecce04a3a2ad96fd07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 168b8ebb2037fd915610f1bb7ae2e11db9c924fb3859ccbf8da81d54cde1e86d
MD5 e236714d71363c6122cbc05b23edb4b7
BLAKE2b-256 9bef07df4c3f067c9dcce96407caebc308bec99031e92de6a7031d9956d33b30

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af0d7c62d9937e3ef62b4c7a80759ff46d9b603e839e9b5769cccc55bc84e5a9
MD5 68838766f94d96e5f7dc52c120472eb0
BLAKE2b-256 cc4e57571a3ecb4c2e518c3b9de77d79fb014e683b1cb8b9c4748ef8812ce99f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pynng-0.7.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 051156cc0b772f12800141035f9f4dafdbef7da0d1acb94942f60d631db7c0c2
MD5 402d44bdf341b3ab4807bb9a5a41c9d9
BLAKE2b-256 9d6a1c5057d6f78e1b1cb9f8997f161bdb77d7a77111cf896fa679e5f0027dd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pynng-0.7.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ce8ad05232d6de71d0b3e36a781355aac7a0438b825d185a54b5978bf1ad516d
MD5 7421708e06738c529e2e97a801c8da4a
BLAKE2b-256 59676785ad2c2bbd7a20a44c45a6382ec542a55dea71fac696f4211efa003969

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72501e1c2ef704202537253b7720d47b0974da417c268f69bdbe5d0d83d58e7f
MD5 c994d9e30b82eda02b03b1769c0dd12e
BLAKE2b-256 8a315df54ca0c9d54518f261b58cc2dd74212d1bc2fd16215e15ce1e4bf315c4

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pynng-0.7.4-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 860.2 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pynng-0.7.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0d7add5c3ab19a5d8850dc990ecd6b0dcb7e9cd563c245ca543f7151351e7e57
MD5 1a3315ca08be6d2e7015e00d8834e6ad
BLAKE2b-256 56df8b0442d8b7fb24f01964390d2ba298aafe8e5eb50ee385a7ee02a08f367d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5e1dcfcd48c874837b5321de311633e88d5f366e98cc7eacc13044b69de1988
MD5 9d2bdb4694242025ae74650421a26167
BLAKE2b-256 76b780135e7ce280ad62ad8f4005d77c5ee986fe640d367e98d8f963068e8a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pynng-0.7.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 805afc5a5005dd79fa94ab313a1a520b97202de6c7a5d928f5484d7c9927b5fd
MD5 5fcbf68de743b3b342f129db6e9e8eb6
BLAKE2b-256 519e021b4d24b396895eadfe8581253b2956ea975a634395aff091594df4b1e7

See more details on using hashes here.

File details

Details for the file pynng-0.7.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pynng-0.7.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fb435ced1901d9aa17108025f33cfb7403cf5968210afa1faae004031825495
MD5 ce09ba254f8c7fa4a71bb10758f7d2be
BLAKE2b-256 e22b851a5e5513a9e254f18afcaabe775b49f08f6b8fe3fc7146f160e6484373

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