Skip to main content

Bindings to UniGen, an approximate sampler

Project description

pyunigen: bindings to the UniGen almost uniform sampler

This directory provides Python bindings to UniGen on the C++ level, i.e. when importing pycryptosat, the CryptoMiniSat solver becomes part of the Python process itself.

Installing

pip install pyunigen

Compiling

If you don't want to use the pip package, you can compile it as:

apt-get install python-dev
cd python
git clone https://github.com/msoos/cryptominisat
git clone https://github.com/meelgroup/arjun
git clone https://github.com/meelgroup/approxmc
cd ..
python -m build

You will then find the files under "dist/".

Usage

The pyunigen module has one object, Sampler that has two functions sample and add_clause.

The funcion add_clause() takes an iterable list of literals such as [1, 2] which represents the truth 1 or 2 = True. For example, add_clause([1]) sets variable 1 to True.

The function sample() samples the system of equations that have been added with add_clause():

>>> from pyunigen import Sampler
>>> c = Sampler()
>>> c.add_clause([1, 5])
>>> c.add_clause([10, 11, 12])
>>> cells, hashes, samples = c.sample(num=2, sampling_set=range(1,5))
>>> print("There are approx. ", cells*2**hashes, " solutions over the sampling set. Samples: ", samples)
There are approx.  16  solutions over the sampling set. Samples:  [[1, -2, 3, -4], [1, 2, -3, -4]]

The return value is a tuple of cells and hashes. Which gives how many solutions there are, probabilistically approximately

You can give the following arguments to Counter:

  • seed -- sets the random seed
  • verbosity -- sets the verbosity of the system (default = 0)
  • epsilon -- Tolerance parameter, i.e. sets how approximate the returned count is. Default = 0.8
  • delta -- Confidence parameter, i.e. sets how probabilistically correct the returned count is. Default = 0.20

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

pyunigen-2.5.8.tar.gz (464.8 kB view details)

Uploaded Source

Built Distributions

