Skip to main content

Net Python

The PyO3 extension for the Net mesh — a latency-first encrypted mesh where services and agents announce capabilities, discover each other, and invoke work over typed RPC.

Most people want net-mesh-sdk instead. That's the Pythonic wrapper — context managers, generators, typed channels, dataclass and Pydantic support — and it depends on this package. Use net-mesh directly when you want the raw binding, or need one of the few surfaces the wrapper doesn't re-export.

Docs: https://ai2070.net/docs/sdk/python/quickstart · Concepts

Install

pip install net-mesh

Publishes as net-mesh, imports as net.

Quickstart

from net import Net

with Net(num_shards=4) as bus:
    bus.ingest_raw('{"sensor": "lidar", "range_m": 12.5}')
    bus.ingest({"sensor": "radar", "range_m": 45.0})

    # Cursor-paginated. None starts from the earliest buffered event.
    resp = bus.poll(100)
    for event in resp.events:
        print("event", event)
    # resp.next_id -> pass back as `cursor` to page forward

    stats = bus.stats()
    print(stats.events_ingested, "ingested,", stats.events_dropped, "dropped")

Ingest returns once the event is accepted into the local ring buffer — acceptance, not delivery. Under backpressure events can drop; check events_dropped. See Submitted Is Not Completed.

What lives only here

The wrapper re-exports most of this module, with two notable exceptions you must import from net directly:

from net import RedisStreamDedup            # consumer-side dedup helper
from net import RpcTimeoutError, RpcError   # the nRPC error family

See Deduplication and Errors — the latter documents a trap worth knowing: without the nRPC feature compiled in, every Rpc*Error aliases down to Exception.

Cargo features

PyPI wheels ship every feature enabled, so this only matters for source builds via maturin develop, where a disabled feature's classes are simply absent from the module.

maturin develop --features "cortex meshdb meshos"

Claude Code Skill

Net looks like Kafka or NATS from the outside, and the model underneath is different enough that an agent working from surface familiarity will write integration code that runs and is quietly wrong. Install the skills first:

npx skills add ai-2070/net-claude-skill -g

Drop -g to install into the current project only. To update to the latest version:

npx skills update -g

Restart Claude Code and run /skillsnet-event-bus and net-payments should be listed. net-event-bus covers pub/sub, nRPC, the MCP bridge, organization capability auth, the gang-claim scheduler, and RedEX / CortEX / Dataforts. net-payments covers x402 pricing, quotes, settlement and spend policy. Full install options in Claude Skills.

What's in the box

Surface Guide
Event bus — shards, backpressure, Redis / JetStream Event bus
Mesh streams — direct peer-to-peer, windowed Mesh streams
Capabilities — announce and discover Discover and invoke
nRPC — typed request/response and streaming Typed RPC
Channels — hierarchical pub/sub with capability auth Channels
RedEX / CortEX / NetDB — logs, folds, queries Durable logs, Folds, NetDB
MeshDB — federated queries NetDB
Dataforts — blobs, greedy cache, data gravity Blob storage
Compute + Groups — daemons, migration, replica/fork/standby Daemons, Continuity
Deck — the operator surface Deck
Security — identity, delegable tokens, subnets Identity, Security model
Errors — the full exception hierarchy Errors

License

MIT OR Apache-2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

net_mesh-0.35.0.tar.gz (8.0 MB view details)

Uploaded Source

Built Distributions

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

net_mesh-0.35.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

net_mesh-0.35.0-cp315-cp315t-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp315-cp315-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp314-cp314t-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp314-cp314t-manylinux_2_28_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

net_mesh-0.35.0-cp314-cp314-win_arm64.whl (7.0 MB view details)

Uploaded CPython 3.14Windows ARM64

net_mesh-0.35.0-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

net_mesh-0.35.0-cp314-cp314-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp314-cp314-manylinux_2_28_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

net_mesh-0.35.0-cp314-cp314-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

net_mesh-0.35.0-cp314-cp314-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

net_mesh-0.35.0-cp313-cp313-win_arm64.whl (7.0 MB view details)

