Skip to main content

Bindings to CMSGen, uniform-like sampler

Project description

pycmsgen uniform-like sampler

This directory provides Python bindings to the CMSGen unform-like sampler,

Installing

pip install pycmsgen

Compiling

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

apt-get install python-dev
python -m build

Usage

The pycmsgen module has one object, Solver that has three main functions solve, add_clause, and get_model.

The function 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 solve() solves the system of equations that have been added with add_clause():

>>> from pycmsgen import Solver
>>> s = Solver()
>>> s.add_clause([1, 2])
>>> sat = s.solve()
True
>>> print(s.get_model())
[1, 2]

The solve() method optionally takes an argument assumptions that allows the user to set values to specific variables in the solver in a temporary fashion. This means that in case the problem is satisfiable but e.g it's unsatisfiable if variable 2 is FALSE, then solve([-2]) will return UNSAT. However, a subsequent call to solve() will still return a solution. If instead of an assumption add_clause() would have been used, subsequent solve() calls would have returned unsatisfiable.

Solver takes the following keyword arguments:

  • time_limit: the time limit (integer)
  • confl_limit: the propagation limit (integer)
  • verbose: the verbosity level (integer)

Both time_limit and confl_limit set a budget to the solver. The former is based on time elapsed while the former is based on number of conflicts met during search. If the solver runs out of budget, it returns with (None, None). If both limits are used, the solver will terminate whenever one of the limits are hit (whichever first). Warning: Results from time_limit may differ from run to run, depending on compute load, etc. Use confl_limit for more reproducible runs.

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

pycmsgen-6.1.0.tar.gz (247.3 kB view details)

Uploaded Source

Built Distributions

pycmsgen-6.1.0-pp310-pypy310_pp73-win_amd64.whl (252.6 kB view details)

Uploaded PyPy Windows x86-64