pyunigen-2.5.8-pp310-pypy310_pp73-win_amd64.whl (478.5 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (752.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (722.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.8-pp39-pypy39_pp73-win_amd64.whl (478.5 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (752.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (722.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.8-pp38-pypy38_pp73-win_amd64.whl (478.5 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (752.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (722.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.8-pp37-pypy37_pp73-win_amd64.whl (478.5 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (767.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (722.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.8-cp312-cp312-win_amd64.whl (478.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyunigen-2.5.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-cp312-cp312-macosx_10_9_x86_64.whl (807.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyunigen-2.5.8-cp311-cp311-win_amd64.whl (478.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyunigen-2.5.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-cp311-cp311-macosx_10_9_x86_64.whl (807.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyunigen-2.5.8-cp310-cp310-win_amd64.whl (478.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyunigen-2.5.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-cp310-cp310-macosx_10_9_x86_64.whl (807.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyunigen-2.5.8-cp39-cp39-win_amd64.whl (478.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyunigen-2.5.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-cp39-cp39-macosx_10_9_x86_64.whl (806.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyunigen-2.5.8-cp38-cp38-win_amd64.whl (478.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyunigen-2.5.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-cp38-cp38-macosx_10_9_x86_64.whl (806.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyunigen-2.5.8-cp37-cp37m-win_amd64.whl (478.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyunigen-2.5.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyunigen-2.5.8-cp37-cp37m-macosx_10_9_x86_64.whl (806.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file pyunigen-2.5.8.tar.gz.

File metadata

  • Download URL: pyunigen-2.5.8.tar.gz
  • Upload date:
  • Size: 464.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for pyunigen-2.5.8.tar.gz
Algorithm Hash digest
SHA256 c6e2a1f70271e059f1d16af1965a6a0267f85375bf8368c13fee25541ec8c132
MD5 772434976cd0f91c86d6515af0cde8b6
BLAKE2b-256 1fb2cd1e1d7ea83717ed3196b59beb6d1d8a5e2ea7dd1ac5e5b60d3651bfd8a2

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6098f867234ee301d36c378a420c28b88aaff977b9693f2befa577d0cf6a0f2d
MD5 83f2fb7db370c7c1959abec7cf4a413c
BLAKE2b-256 894c1d43efa2891b23af5d51b49bc091cb242512079c575ec527a3cb7d1e115c

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e40d65c04964eaa66b97db8d8d4f27f06c457f1a43ab52117f5b95508c790550
MD5 746ec80051c5833e8791b7e56bdc9faf
BLAKE2b-256 5afea0482234d400c0995ec861979e99ba431ecef28fb90fec6f8409d982a909

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 784d88a3a77672bf19605e67c95ec68db01ec3b5d586d3a72488b3d456a787f6
MD5 e20e6bf81ca0014702e3ec4f4d6c31af
BLAKE2b-256 a0a2b7d7d9a72badce5f0cc59b5a534f10fe9e6e645a6acd8145f4337b623a13

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 52308e120a4ddd4de0e339351f45269f94a4a6d9822cd0ad5f1d91799def8377
MD5 9ff29a274a5915d5ac70f9dd1c1ef75d
BLAKE2b-256 cb089474d33d4a55c356493306e68cecff3fc35fff4a8867aa2ff696385c5d91

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 690eeb3e3577873661d497ac7d431ac85bbd22caf879d7701616dbedd4e662ce
MD5 680398f763874b681fc173c603b17e01
BLAKE2b-256 88ff234c179a08fcf519dd863f6f69232172eadb04cb3769742548918ccd569d

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7de9e83d39830c683ff924bd03660c7f319d2122301c8961badd8cf70afe441c
MD5 79d4d7346dc511be0eaf766e7d5dbe5b
BLAKE2b-256 c545c6676a6c1e8b8e9d025038f6fd244480fb5a9a63950a9f7ad6861c13c9a7

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bd7bc51a4ed480e529834ba9c536d053decf0f4ab24f7fde3ef1319a050ae380
MD5 f3e034e78171d49e7a4861aedc86eed5
BLAKE2b-256 1418670984e0409c29a6711f0868a29c2ae7a34a87b9c395048b397e88bd4621

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b586fa1fb2cf5c02bba9bf97cd65b2898137bd76e0c90e369bc0e1f299bdb447
MD5 c196be4267b400b8fba11bcc669a8dd1
BLAKE2b-256 e55880bb9760a19f116a55f0c4f9359d0c753cbf7bf7430905a9ae543aeacb00

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11e2e80b215aad792abec31963e1123a2650c13bd30c424f72475ee31234835d
MD5 9c0fb9abf141f257fdb224d0f20e073f
BLAKE2b-256 5207b3cb3177e662b387e0c2468cee6f1c2a9b0c01ac865132efbf8a6e4bced9

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 29278c9fd14df8f84f2fab1714241cb2cfaf17a4b0e86320d857c1cd7896b6ec
MD5 9243114eee388ea2b19acd9ff7a2732b
BLAKE2b-256 ddec29f6d1a83680600cb5f4d3ca3e8fdb58dd390e29ce9028536661271c0dea

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d77714c791234b4a7c137d7882d44dd53a0eb92b07d9951d531fdc457363ae8b
MD5 d69616c2cb84d5909e0595b12ba5a452
BLAKE2b-256 f36eadcaf0eb9cee08132c99699903282de7ae727f1e76aaeb778f7e472be7c2

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84a329282163abd25bad20d06a3570fa6f37c2147cfe83d22b293f290746b8ae
MD5 6a4fabb5e782c6e00aae7a2d7281eba3
BLAKE2b-256 51846463f91f75d5ed3cabcdc6206f07d5cc9a984df4138fe5fbd48a90ba2921

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyunigen-2.5.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 478.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for pyunigen-2.5.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 955c5a7a00b45e4ee95f79734bcaf1fef3a12377b9c202d45a696335c6ff9fab
MD5 713872bc2f4921c262066a28519afc58
BLAKE2b-256 c14aa63121ea3828db6f4a3dae48713983ec892d17e4ad0cd95b6d318b11586e

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e030cbf02dc4348fa998aa662991daf13ccefed1d83db39fc225f7becac3b0f2
MD5 3582dbbaee2eefc5de6246090582c3b1
BLAKE2b-256 12595aa44b99699e41743c16a111ca629e9c5f16a10154d9c63a25e638a6d4b2

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 303dd50a6655dd1ff93e51d9e974da8a8ca1967491e0479558f41d58a400631d
MD5 d7963c39bc2dab63496403289a07f996
BLAKE2b-256 1f06dba286bd2ed581f104ba687aecb5eb96ba4e354b5e9e21f17b46677c78cd

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyunigen-2.5.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 478.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for pyunigen-2.5.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cd22bb976f1ab9aaac4918cb4b89d76153c335daddfda3e7f8818e0ca205036d
MD5 8baa0dd26be55dfddf93528a67535824
BLAKE2b-256 a3e1ed070e10832b3b22d52dae94e5bce399b9296c63cab9c6dcae877c41444d

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da035e48471335ee1b5b44c65c475a4b5a8daeda814232936dc40aa685aabff1
MD5 4ce9841267838fd9e2fd88656a264adb
BLAKE2b-256 89cf14282d519505fba34b11e6692ede4c424a0183cbd9e4b2ca22ad20ad31c5

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6daa82fa0ff994b4657cecc15d440ba5c8269c174cad8847a416500dc502806
MD5 ddd57987ea8d08ae419ab3c2b3ce45fc
BLAKE2b-256 dfe29ec024d1d238222ba13515eb8f6ddcf126f009006de852b935e3cbadad13

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyunigen-2.5.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 478.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for pyunigen-2.5.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f63efc192553b6af88e44952e605d43932d11593767e9d50f81a2121a9e68238
MD5 a4698f01e52d8d26ad0f5540ac80aec2
BLAKE2b-256 a8c21bc0ed432d8dcb6eac0876d7dd763a5e74e1b8dd372acf8ddf23743e686e

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10b5bc71111c662c131b55dd8622a5b0e6048c31e54e0c607bb6e32934963e9d
MD5 e3076c269f5a4a5e74071cca53bb0341
BLAKE2b-256 791c6848f267fcb8c23f492eb0a5cbccbb57c3020d4d4d379e163885b862b333

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53be162f89b5f5368f898e1facf6d1582b9fa8f158401c20bb2b8b79c38e6e7f
MD5 477298838da30e72f53d7dc65af64d25
BLAKE2b-256 36305a73b5cad4bc5f021d240e292712bd3456cbabea9fdafe7cbcdd10450423

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyunigen-2.5.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 478.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for pyunigen-2.5.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3ad54fd8578eff8316ada8867ff8f07065209159633e5b26209680d362ec907d
MD5 2d25c45abd5f4d79540bfa0a0d3080a3
BLAKE2b-256 326841131377ba0578f6e64dd2a6a0052274160eebdeeb2afcb3ddb9365de08e

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a76d42b2c1521fb30062ddaaf3c69cba6ff29eef824e92da029af52a9e0a126
MD5 0763f2beb7103dd00f19fef9e63a8256
BLAKE2b-256 b3fab9cb8b29b55364772fe7778dcebd4b68a9149f932949238175b2b2fbd2f9

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c87ca0a634bb72f83d784ed32dab6f473f9b333615db8b3fb8b730c9e9cea31
MD5 4daa6287e948ef884aface5021f731ac
BLAKE2b-256 7955eb677dd0350255c200ace0ba3e6c078f16aa16b3e7d9123b75abe865f5c9

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyunigen-2.5.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 478.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for pyunigen-2.5.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 60c34e9eebc417f553217ee6614d394d3afac429b884b332d0dc4174af56720c
MD5 82d4dacf9246148fcd59d0ced9a1d86a
BLAKE2b-256 556c5af2b423ea7ccce081e7b0661a593011d00b641146536ab7daeaa7b3be2b

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f1b6f0b0214eaf70f8f192e610a31254b01b11fa2d16799f513611f6a9f5b9f
MD5 85c53f8eddae8c63d0c8aa7e5809a5f1
BLAKE2b-256 8d69ff46db13d4710fad51283f8fdf530515626b31931c181a87195ba931ee5a

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6a38811c060f7e5236df05f28e86c38f1eaa4dff4f543fc8b174fa795aeaef9
MD5 515fc9353c9cd23f433fb6171340e085
BLAKE2b-256 8ba0307e7259c53d04d6bb96167f9f60d6cfbf71fc0a43bc7e2289a75f40b8f5

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp37-cp37m-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyunigen-2.5.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1c9cc799e854fbf9bfaf425dced523fe5413818fdde0aba6e91db97a0d6cdf71
MD5 44d5e997d5272847351d8f1e3ae40b6c
BLAKE2b-256 333e83ce706242c4c918dff1ae8b97eccab89c6dfc7193aa09661b425b52372f

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b5835bd1ff71eeeb1e9ff2720ec433cfccd562c2a4e389e1f18ab1a4efaf9d4
MD5 4feda7d09afabd07a540e4c0050522cc
BLAKE2b-256 105323ddf6e6dbab98eff99d93a69e6864033a8cd8a910d899c2ad4ae1c6f2f0

See more details on using hashes here.

File details

Details for the file pyunigen-2.5.8-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyunigen-2.5.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03363302be08f6269680fde985cfeb9d2d1e0d29458e8304de7f72e9d94d19ee
MD5 a399b56ff363455da9878a8910b05569
BLAKE2b-256 7549438f5ec56cdc459080b661da3142b41565afc1f438072c00fd42db34c06b

See more details on using hashes here.

Supported by

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