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.7.tar.gz (459.9 kB view details)

Uploaded Source

Built Distributions

pyunigen-2.5.7-pp310-pypy310_pp73-win_amd64.whl (478.9 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (722.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.7-pp39-pypy39_pp73-win_amd64.whl (479.8 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (753.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (722.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.7-pp38-pypy38_pp73-win_amd64.whl (479.8 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (753.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (722.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.7-pp37-pypy37_pp73-win_amd64.whl (479.8 kB view details)

Uploaded PyPy Windows x86-64

pyunigen-2.5.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (722.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyunigen-2.5.7-cp312-cp312-win_amd64.whl (478.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyunigen-2.5.7-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.7-cp312-cp312-macosx_10_9_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyunigen-2.5.7-cp311-cp311-win_amd64.whl (479.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyunigen-2.5.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-cp311-cp311-macosx_10_9_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyunigen-2.5.7-cp310-cp310-win_amd64.whl (479.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyunigen-2.5.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-cp310-cp310-macosx_10_9_x86_64.whl (807.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyunigen-2.5.7-cp39-cp39-win_amd64.whl (479.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyunigen-2.5.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-cp39-cp39-macosx_10_9_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyunigen-2.5.7-cp38-cp38-win_amd64.whl (479.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyunigen-2.5.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyunigen-2.5.7-cp38-cp38-macosx_10_9_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyunigen-2.5.7-cp37-cp37m-win_amd64.whl (479.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyunigen-2.5.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

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

pyunigen-2.5.7-cp37-cp37m-macosx_10_9_x86_64.whl (807.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyunigen-2.5.7.tar.gz
  • Upload date:
  • Size: 459.9 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.7.tar.gz
Algorithm Hash digest
SHA256 6b6131bbed0a37d5af372170616badab143369b93c87b1719b983cc9d76c5262
MD5 e8df845c8566838138c1fe6baed62f85
BLAKE2b-256 886379dbac280ef0548dcc225b469cbcc39926594fb524e9cc96104d8c570cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 12832a62254b9b69e4339e7d07a897f3a05d7cb1dc8367f0c00537d8becd37b3
MD5 5966c5f241611fd52584ba06cd79bb78
BLAKE2b-256 e63e2939fef18dfc4599bd210fe8bf8f819c7410997a503116f60f49e9420164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6247804e870bf98d3c5394c9a24825ea0a08b1288db5aeecf1365362a7ea7e62
MD5 63229decaf5136d2ca0353e6f32e144a
BLAKE2b-256 d840e4e4dc9c7276341803b76ef489520d0caf6ecc4dd201e137b77e0984979f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 172f5159d28ad6bd2cfdb9a547cbd5157045297aeb91fd7a4e58b37ffe3ec723
MD5 645560eeb9b6b5fab88f2b4b1232841d
BLAKE2b-256 30de2ca083a2c5f2e71fc3c8175e2346e64966ad9d6de8d3730cbd13f475d9fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 34fa609542a13689cac75625cf00d19057ac0986b38bc4fbaa458a87c5026d11
MD5 a30d1b4545e619a1c7ae566b32dcabd2
BLAKE2b-256 2b4afb94e3860d9fedb1015e4f0423c25ffa95f276f85764fcdf2c4487bca0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e5a0a58aa7a142f4300be783e67ba016a5812f8640d156da5e9fec3c05ede64
MD5 7f3a2482c8ed0f4f74f86347575ea16d
BLAKE2b-256 a369b04ebf599f6d568a209f6307ec5b543ab9efd730820825a4bc5b06839b4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d27e4b18a1409f2b2911928bf1b568a701763f81627dd6e9f28a868ec31cd910
MD5 40141b0068e74b86d6b764d79251b3c8
BLAKE2b-256 997c30dab514e68ba856fee6bbc39a81a7112926c88f55086e2c8b07cccd2787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2af8168952887a3295846c2a435380a7b317513527a06841f25c408cb11d3e3d
MD5 96d2c3833c95dfe9cc8169d9c0135623
BLAKE2b-256 b30013e0e3225ad99672d9f7add8fef95d1deaa344066a62cf0c61c01b8a5c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 834a2476fdd2982964901382dd245633f4b84653060fe88d79a06ce8c2dda792
MD5 ba11ecc414b18806bb471541b6af8825
BLAKE2b-256 1c82e848e7bc2794aaa644e442fbfd267466d71ce05a51162c00e0b606897880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a5a7aec0fd9c0516e54ffb4e59f8a018e8183bfe231f448ddd31e94adba074e
MD5 82b4fa0fc03049cd6cd323b91f86bcff
BLAKE2b-256 826c5b03fd988d378646cfc66f213d2abae487f43e67c0c7671ee5ee38d51d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 31e989804c588eca24a61eb22c4c7cfdb7762def24e29953963c57333301428f
MD5 1494c5803bdf7eba9f9bacde639aa56f
BLAKE2b-256 2625e44ea29942c2629edd53d8ccbd373412bf205b53454055ff0b443760a6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77c937161be8fd6bce4ff454f3daaaac9db4d9c2dee344dc18782ca58a98ac73
MD5 28dcb6bc8c354589f1766279ddcca08e
BLAKE2b-256 29f0df72a7234a2507474dd456ce29b6caacdc11a08c9c5fb0d79adce5677001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c49a56172d519c640704f57126ceb36bef2586de891aff8e687017f55feb4be3
MD5 0af739c923d4f372cd7fef84c9b11e0b
BLAKE2b-256 7181c2fd7482341c680855192296fbec7f4e2812ec2e9d3fe958385df9d4e940

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyunigen-2.5.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b406e64b111fcdaa4b02a99d33a1135aa6cab87d28b201434b3eff8eeef5f30f
MD5 f77960a6738e1286febc3c15e998b8f1
BLAKE2b-256 64a5818cf25ef99b91b19e9dbc6cffad345d1b0bcdd5cdf53a5126c8dd34f7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e544165a8119214737f0b12fb6bc800c3cb5d6c47e894e9c4f6f2884245aee3
MD5 7afc6e5f5084927a695bcd3182bedfbc
BLAKE2b-256 ec9992f428da0b6247c7fdea0363ee8a7d32676c5a15b7f114072b55032c7164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f591832a0859dc25e66925de5249eb62e2b78ef74ef3e2b91be1a0aca26e039
MD5 bc340aaa827328f8633a59d601f6f471
BLAKE2b-256 d4870be8085a69e12bb43cd1892a718f9b6b066eb7a724490c13ebcb58c24c16

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyunigen-2.5.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 68fb1c0d6a840aabb7249c943045849aa94d66cea58b0aec97ad5faa9fd1b737
MD5 49de6e2ffda308be209c5cf1d76d589d
BLAKE2b-256 b7a97f154fab33af54e7717022c12bcda1870bf828da2b3302027f42d95a04a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2ff78801133ca4b17f51b77a3c8f4eadc2a8b16417607261be79b4ea815a360
MD5 e295b1cfc535966c5d5d15e2b9b59cfc
BLAKE2b-256 45df3b550f9b74923da36775f13408dfdf4c70a502afb221d83ea5a37bfc6546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 106f940c8511688929551b93c72f0b62c756d3a79b92bc5edb4f77357d82b099
MD5 f5675e28ae72d37db2766704eee85dd9
BLAKE2b-256 3da488f03eeac14743c29ee808718a343c2b472316f3f1902de3a8ce554c0b39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyunigen-2.5.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 509bfdc54e337adc1bf7b329478005faca11b8c9de7b4e653bd603459fa62ac3
MD5 559da49c46eb9d8fc8c61bdc80321aae
BLAKE2b-256 8c3dd69a3accbb4792504f3b03e4c927a7963b8a06d6904c9559304bd47cdef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bffde80f6123aaad6322e795f7a1ef3acde21265f077d2ddf189f44c59c3fbb4
MD5 d8fbac7e089706d607fcd21f6fafbea1
BLAKE2b-256 8ffb29bd5df18b5f42238dd809ad2c8ba374ff88e6392263d5cac3a2222cd5ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23097e0494a757ec2f38e65a0c70c58cf741b542f9c34a839c175a05b756203b
MD5 6ead07946a3785a66e7eab4225326dd6
BLAKE2b-256 db316325bd4e4f009fd84c017525cd04b556cdc3ce0ff3e74e649e3f91d893ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyunigen-2.5.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4113db6c3e87ca6ffaa756c8e5092faf4f693953b2f5a49de7279a6d47e41dcf
MD5 e58c79b879b20918887b2b6413ebc198
BLAKE2b-256 669ee303cc042db9540840b9660f7828755fed2b0fd1c3211ebba2ab7aa5f80d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf01f4d8b44427eccd0da866d35ba42f727a815592076c97b49428350b1b233
MD5 87ea5e3a4c32d58c6099e1c4a6a85e9d
BLAKE2b-256 8f1492b62308d236e39aa0a2d0aaa2e6fa724b0253864501f984d65f5574239c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7577baaee434f6891c7084a4b352362b9d214da7d98138a508a0390a8f1a5c4
MD5 97d52388c20b8d4d37aefad2d0850318
BLAKE2b-256 d56f7ba69f62eff03852397ccbc0ccc08456e6069c224198833b0023e3b243b0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyunigen-2.5.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 69ad80e078974cd3a12a88b53d869380f257048044b1c1b5067c8078a26852cc
MD5 b855cf10afd2ada7f702b6a2318df9dd
BLAKE2b-256 8b15511287f14cb1a04e900905fd8723d1e4c918c1ec32d9a9df9752ea273adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 054bf84f18c10c3f7bfc34ac9a97801a6621d6bb98a8b0663f97056bbe435cf2
MD5 04e23b7c7c4f6c005501e68ac1c8d7ea
BLAKE2b-256 7470e8161441ab783bdee54d2ed6dd2f0f9cc12add0b39565f84b588cc717f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6ccb861453110b2a7589b7955f08ba00d76ec0e2d65aa1bc6f7f41a6261a534
MD5 29f2fa61326ef9c6941107fcd250820c
BLAKE2b-256 681fa6f014578e080fe3527616749d2e5775ab52c3ac6d452d6208bd2fe4a577

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyunigen-2.5.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3c717c5c0d941e13ac5da272e73067e51b5c11d8f416cb0c0e4469ed81a0aa22
MD5 bcfb05b7584b7add662457cc35d6bee5
BLAKE2b-256 750e5d9dba63f5a2b484465bfe476d54da7f67fb8d946c45174f8dcd20355b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c332eeceb9fb07f9c54049e7d2a67a9d7d0739272a6b9c1cef70dd25e4a15f5f
MD5 576e646585e9f8b828a073710fbcbd5b
BLAKE2b-256 46188f628d48155f5b27341f1a0a25be0ac02debc2e490c0e0967d2dec72dc6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyunigen-2.5.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed5da6c00dddb72e6ec4c88f36260dce8af05d081776a67c99b7f4ad085bfb63
MD5 d051a1503417a8b54214ea86b951d7e5
BLAKE2b-256 074c0b7d4699e31d401cbfb78fbecde64d9fe44940b50c5725cbaaad8be5a519

See more details on using hashes here.

Supported by

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