Uploaded CPython 3.13Windows ARM64

net_mesh-0.35.0-cp313-cp313-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.13Windows x86-64

net_mesh-0.35.0-cp313-cp313-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp313-cp313-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

net_mesh-0.35.0-cp313-cp313-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

net_mesh-0.35.0-cp313-cp313-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

net_mesh-0.35.0-cp312-cp312-win_arm64.whl (7.0 MB view details)

Uploaded CPython 3.12Windows ARM64

net_mesh-0.35.0-cp312-cp312-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.12Windows x86-64

net_mesh-0.35.0-cp312-cp312-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp312-cp312-manylinux_2_28_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

net_mesh-0.35.0-cp312-cp312-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

net_mesh-0.35.0-cp312-cp312-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

net_mesh-0.35.0-cp311-cp311-win_arm64.whl (7.1 MB view details)

Uploaded CPython 3.11Windows ARM64

net_mesh-0.35.0-cp311-cp311-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.11Windows x86-64

net_mesh-0.35.0-cp311-cp311-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp311-cp311-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

net_mesh-0.35.0-cp311-cp311-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

net_mesh-0.35.0-cp311-cp311-macosx_10_12_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

net_mesh-0.35.0-cp310-cp310-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.10Windows x86-64

net_mesh-0.35.0-cp310-cp310-manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

net_mesh-0.35.0-cp310-cp310-manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

Details for the file net_mesh-0.35.0.tar.gz.

File metadata

  • Download URL: net_mesh-0.35.0.tar.gz
  • Upload date:
  • Size: 8.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0.tar.gz
