Skip to main content

A package for parsing NNEF files

Project description

NNEF Parser Project

This package contains a sample NNEF parser, using a C++ backend.

Using the module

In the python interpreter, type

import nnef
graph = nnef.load_graph('example.nnef')

If the path (example.nnef) points to a folder (with a graph.nnef in it), the whole model with weights is loaded. If it points to a file, it is interpreted as the graph description only, and it is loaded without weights.

Alternatively, the methods

graph = nnef.parse_file("graph.nnef", quantization = "graph.quant")

and

graph = nnef.parse_string("version 1.0; graph ...", quantization = "...")

can be used to parse a graph and optional quantization info from files or strings.

After invocation, graph is a data structure (named tuple) containing the name, tensors, operations, inputs and outputs of the graph. If shape information is also required, it can be obtained by calling nnef.infer_shapes(graph), which updates the shape information on the graph structure in place.

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

nnef-1.0.10.tar.gz (81.3 kB view details)

Uploaded Source

Built Distributions

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

nnef-1.0.10-cp314-cp314-win_amd64.whl (369.9 kB view details)

Uploaded CPython 3.14Windows x86-64

nnef-1.0.10-cp314-cp314-win32.whl (317.5 kB view details)

Uploaded CPython 3.14Windows x86

nnef-1.0.10-cp314-cp314-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nnef-1.0.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nnef-1.0.10-cp314-cp314-macosx_11_0_arm64.whl (443.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nnef-1.0.10-cp313-cp313-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.13Windows x86-64

nnef-1.0.10-cp313-cp313-win32.whl (312.6 kB view details)

Uploaded CPython 3.13Windows x86

nnef-1.0.10-cp313-cp313-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nnef-1.0.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nnef-1.0.10-cp313-cp313-macosx_11_0_arm64.whl (443.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nnef-1.0.10-cp312-cp312-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.12Windows x86-64

nnef-1.0.10-cp312-cp312-win32.whl (312.6 kB view details)

Uploaded CPython 3.12Windows x86

nnef-1.0.10-cp312-cp312-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nnef-1.0.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nnef-1.0.10-cp312-cp312-macosx_11_0_arm64.whl (443.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nnef-1.0.10-cp311-cp311-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.11Windows x86-64

nnef-1.0.10-cp311-cp311-win32.whl (312.6 kB view details)

Uploaded CPython 3.11Windows x86

nnef-1.0.10-cp311-cp311-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nnef-1.0.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nnef-1.0.10-cp311-cp311-macosx_11_0_arm64.whl (443.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nnef-1.0.10-cp310-cp310-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.10Windows x86-64

nnef-1.0.10-cp310-cp310-win32.whl (312.6 kB view details)

Uploaded CPython 3.10Windows x86

nnef-1.0.10-cp310-cp310-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nnef-1.0.10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nnef-1.0.10-cp310-cp310-macosx_11_0_arm64.whl (443.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nnef-1.0.10-cp39-cp39-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.9Windows x86-64

nnef-1.0.10-cp39-cp39-win32.whl (312.5 kB view details)

Uploaded CPython 3.9Windows x86

nnef-1.0.10-cp39-cp39-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nnef-1.0.10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nnef-1.0.10-cp39-cp39-macosx_11_0_arm64.whl (443.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nnef-1.0.10-cp38-cp38-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.8Windows x86-64

nnef-1.0.10-cp38-cp38-win32.whl (312.5 kB view details)

Uploaded CPython 3.8Windows x86

nnef-1.0.10-cp38-cp38-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

nnef-1.0.10-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

nnef-1.0.10-cp38-cp38-macosx_11_0_arm64.whl (443.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file nnef-1.0.10.tar.gz.

File metadata

  • Download URL: nnef-1.0.10.tar.gz
  • Upload date:
  • Size: 81.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10.tar.gz
Algorithm Hash digest
SHA256 c358e1d67671d5e17d21b02d092684ac6a4264e0cd678f2e745479b2a5602190
MD5 d05574554327c8505ce93face3cfaaea
BLAKE2b-256 538688a199efac37705bc39df02f7c480d0a72bf7ac9b191c596cee39f431173

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 369.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6cab58547495cf35bef81902d8e6c170e475af89b962c6bd2d846bb494163fe1
MD5 5427e8fabfd467155be9e127d2178eef
BLAKE2b-256 87e87d02068a1dc958b8a8633bb0f7374bdd61bb4959522795afd1551208f9a3

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp314-cp314-win32.whl.

File metadata

  • Download URL: nnef-1.0.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 317.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a24686cd3fd48fa5c9a3529fdd01b4b5bbedd1e31854fd872053de8a388172f2
MD5 4da5aee64a4227aac8857eb2359026cd
BLAKE2b-256 21270a6913d68bd39b93e6385488e7f139d8d068b0f7f2d8fe2c04decaae0b13

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3851a79d665fbfa2efa323242d64e941b9ebbaae882f5de1b35bbf97575a57ab
MD5 6cedab6adcbb48166b977dedb3fb6b18
BLAKE2b-256 c1152f7b9a7b4a5d67904581014ec928fa1fc32bc068d4347e1e6587fc29d98d

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b212efb544822b99ad95f382178f16c4d8252cad94bba4539032a70c70a5806
MD5 3c6eb9173dee7a29e166085176345436
BLAKE2b-256 d498c8ee4ad5298c0805ef337cd2c29521c31cb1baf9bd487eaae363049bad9c

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5270ce2395f2ae3e9e152615feb33abf3ae70e84543b489e361de0ed55490ae
MD5 755cea2c1835553e9fc93bdd261093d9
BLAKE2b-256 d7f0dd4319324dc4546f48c91ff0149640d47fbd237f372e91ec7698eaef4f54

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 362.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 198a6c88477ed67248c58cbfb567677a10bfe3766812186e33db9c89fbdbde01
MD5 43e76a63ac489f7944c3f177c1a79b0f
BLAKE2b-256 c4d0fdf6b41b0dcea77b2de2e79561acd252a7d8718b8bbfff593a7ef28b153d

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp313-cp313-win32.whl.

File metadata

  • Download URL: nnef-1.0.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 312.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 087f3f88e293c045758ef1b2172e511aaa6b254818ba5673969fa37d9a004f49
MD5 f639c2be4f493e5471db102e4ad7b3fe
BLAKE2b-256 9199b7f1ede402cd6a0dc927b608f30865112df07db3236e5922d4480e5c59d2

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 529132d35ea2326097afe926cae1c852caf9a3ba8a8ec0dd1bab2389a325e2c1
MD5 78c27775ccc554460a2b34fca9bfa800
BLAKE2b-256 b7c5cd4d71425ec54102fe52955318f74feef03edd823a0a0ab6014c710085df

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 faed1f2a454ee483a5b8a03029ebb92d02caceb489b15119f89ba67dc1a5ed30
MD5 3ecafba521fd4ac52caec19073fa60b1
BLAKE2b-256 f51ff44de8d44ab62091d6f65b841d15aa629b1b83afb788d5c34039e002eb95

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b2d3334b1a1394c9ef4131e4be118e4bb4fac38c58b3e291407d0b52d1ccc0f
MD5 ac7826f91165702fc02b2db8249aee9c
BLAKE2b-256 c51a23519e029ebda0766bc8f90adcfbec8a39c87ab6cdbdb6ebfde98860ad7d

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 362.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 270aa5ce0f84ec2b1aaf4c18495f3d6b055b91c1e2d8e96f91b2e502fc817e44
MD5 ce89c2f604a0ddf0f11d7ca1a8536d61
BLAKE2b-256 ef2083eb2820329d1717f0d72992ca096f19553307355276afee4613afc02452

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp312-cp312-win32.whl.

File metadata

  • Download URL: nnef-1.0.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 312.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4a68859f59e7143c62b297179f4c91d1df2b765577a26667b70d514087d1db67
MD5 02a408f4186498b9a55c96bc5685f94a
BLAKE2b-256 af91f92c0da929aec294a2339ce30103ecd1e64851e7c47d752f8f2bea6340d7

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6268fc0ac8cd8d5de923eeeb5d581bb8ceb8435c3abf646b28bb69f0767304fa
MD5 e087a14bcda09037c830ce05258f501f
BLAKE2b-256 be585a9cb48b308e7377245bf23b3c22b33f28ccb485c0249ffcc9dc0dfa971b

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23aa97375b719f6ff81415ad09ffb19c15cb3e90400889dd38d52a638bbfbe32
MD5 2ccd1d1751979a444b99ef390cd62b4e
BLAKE2b-256 d6f1fe96bae4483f2f0146f3dbdbcbb0e725af795eb9c7ed6cc486451e26709e

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc4342fe1ecf39a33571f0fa408750720eb24542b0e9e5eb09e4b27aaac92a14
MD5 2b1aa21c2bf14828920bf0c33d25d2f1
BLAKE2b-256 1e54df87956b6e707e1c2db04c2a3176986d2cadff5d374ef1569903d4e93464

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 362.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 64df09f287dcacf6fb136e1680a4456dee92c0177977f4806ca706a3d0558416
MD5 0d7feaf637a8b412424529ed0f16a22b
BLAKE2b-256 7ac95768e6318e91d25a410cb13efca362d469a7cf9c0d93f169711d8f76e5ba

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp311-cp311-win32.whl.

File metadata

  • Download URL: nnef-1.0.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 312.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 108626bcfbbc1bab1f7d674c9678998fe1e2ab8ca0b4ab0860236bba6bcc7107
MD5 eb0b5ec782d42d90a22ee90e605a5876
BLAKE2b-256 04bda03bfa8450fdae83b13ed0b8fa0004c19b2f4e587b2f0fe05c334170ca03

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97d36d1a6bf22eef9bdc010d9730928d3dc3ada784a31d322a6c1317c4e1743c
MD5 ef26487d338ad27416ed9877228e1d14
BLAKE2b-256 eafdd49ceb5f98bdd39dda27a205f6fd61eedfdbc708613d88c38cb77f8f3e46

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3015cfd319c5da9b46ea1fa65df5664f9d5970686e5f68f74fc510e83b88d78d
MD5 052e312a31c2173c93d513c1466e1727
BLAKE2b-256 97345c8a71a353c70732d0b70dfb51184c990e6738143d6ea6ddb3fcf0b4702e

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f87e664b9d1c9b4cf16144d756b7e66097b2f8966b32b8bbae6f3cbab20ff63
MD5 929294140aae0151396a02beb6ead0d4
BLAKE2b-256 d9bb137b6d4e436b839f6501643523e8aa1a626010b77a46d58fdfe52600328b

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 362.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f79cae4b21207b81104103e2d7e4c99b480ab5928f804f6f0453f9520baaeeaf
MD5 47ad2beb78553c937bb41d018bbdbc19
BLAKE2b-256 4c37ad07fd7c336b34a6473df45215914aba20d286be14adf166858f9ac422bc

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp310-cp310-win32.whl.

File metadata

  • Download URL: nnef-1.0.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 312.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ff343cf75a7a54b27c3caa43e149d82ccdbbe9cd216ef15145390789bf1403ea
MD5 d9d585177ae00b2af9d6c63b0ce8d78e
BLAKE2b-256 332b53019ad056b63a6d78751d0cf7a1c46ed0d810cc137164af030ad8a6988e

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d2ff0e672c077d2a581e17b4badb1fe6ca8aec28c6ee10748623860ef332e09
MD5 b7415efea21dab421debd4b48dca262f
BLAKE2b-256 4b01e00b0b2632ec08183580c218cb0703d98519447361e816ea980b4fe167eb

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3a9ce70f1588817bbc6d1136c840bfb644ca64c54db1e2940970a405f78d790
MD5 1db201cd6c9fd03aba73de9287937c49
BLAKE2b-256 7d581f4c1618515ac593d56a09b1e4e0a6ac53732f1c0196690e8179f861f874

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afe1d1da5c41826f365d507df89cb14ec3d5163641c4bcb3f8068bb0b1386572
MD5 29b546f34954bc051695d816561106f2
BLAKE2b-256 ea8855079e8845b1edc973ef16a7788e0cde82e1b97a40138177dc4faafd3a07

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 362.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 128dfa0563c37ec0ff0eb2daf0cd09c89d4039f5dbaa1abc5e607187571828b9
MD5 623118ab95b35637e4a76cbd1647c60e
BLAKE2b-256 03e52dc9fb1bccf0c8f21b019645727e44e4b8a8c21205a0f66d6c02ce5297cc

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp39-cp39-win32.whl.

File metadata

  • Download URL: nnef-1.0.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 312.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e61fb0088553072f6c552b01dd9b77da1414d82e602b070c19596a3bcf825c00
MD5 35ab3988785810153b8e8cf60648e54e
BLAKE2b-256 2c69c82c3e6d45e279261a5d2192caf0059e00d70a3ece4ae81abb626c254231

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af7b838af9aee3cba3f95b22649f4f11ac22aefd943faace251cd53105fe4057
MD5 6f3327b27a19da836543c63537102145
BLAKE2b-256 0f4a9890e46e3db85ffb3d09234f5622fc2595e5fbc9039315aa089a927f7d13

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f200f4e899880a2e75419ab209e8b76b0fecabc1036029a8eeca9fb5f6a40749
MD5 3dd8b8d650636cdb8fc64f023103b08d
BLAKE2b-256 d01327a15b91a5e44863e0f4220e5a4fa75d5857afe53622872a732273f81c57

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 443.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44b95b51522b9903c7521e5eaf3bdbbceef491100c849a40da7daf359c9b8144
MD5 f704723e6c76d770287ac5578795315c
BLAKE2b-256 4d2aa53b60addbefe75dbaa30b2a75db494b9792e7258220e95aa9ef67a3aae0

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 362.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8fca81eac389c6278b336d85eed627be66cf9c29f4fe452d4abae07bb6e4cdcb
MD5 b7a6001249eae83529ecc02a2f2dc7c4
BLAKE2b-256 09d3c518165d7eb769626b79c2176632f034185a7bfa3115f879aabb8432d9a6

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp38-cp38-win32.whl.

File metadata

  • Download URL: nnef-1.0.10-cp38-cp38-win32.whl
  • Upload date:
  • Size: 312.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2db2d126d88793c69d19e0b65157e00110cdf77e425b926765ad01b01f6e5a41
MD5 f9f6ee959645dade80ffb6c852ee76cd
BLAKE2b-256 54ebb02eb87528a86c45d1da4874ef2172e1ae77ce59c89cc692aca5a4b1d64f

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c2c5c86513c7f3db2816869654637d505d23a4ecc17043ab2ce63c1577e0e5d
MD5 9eefde2e9969d30d468be67731a7b189
BLAKE2b-256 2222fba2b0ccf9530fbde6ee4745795ab5339c579612f715bacd4675f9264400

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nnef-1.0.10-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76a2f25189565ba3e5d5cb227754de0b3d6ce4f0d2b741edae912019e0948d21
MD5 48287d7c8e3de1e3b0227af79db6efe9
BLAKE2b-256 5448e06dfdc8494deb84758d0a63450869428446b9ad6384ad9a9f5ef0e1d1c3

See more details on using hashes here.

File details

Details for the file nnef-1.0.10-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nnef-1.0.10-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 443.8 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nnef-1.0.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2544a2ba58551b74847a425006ad0a954fdcf0617f08b0ac7a7b5944d3edaa6
MD5 a375a65d85452371d6b1621a72541201
BLAKE2b-256 75564651c5590c0c8680a09003ae593dff2c9970f7302418f831ac165fe7b8e3

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