pycmsgen-6.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (419.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (378.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycmsgen-6.1.0-pp39-pypy39_pp73-win_amd64.whl (252.6 kB view details)

Uploaded PyPy Windows x86-64

pycmsgen-6.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (419.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (378.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycmsgen-6.1.0-pp38-pypy38_pp73-win_amd64.whl (252.6 kB view details)

Uploaded PyPy Windows x86-64

pycmsgen-6.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (419.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (378.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycmsgen-6.1.0-pp37-pypy37_pp73-win_amd64.whl (252.6 kB view details)

Uploaded PyPy Windows x86-64

pycmsgen-6.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (428.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (378.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pycmsgen-6.1.0-cp312-cp312-win_amd64.whl (252.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

pycmsgen-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl (418.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pycmsgen-6.1.0-cp311-cp311-win_amd64.whl (252.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pycmsgen-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl (418.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pycmsgen-6.1.0-cp310-cp310-win_amd64.whl (252.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

pycmsgen-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl (418.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pycmsgen-6.1.0-cp39-cp39-win_amd64.whl (252.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

pycmsgen-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl (418.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pycmsgen-6.1.0-cp38-cp38-win_amd64.whl (252.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pycmsgen-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pycmsgen-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl (418.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pycmsgen-6.1.0-cp37-cp37m-win_amd64.whl (252.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

pycmsgen-6.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

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

pycmsgen-6.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (418.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file pycmsgen-6.1.0.tar.gz.

File metadata

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

File hashes

Hashes for pycmsgen-6.1.0.tar.gz
Algorithm Hash digest
SHA256 2d93de2ccc815e5804fb75873c63468b5eedc2812e2a51215a86aa2af6f8d564
MD5 ca4d704656c01760ad6e79798be59a90
BLAKE2b-256 d3ecea816ebd915a2170ed829f3bb7d2afcbbbcf17b5fcb99de74500b7fe1512

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 80b0df2a5c440fd28635be571aae5efcd84a4f38fde9657e36777767c51c9f75
MD5 2b686cb468aaa4024ffaf46234df5fe4
BLAKE2b-256 54a4b47e24930bc0aa0bfc89b3b64f6de353c11d5909a4c65872ff1e74bf926c

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f373a655b38d0976568554338501fd38733b3ad33e9fec6e8f81d81767b3f28b
MD5 95878960c57e77f29d334294195229a2
BLAKE2b-256 040c5fdb0b233be38582c968af10ad24756ff7a426132690d26f4b0e6c3b15fa

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 388b3d569f12c194f9bb97ea5407192cc20feadeca344e07ba7cdd2595636168
MD5 d9ef7071a36d29d2e7d8eda3e0451cd7
BLAKE2b-256 4d6091da49ae7aa462f48b99a012078155d65e8f71ba83080cca9a5703f30d07

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4adcaf0830d85fd60e7eed72776a3923c6e7db717bc6d6e8473a1a7996e8f43b
MD5 d8b1debaf06b0c38dfe9717b666a5458
BLAKE2b-256 151deae6952e0fae93e11442d2b6c2eac0643d5f8394ccfb0d584aeb5957be90

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b725382e21068724546bc573a709603a257a6f8450ab6cf6317515b59ea193f
MD5 ce81b6fd2c5088afa1113bc274459109
BLAKE2b-256 0da9b435512c241923aaa892c8bb8634cafd7f23b8d9f78d93bfc92d703fd618

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3697ba23a8411fe63150947d7df2280416158bdf76402283b09ba92e37751a68
MD5 5dba7fc5f6fd50ba71146f3f2d5560bd
BLAKE2b-256 17cb3c82786a3d0bc0edc241884140d6c9c30b6dd223cfbda2a344567f5f7024

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0ad55c3cbbfcb0d370fa2c206f7af0271b90d739882287f45af6717f77db1d22
MD5 3b441c78d007b4216b2c9b6aa049924f
BLAKE2b-256 1daa22374d89cec4f96d236af49372326a364a6e4a5f7f6a57a6e209b52791b1

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 511438af086ff66c1814f509308db895eae1c63c732b6bc549fa0fa4e68b039b
MD5 516a7ab44227865ea4f103384bece1be
BLAKE2b-256 56c984fd9b3a120003f5c067a418c572aaa9b2b36a9933e3b223e80a6f248c3a

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13e75c24893fb123b7a210eab8754e690238efef14d133895d941e02f81fc9aa
MD5 191e9f1baa52f9f2256d5d2b83ecb44a
BLAKE2b-256 1eccfb2e8557cb41d81732e8e91c25360b0f0e6085a5d112dd6acea7895d1176

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4dc26c06e5d66332ff6dc6b62d0adb700f4be3a4766815dcf1125136adf65eb6
MD5 b68f1098dd8b9c9bfc3ce26257187340
BLAKE2b-256 fe75c8a029b250428a509ec494c9e56e4405af1c731643026fddab453adcc2ee

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92e967d39a8895805c23db718c05bf287f65faca0e55efb83b7e1570b99c083c
MD5 3a21e5aeed97aa3a607a95beabd666fe
BLAKE2b-256 65c2c1a9e7a24a6d1f81fbe4d5ecb1e3c155882cb09792e5fd1a29c317ff2ede

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e9eb8fe079b627d90969590d727363169dd583dd8ffd69262a11ce3d31525ea
MD5 f8a9776a5f8e8d1f695ac702402546ac
BLAKE2b-256 5d81d5e047bc0f75a1b65671217fa3e4c55d3ba0cfaebda0a6764c093724e6e7

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pycmsgen-6.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 252.3 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 pycmsgen-6.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1dcc4f6756fc80a3a817164ccb3f8e404e43286e28ca19dee925a40c5c08f803
MD5 5b6078f02bc2552bd3fa48645bb02cf5
BLAKE2b-256 ddcff3e091df4b68d880668305e50214cbd72ff61863436ad1b58e4d73f47c72

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a9424d61e5fab82cdcb76944bd88de0c41bc42c28587587f8567b980984a33b
MD5 683ab476059e4e536cc68c7645b7e8fb
BLAKE2b-256 f150a4124df8b0c98c4d5f2c73b2d17fdf52faeefe3ca93c4c00abf243a6fa93

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ecc14baa1337c8044cd602ae166bfc35f98de870f8a862d62fbdacb6db1ca868
MD5 4c24e3a8927c6ae1590cabfb692ff537
BLAKE2b-256 45bad74a633a14912756228b1434b58344bbae391c593f0bf025557a4db3e710

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pycmsgen-6.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 252.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 pycmsgen-6.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eee00abebb770157d9e7f32a99c7ee6e64c40b6ccdd804d2a20de0588d69c070
MD5 2faa1849d71296ee2715ecf1a3fb9bcc
BLAKE2b-256 bbe36188380e022a198059cdfeebe8c4e84cafde00cf2c27240bb8eecfe65c92

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e8ea62bb3c4751678c1d171ab8876b76fe1e2ae8435fa9c6ce4c2d6190a8744
MD5 ba2fe74ab1bcb5be3fed0d45ea37f9d9
BLAKE2b-256 018a2fa2c32e5b39222244a7e9a9041d93c6cb8749d3f9f394fd65e079368562

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ae87a9b2b14bec664c2449fdb6e35ccc9716af0949425972891cc2c824b2132
MD5 e2d9dc483567534c0adaa4bae969e7d5
BLAKE2b-256 4fed945756fc5c689ac49405024d189ec5fc9696b002e9a69580ef3c822a7681

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pycmsgen-6.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 252.1 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 pycmsgen-6.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 789a88f9351e03db50c7e0f04836f8bfc4560439f63095c2c2db71a9dc31e431
MD5 db1db8ed24401c6164fd270000390236
BLAKE2b-256 13e11eba8dc54da6bb35088eb6c437604a7bca9b599d4ca5de10b47672757d42

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 502d95aae49f1f930e19efc7a9755552467c612d48523fc0558be1de71ecdfae
MD5 fee1d5315a645680862fcdcb41d11cdf
BLAKE2b-256 06ec31326f31179de0951538fe657ed3351f4e131436c844bd6acc8e75ec2bf7

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d37e1c36985d6a420040ab073cdc975c8300545f1fa7e152e1ad2243fa8ee2fb
MD5 3c34adda9010daaf4e6a23810ffe8b75
BLAKE2b-256 70c7f0049094cae666711f1fb4033fe1a172037bd248d23ede77886c6565fb97

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pycmsgen-6.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 252.2 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 pycmsgen-6.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b35adc7fbd18058d15a9c992516e1a6e18daac3d393eda9d9946b443f4327208
MD5 8a04b78d93f3b2ec69b13061bb2cbeb5
BLAKE2b-256 66453a1c9a5a4105497c2d0f57c265e463c0f5ed7e6fec06cd9a18771077ac52

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 499aa27e4a172552249d6694627d8390c975204760a14142320f68fd809a9a01
MD5 9f4d85eed92d43daea50edb0482be80a
BLAKE2b-256 be91deab13993539d5360e7de9d5dfcb97c425362e08f67f2a9457271754c296

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8963ab257cb83da9e986757ffd3e5f66150e32fd934943482307f96e2255b6f0
MD5 beb42d16c303dea2c32fe4445d85aba5
BLAKE2b-256 291f031903f257f1ce47f7bc06a9a573570a1afff6cc7bce2881707bc3b50d93

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pycmsgen-6.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 252.2 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 pycmsgen-6.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e1b51c3c1123e842573bd37ec4396112a170d58bbec63bdca53a6d8bb8ad5c63
MD5 9b9a240efcd1ebb55e93214aae8f89b1
BLAKE2b-256 a853d0852f97d19174c0f111a7fc3b451aa10fa3855e1d79f976e709367a7557

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f34b422b136a697c79395f92ab22ae3cad8ad9c171cc6a7c7c5912eebafa4f0
MD5 3c110f3633f8f589e49d30da432e8751
BLAKE2b-256 e5e4e0797a8bdd6288771c7f85b4ab6ebaa311f11f36cff344913450490d624c

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af39276f4e3a883a1dc56d9029c2012d5cf9d7787604574af89059df9fa00660
MD5 be8f5994f0a8f5c002446ac41e3b32e4
BLAKE2b-256 9d1279d2d902e165ab3734b1ef68a9c93e306a55be4e7ccf77a256312ca65262

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pycmsgen-6.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 252.6 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 pycmsgen-6.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2d97bb172b5f706efc788cc6c2dd509ec6dfff97bb982a981d54022d47eca3ee
MD5 9bd770df75ff77de992bc666cbbd7402
BLAKE2b-256 eec685d03593cb6d5609180da749735e4211a92dfe1e0fd1f8470786df5d37d6

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d0292489c09461970abfca24a448e988a8058cf76bbea6a30e8cae35fe5dba7
MD5 3f44f6a40af8f8e3e990e5ed777a6c9c
BLAKE2b-256 3a986b387a6524874eea40ed7aff9f39793bd670012a9369515a973b355da67d

See more details on using hashes here.

File details

Details for the file pycmsgen-6.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycmsgen-6.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fb19a76ecc0296224f47c33efc34a3767113ce9716bd397558579cab17c69fe
MD5 eb08a9830b6eb41da396878c6528127a
BLAKE2b-256 4763905e05d3852c6ce4272ea2aee9cfead25323ad7261b471dbb0a1a3892fa4

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