Algorithm Hash digest
SHA256 0678bc5b218b0f10069e9e70edc22fa3bb0299e1834377993dcfad863436d904
MD5 cc24e02856e1a3fa224ce848707c2e45
BLAKE2b-256 b698abaff1d2a9cc4c1f5b92a930ca5d79e6ff202c88a32fb0eaf041ea4892fc

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d3595836fc062a208d254379584db3acdff86e85263bfda8935d83432752865
MD5 916cc215603b86cd2c49f3e51f4e0562
BLAKE2b-256 3390f04601d34c75a88c1862ec1ad39a25216faa8c56c5ee0601a50feb290a13

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf1354fde28c5adbee6d5702c80d84487556dfdfa8d1014597e56c8eecfe1302
MD5 d8b26cbc7b4fbb919070d5d01515752c
BLAKE2b-256 ce95956ac60dd4ebb0fca998d45b1cb6aed96bdf41d563e354cdcfa1c240be84

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ab88896cfaa8b6f5dde7ed94af7210fdc42b15d629dd0024a0e9cfe19142eba
MD5 54164c0b59b376fbaed6bda213cfd3ba
BLAKE2b-256 be03b33583d49fcd4771e195ea6bf0112c8fde9f8ab5f041912c96316320444e

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49b218258635d3db5383b689df1fe0e07a616bc983ec560885c4026efb377671
MD5 f5db5df530ddcfccf3ce69b73341a32e
BLAKE2b-256 a7033d97c3521d93fe070deb4dd4df0c95b5afbdc675f3c720b8b22148b99f2d

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cae8b878fd2cda4cd85588ed1fdfaf6b3a1a60ca95c8468b154903d0521b2b2
MD5 0eb879134c18b11b73d3409867477fc9
BLAKE2b-256 5191c4be64ea6272205c305b66ef58a39731c3838eadbc521b6cb1af136b42f1

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 680c1bfb6d23fec9b9a3f87ee9035317652c5dcd14b630c97093ffea34f24b94
MD5 2c35da10cf66d1716f16a615afdeaf94
BLAKE2b-256 9ada1889699d184b503a71bd494e1ba2f8f45ba7f32939c2fcf5551f671287ec

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a0d374e087d94a8f0ed54deddd86f8f1b66c24d31de663d9de2f857debbf98bf
MD5 e6af827cdf25c3c6b114ed9a206b9d62
BLAKE2b-256 4ed752f483cdd80743c3bc0a7243316ce9650b0b50e30bc80803ddab81cf9850

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6aafca9b7002d52992552db87a7a9067353401253cc13753ccb66fa7d6adb7c2
MD5 736824c99574e7e4548b9ce5864ad32a
BLAKE2b-256 6cb2ae65e0ce5c199c312c4be59b55b2b0aabd52b6e69263c6b777c0c07c22d9

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fe0f90514be5865c0a69a0b4a59e98aa4bb080981893a30be24f0dbe7ff7b6a
MD5 1f356099121290edf7080d2a0d46d257
BLAKE2b-256 1b1c0ed94e163a1a8a991e55105b164c89e56cebaa642f70134c083116f1f84c

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 adb2ea4d4c8706b3ea9ac4f233584352c6260360b9d6cd7412f4aa6c93dbba86
MD5 8183b3723cb3a88de8606a2993fcbd7b
BLAKE2b-256 0965af1d1296bc3f2692555713cbf4e0710c3783f81d43accdac55a1e50e56cf

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b00cf3c12e7410f37d09dd3e88a96026f1b264b399b9c0ac12ae47a0d9ea0314
MD5 ad4d105ac42e6805154248398600f0fe
BLAKE2b-256 a6c15d815e662b11d361a20beecffb7b507cd523e255c6a84759b19e84af47f6

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7912189b09bb5c87e27f4fca3f310276e22658fe4174c98fc246fe173070a1e
MD5 925dc48659f7816141548877e96e6d10
BLAKE2b-256 74beec2237c5f09be756e53ea30645c15540774e4933e307319606802a001742

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a42c7f0d4586a9a59069cd51958cf82fae952699022d396ebe046a9ad7984014
MD5 59859ef02b3cf7d8dd47584235590871
BLAKE2b-256 b727c1158e37d52985223a6ef804cb6c3dfa0e9e4243b6e1d6b919d918fb7416

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a0737c2f5a89e24b44077198dd823d0a1c9c4c266993b82b14752cefb85c178
MD5 609ef030df79175161900865dc8b2b83
BLAKE2b-256 278083126a415f4bbabd257ac08d2875ba4d94a1541dc9e414dd260b191018f4

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3a05ae67d1aa35e282d20aa213803ecb0febaec342a3987684ea8f01d7fab54
MD5 719d0c1b874b4e968ba013aa48cda8a6
BLAKE2b-256 28864e24ef2010923f4b46050c73a5dd2a630c29c8e9c3e6f2cd3fcbdaf94501

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 641436f0e4c62c40ae92408c33ed4c651dd2e79ad40be4eaf06fbf1474196dc9
MD5 b13fb3dfe563d5c59bc43d6aa5fa15af
BLAKE2b-256 dddcfc5149a530f2aafea885c62b45d047520210cf0792894db356f4f56bca56

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35bfa9a69579175e955234fe8402945ac78693eac853ad2149b2c209bfa74943
MD5 ad3994a5608dd2cfd5345ff77744f837
BLAKE2b-256 4fc2a29474dfcd1f34201bd56767821c5f0a5e4c065ee2ffdf6eadef07c2035e

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3e41beb741b81be98382acb0697120b10a1ded69185cc2a988aada4be2a45cc
MD5 9629c427a9d4dc20482032afb112693f
BLAKE2b-256 7fd0f456f84057d39aae9ac5c16ed78d9d7ebf13647e13334d5aed062cecfe78

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4f2cc5ae6e662e86f73c51dd7c2a1c221f3f4523df354eb963c756fcf0a91fbf
MD5 d940e826c04462932a3429fa1d50c406
BLAKE2b-256 9a9962215959ebcb0c85f2dbe349076e78d3fd710466de7e3345035017c3758e

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7df31b7495ee35b41529ac2b9176c9069fd97c545669808edf6fe593063d2f6d
MD5 1339e7e3410cb42f24403817b2e8f8b4
BLAKE2b-256 09f0b033d2e2fe5a062e9fd0cd2ed1854ea64f4cb47139c4896afddf0f8599be

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a0ddf9a8c4b83e66f8ae0c89a90fa29c13ceb8643dba586fa3cbe526aedd5f8
MD5 1f877ffd04ee2d6d6d03b699412941db
BLAKE2b-256 1d9964c7dcee9940769e2c1eac8a5593a6c8fb9939f4de3cc4020666831de4ea

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27a3375035a861d4a779666d823e3bc239b065d45d413a0184dc289b319c8855
MD5 c93d0f016f21202f0f63ebcd6514b579
BLAKE2b-256 d3eb0532bf8d2656392e8a13bf287c3660f19c9f91ebbf4e3d219432360409de

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 306ce4e30c3430127139e8465811485a099568b076e06b6bc260e8f9930a5c9c
MD5 e5e8830e41fe4df906b850cafa0b5d00
BLAKE2b-256 a0b5a4779697f9aef890632aa565b8a6316840d031eb3ff5ea6093d9790579a5

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a7876200a46f7b8ab4c2bd079c6f24bc22e3a9bdfaea1c1044d88c9ecfca176
MD5 b29a31f53f7eb4b7cbc81baabd81f9a8
BLAKE2b-256 fb67173184e86245397128790da60840c2cb099b370d09b7b1ad524eaefe6a9f

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f9e601aae84559b4ab19a610726013d3982f8e80485d74a5e3b5a17e13ac6c3a
MD5 907ebc2abdbc673759971a80cbd793ec
BLAKE2b-256 a9416df3cca44a615af9119a820cc0d971b24b90c3437597b1c698f085835f37

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a7d5355b928ed73b07c51483cf3ea44cc4a57aa31008138d44acb74e2dfd120
MD5 e4b122d73163db6888f00476237008e0
BLAKE2b-256 37b923de859afd5e8fa2ce6300f977e97d8cc9233ffb8b7bd2acc183adff69c5

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 227b627b339e50e45ec8e8e71736b616c994fd104d244771b24ce83238bbb5a9
MD5 6e0a90cc34749f018eda5e4c2065cbf7
BLAKE2b-256 dd73d4ae80bc0678dd3b6ee3182d6414f47d5d55b5c967cee69753850d2eb6d2

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85ec553b61ed10d3b5659952386e051a4b56b73c7f1baf722bf9c4a5194b72f0
MD5 5d8d827f9f670228947647e16ab317a6
BLAKE2b-256 3de8763312c4b22c8b72d9946786301f5d117084dbffc2312dcaa0b9458a1753

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c23dabd82c4cec8fb6b252fe54260a1486c6269fdefe74639d00d8ebc5b07e49
MD5 9dc35e049474ee1043246324e3c02b0b
BLAKE2b-256 fdc75b3bcf93b40cd2dbceb7444e04d576b69233a60eed3465d5b2eb8e6f8549

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 750098b43c657a7039c6135672ff9c33a070189f30ef6f4eee13d510a56b32e4
MD5 4b11bca67523b304548a9540bfa32cb1
BLAKE2b-256 fbf6a4345c5d932f0f174715460f779920166d0798e8ecc2fa47796be14e82d5

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: net_mesh-0.35.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for net_mesh-0.35.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e339ff72aa5fdca3d46bcab776b8c9dfe6ae394efce168edc08156ea0385b2ba
MD5 57a585e5a5e10892e7af4521f311a625
BLAKE2b-256 65495d71914435b9f14bef363efae40f2626892fb28bc475eca28aac3ff830d4

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8eb7556fb2f43881154a295c64e85df61036a39be7c7a8b11cd58c66e432bc35
MD5 20ba2f1b17f80e75a9428ddff632f410
BLAKE2b-256 86182c61e6e9000f60745fe227725efa545b95733acabcd2062283d9754561f5

See more details on using hashes here.

File details

Details for the file net_mesh-0.35.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for net_mesh-0.35.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e2bf59da10efb40f22e5e62824ee00cd7ad49698f7cb7955589b4cdbb5575bf
MD5 80cdd8ba13be8f4b94a6a1538ab25608
BLAKE2b-256 05ecb4234c5b0009fdb752333f2101c9cd48b54c89c9109f886161d14c0fa3a7

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 Sentry Error logging StatusPage Status page