Name | drand-verify JSON |
Version |
0.2.1
JSON |
| download |
home_page | None |
Summary | Verify drand beacons and derive their randomness. |
upload_time | 2023-09-16 10:20:12 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.7 |
license | None |
keywords |
drand
cryptography
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# A python interface for drand-verify
## Based on [drand-verify](https://github.com/noislabs/drand-verify)
### Made with [PyO3](https://github.com/PyO3/pyo3)
## Installation
Install from [PyPi](https://pypi.org/project/drand-verify/)
```
pip install drand-verify
```
Alternatively, you can build from source using [maturin](https://github.com/PyO3/maturin) (requires cargo and PyO3)
```
git clone https://github.com/very-lame-username/python-drand-verify.git
cd python-drand-verify
pip install maturin
maturin build --release
pip install ./target/wheels/whatever-the-wheel-is-called.whl
```
## Usage
#### Returns the randomness for the given round if the input is valid.
#### Attempting to verify an invalid/incorrect input will raise a `ValueError`.
```py
import drand_verify as drv
# round, previous signature, signature, public key (optional, defaults to League of Entropy mainnet key)
drv.verify_mainnet(3311596, "8ed588f2a7716fb1349e2d9803da5db0005e98a83783c353d4a08f183236a9ad91d70ddb01266f4b7c576983db464b430e65680b9e0098552758afd6c1e6afcb77e3f62fe1b93d42d1cb63abbb2205512fe12fbf74ea9c5ac3b8f5c1e283a1d8", "a696b9409ababce45749c3a4ec369074453dd4a79967734e1390d969c8ad8d98897d217b9121e92c8ddebbddda8d92f900e3bd6bf9deb166863b1a19390d743f82774001487594c5c09e581db7365f02b70a2c8cc41ce32446ef08e4890c4754")
>>> '647c07b2abbf7ff2afb4d670214f565e5cd9f9c91bfdcecb59a21f3c78d73920'
# round, signature, public key (optional, defaults to League of Entropy quicknet key)
drv.verify_quicknet(657413, "b713718a38ae728dfd477991af2822e08d2f305e47718cef9f7848ce4050e7be41076862b98fad56e91a6b85b89cd97b")
>>> 'fc1873a13f3545aeade8401532ef5519920652eee6b0d2b19ca12643b87b3587'
# fastnet, deprecated round, signature public key
drv.verify_bls_unchained_on_g1(5713537, "9391bf57538cf1c0012fabc0d933408d21f785324bcbb4f9850503e5a31e268f6e523e1c1db91ab4bf950752474e1580", "a0b862a7527fee3a731bcb59280ab6abd62d5c0b6ea03dc4ddf6612fdfc9d01f01c31542541771903475eb1ec6615f8d0df0b8b6dce385811d6dcf8cbefb8759e5e616a3dfd054c928940766d9a5b9db91e3b697e5d70a975181e007f87fca5e")
>>> '5cb6e1643c07234ce4b89ed5b0ced4a2336c729edf2f6138b16a74618d6df6b7'
# attempting to verify an invalid beacon
drv.verify_quicknet(657414, "b713718a38ae728dfd477991af2822e08d2f305e47718cef9f7848ce4050e7be41076862b98fad56e91a6b85b89cd97b")
>>> ValueError: Verification Failed
```
- `verify_mainnet` is an alias of `verify_pedersen_bls_chained` with the public key defaulting to the LOE mainnet key
- `verify_quicknet` is an alias of `verify_bls_unchained_g1_rfc9380` with the public key defaulting to the LOE quicknet key
Raw data
{
"_id": null,
"home_page": null,
"name": "drand-verify",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "drand,cryptography",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/de/39/e84c48c8a7537b260ae6d5b4aea0350b15efaf992f7c1293c23d40ec7e37/drand_verify-0.2.1.tar.gz",
"platform": null,
"description": "# A python interface for drand-verify\n\n## Based on [drand-verify](https://github.com/noislabs/drand-verify)\n### Made with [PyO3](https://github.com/PyO3/pyo3)\n\n## Installation\nInstall from [PyPi](https://pypi.org/project/drand-verify/)\n\n```\npip install drand-verify\n```\n\nAlternatively, you can build from source using [maturin](https://github.com/PyO3/maturin) (requires cargo and PyO3)\n```\ngit clone https://github.com/very-lame-username/python-drand-verify.git\ncd python-drand-verify\npip install maturin\nmaturin build --release\npip install ./target/wheels/whatever-the-wheel-is-called.whl\n```\n\n## Usage\n\n#### Returns the randomness for the given round if the input is valid.\n#### Attempting to verify an invalid/incorrect input will raise a `ValueError`.\n\n```py\nimport drand_verify as drv\n\n# round, previous signature, signature, public key (optional, defaults to League of Entropy mainnet key)\ndrv.verify_mainnet(3311596, \"8ed588f2a7716fb1349e2d9803da5db0005e98a83783c353d4a08f183236a9ad91d70ddb01266f4b7c576983db464b430e65680b9e0098552758afd6c1e6afcb77e3f62fe1b93d42d1cb63abbb2205512fe12fbf74ea9c5ac3b8f5c1e283a1d8\", \"a696b9409ababce45749c3a4ec369074453dd4a79967734e1390d969c8ad8d98897d217b9121e92c8ddebbddda8d92f900e3bd6bf9deb166863b1a19390d743f82774001487594c5c09e581db7365f02b70a2c8cc41ce32446ef08e4890c4754\")\n>>> '647c07b2abbf7ff2afb4d670214f565e5cd9f9c91bfdcecb59a21f3c78d73920'\n\n# round, signature, public key (optional, defaults to League of Entropy quicknet key)\ndrv.verify_quicknet(657413, \"b713718a38ae728dfd477991af2822e08d2f305e47718cef9f7848ce4050e7be41076862b98fad56e91a6b85b89cd97b\")\n>>> 'fc1873a13f3545aeade8401532ef5519920652eee6b0d2b19ca12643b87b3587'\n\n# fastnet, deprecated round, signature public key\ndrv.verify_bls_unchained_on_g1(5713537, \"9391bf57538cf1c0012fabc0d933408d21f785324bcbb4f9850503e5a31e268f6e523e1c1db91ab4bf950752474e1580\", \"a0b862a7527fee3a731bcb59280ab6abd62d5c0b6ea03dc4ddf6612fdfc9d01f01c31542541771903475eb1ec6615f8d0df0b8b6dce385811d6dcf8cbefb8759e5e616a3dfd054c928940766d9a5b9db91e3b697e5d70a975181e007f87fca5e\")\n>>> '5cb6e1643c07234ce4b89ed5b0ced4a2336c729edf2f6138b16a74618d6df6b7'\n\n# attempting to verify an invalid beacon\ndrv.verify_quicknet(657414, \"b713718a38ae728dfd477991af2822e08d2f305e47718cef9f7848ce4050e7be41076862b98fad56e91a6b85b89cd97b\")\n>>> ValueError: Verification Failed\n```\n\n- `verify_mainnet` is an alias of `verify_pedersen_bls_chained` with the public key defaulting to the LOE mainnet key\n- `verify_quicknet` is an alias of `verify_bls_unchained_g1_rfc9380` with the public key defaulting to the LOE quicknet key\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Verify drand beacons and derive their randomness.",
"version": "0.2.1",
"project_urls": {
"Homepage": "https://github.com/very-lame-username/python-drand-verify"
},
"split_keywords": [
"drand",
"cryptography"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "e521ce502ad3971949f7d53808f5467de484218202ca0a6a763dc47507a85e65",
"md5": "478cac70f5827485e352d969d3d40f3e",
"sha256": "8e3e482f1962060a44ac7a470f3c5a405d88bc12b715a139ece08a134168bf42"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "478cac70f5827485e352d969d3d40f3e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 355903,
"upload_time": "2023-09-16T10:17:26",
"upload_time_iso_8601": "2023-09-16T10:17:26.443760Z",
"url": "https://files.pythonhosted.org/packages/e5/21/ce502ad3971949f7d53808f5467de484218202ca0a6a763dc47507a85e65/drand_verify-0.2.1-cp310-cp310-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e21a6799e1270c131b4023eae34fac1ece0c6f891278743595b837bbb82e969f",
"md5": "b3ca9a94a0c788b5cd9fbf921fd576db",
"sha256": "02597ba3d98610ab1936b28f627a4c444b698537223f6b76e6b0aae05b50e932"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b3ca9a94a0c788b5cd9fbf921fd576db",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 345214,
"upload_time": "2023-09-16T10:17:28",
"upload_time_iso_8601": "2023-09-16T10:17:28.267465Z",
"url": "https://files.pythonhosted.org/packages/e2/1a/6799e1270c131b4023eae34fac1ece0c6f891278743595b837bbb82e969f/drand_verify-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b77ed435811021d027a30399b8c633f8720f8ada69b521cd2f68812d1b14d3b4",
"md5": "9df5b414acd2d357ea3cf1574a8983c8",
"sha256": "95b5eea07a445968f09e0d6b3caa53f6a3ad902455fdb189cb568e23e5a15d14"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9df5b414acd2d357ea3cf1574a8983c8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1264641,
"upload_time": "2023-09-16T10:17:30",
"upload_time_iso_8601": "2023-09-16T10:17:30.134256Z",
"url": "https://files.pythonhosted.org/packages/b7/7e/d435811021d027a30399b8c633f8720f8ada69b521cd2f68812d1b14d3b4/drand_verify-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94cb3d7d24f4ea1fba1de667c7e31bda0ab8472646957855e3d8a116bca3f3ef",
"md5": "4c6d9ae63f3d05cfa46765938dad2b06",
"sha256": "3433126b735b4f665ad26d0b6f73064a1829211f498dc42e4f1ffe9411287b48"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4c6d9ae63f3d05cfa46765938dad2b06",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1396268,
"upload_time": "2023-09-16T10:17:31",
"upload_time_iso_8601": "2023-09-16T10:17:31.942813Z",
"url": "https://files.pythonhosted.org/packages/94/cb/3d7d24f4ea1fba1de667c7e31bda0ab8472646957855e3d8a116bca3f3ef/drand_verify-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12f373f034cb1499a18a123b4e849e8acab104443e0d501010953a3876a36a52",
"md5": "0f910a0de8ce81d20dc3896b1efb2639",
"sha256": "dbb88018bdc9f5b80a8d7f85a68b656201cda2992ccdb542ce2136d03f85adf4"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0f910a0de8ce81d20dc3896b1efb2639",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1406569,
"upload_time": "2023-09-16T10:17:33",
"upload_time_iso_8601": "2023-09-16T10:17:33.873779Z",
"url": "https://files.pythonhosted.org/packages/12/f3/73f034cb1499a18a123b4e849e8acab104443e0d501010953a3876a36a52/drand_verify-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1194e98a3c880e8ff77a23215e26002abb6ac00a1f6def3efefd6f21ba27e454",
"md5": "5f46d96c30ed52d28d4141578a8bac5e",
"sha256": "8dd2d316e2b112adeff54380364cc22ea051f84e0059718e229fee4227f1cd87"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5f46d96c30ed52d28d4141578a8bac5e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1442512,
"upload_time": "2023-09-16T10:17:35",
"upload_time_iso_8601": "2023-09-16T10:17:35.792101Z",
"url": "https://files.pythonhosted.org/packages/11/94/e98a3c880e8ff77a23215e26002abb6ac00a1f6def3efefd6f21ba27e454/drand_verify-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94f29265531bcf245810a67782f9e693e8052a5efe81afb895e3607536a1b657",
"md5": "d8cd64abfc2131b707e407051c09ddab",
"sha256": "0d39179cf59cfd67a1dd3db2e7b79f975502f75b1ea2c83c423f3cb4b6c5d675"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d8cd64abfc2131b707e407051c09ddab",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1253845,
"upload_time": "2023-09-16T10:17:37",
"upload_time_iso_8601": "2023-09-16T10:17:37.659958Z",
"url": "https://files.pythonhosted.org/packages/94/f2/9265531bcf245810a67782f9e693e8052a5efe81afb895e3607536a1b657/drand_verify-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1d96787b4f2e5b0afbd1d2091c3c6aedda55f8ddb681e0bf1b932f39bfec757",
"md5": "cee504d983ec447a41d36381a67eac81",
"sha256": "6109ea2d1cd8c5a6c2338602393b15952bf0b38a71219cd0e24ae60151013390"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "cee504d983ec447a41d36381a67eac81",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1366719,
"upload_time": "2023-09-16T10:17:39",
"upload_time_iso_8601": "2023-09-16T10:17:39.522854Z",
"url": "https://files.pythonhosted.org/packages/d1/d9/6787b4f2e5b0afbd1d2091c3c6aedda55f8ddb681e0bf1b932f39bfec757/drand_verify-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ff9ac0cbd79607ed09db09b662afaa845120238db480706e0087221c8790fed",
"md5": "dc0dd7131f5d7f930ee0e07aae49c8c1",
"sha256": "bfff40cfcfff31cf06fa56b037e5404388f77e202a4500cae06fd702216e7fa9"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "dc0dd7131f5d7f930ee0e07aae49c8c1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1364364,
"upload_time": "2023-09-16T10:17:41",
"upload_time_iso_8601": "2023-09-16T10:17:41.364281Z",
"url": "https://files.pythonhosted.org/packages/1f/f9/ac0cbd79607ed09db09b662afaa845120238db480706e0087221c8790fed/drand_verify-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38a871e6ff547d5015eb2b13903e2acd46de7915bc116183baa63987b9474bd1",
"md5": "5fa0faa8976c7c7b1036629d9a7eb73c",
"sha256": "096e16d23590e6fe05c06d6603e5ac36b28b1623853a617bd24dfede35481222"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5fa0faa8976c7c7b1036629d9a7eb73c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1362066,
"upload_time": "2023-09-16T10:17:42",
"upload_time_iso_8601": "2023-09-16T10:17:42.760930Z",
"url": "https://files.pythonhosted.org/packages/38/a8/71e6ff547d5015eb2b13903e2acd46de7915bc116183baa63987b9474bd1/drand_verify-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "363422896599b4751774e03c172596facc74df2efb3a5412c36f62d32edb6402",
"md5": "80bc02823e4d42340301a7a1eaf64647",
"sha256": "80efada9e8b28e096bceecffd4892b953ad2caff70a71a5f095dc5b9b8daec3a"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "80bc02823e4d42340301a7a1eaf64647",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 262338,
"upload_time": "2023-09-16T10:17:44",
"upload_time_iso_8601": "2023-09-16T10:17:44.292113Z",
"url": "https://files.pythonhosted.org/packages/36/34/22896599b4751774e03c172596facc74df2efb3a5412c36f62d32edb6402/drand_verify-0.2.1-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e525475ca54b2b3023a99679bf0ad838830e9aaf0f3a5b6ff77cc2b73f755c8",
"md5": "c77dedccaec5b410964fea5799afe928",
"sha256": "66b9fec80eeb877dc7bb53f049bf594cf27e58352474d35d9f31913060ab4dbd"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "c77dedccaec5b410964fea5799afe928",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 217904,
"upload_time": "2023-09-16T10:17:45",
"upload_time_iso_8601": "2023-09-16T10:17:45.541598Z",
"url": "https://files.pythonhosted.org/packages/0e/52/5475ca54b2b3023a99679bf0ad838830e9aaf0f3a5b6ff77cc2b73f755c8/drand_verify-0.2.1-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec84ce6efdf5774282d2b681ff50de4e734cea805ba99c67ffe380168fd03e23",
"md5": "665466ca8c158cc9b62fa9bc2e771ef7",
"sha256": "b208fe3bba4d93761a40f5d0cb2073c6616825bbdddcf5506e8a75207390210c"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "665466ca8c158cc9b62fa9bc2e771ef7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 355909,
"upload_time": "2023-09-16T10:17:47",
"upload_time_iso_8601": "2023-09-16T10:17:47.395091Z",
"url": "https://files.pythonhosted.org/packages/ec/84/ce6efdf5774282d2b681ff50de4e734cea805ba99c67ffe380168fd03e23/drand_verify-0.2.1-cp311-cp311-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6bd4fd2c3ebb2382b0490c40fe00d7a9468c30148b0f6ee5d7ad407e9a38aeec",
"md5": "83e43f8dd4ab7ff483c535d282881104",
"sha256": "7039cb72d571903fd70822afcb760801bf398d4f020bcc8a0fd1c6ff6dab1fa1"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "83e43f8dd4ab7ff483c535d282881104",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 345218,
"upload_time": "2023-09-16T10:17:49",
"upload_time_iso_8601": "2023-09-16T10:17:49.069186Z",
"url": "https://files.pythonhosted.org/packages/6b/d4/fd2c3ebb2382b0490c40fe00d7a9468c30148b0f6ee5d7ad407e9a38aeec/drand_verify-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e756f3345c234671f29663c4751ecc16e71063d8435f00506423a76b98d7a25",
"md5": "32aa2b2d7780ad0f3c52f5fd893ca1cd",
"sha256": "f83bbe74ffd4e33de43592d8a17dc2c22e7979c5417896e2b2440f58a0593354"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "32aa2b2d7780ad0f3c52f5fd893ca1cd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1264700,
"upload_time": "2023-09-16T10:17:50",
"upload_time_iso_8601": "2023-09-16T10:17:50.842788Z",
"url": "https://files.pythonhosted.org/packages/2e/75/6f3345c234671f29663c4751ecc16e71063d8435f00506423a76b98d7a25/drand_verify-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a96b3d916c4f43d999c0fa809bc75c0f6210fa4e01357ccd1d71c08e4623f11",
"md5": "0b0c20b3669d4702f31b9c345221e29d",
"sha256": "6eab7db2e422648e789a1baae3194b473279d326f4df202e5622038f2002a9b9"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0b0c20b3669d4702f31b9c345221e29d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1396264,
"upload_time": "2023-09-16T10:17:52",
"upload_time_iso_8601": "2023-09-16T10:17:52.696974Z",
"url": "https://files.pythonhosted.org/packages/9a/96/b3d916c4f43d999c0fa809bc75c0f6210fa4e01357ccd1d71c08e4623f11/drand_verify-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86def24f93b8082d6ee86a3d2c30cb94786a43bb7d4d57a7d133c7af23874f5d",
"md5": "f4c632d08031b1e9713f646ad2bb4d27",
"sha256": "5a56262dab5adcfc1b839a659c56fa57a73bff5cc4e2e9dd1c44ca38fd77390e"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f4c632d08031b1e9713f646ad2bb4d27",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1406621,
"upload_time": "2023-09-16T10:17:54",
"upload_time_iso_8601": "2023-09-16T10:17:54.312329Z",
"url": "https://files.pythonhosted.org/packages/86/de/f24f93b8082d6ee86a3d2c30cb94786a43bb7d4d57a7d133c7af23874f5d/drand_verify-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a461b447017964988430377a620f1511ffa3f4dcb5c5cba316e9e4e22845d00d",
"md5": "48250e742b0bab08601f007fa2fd980c",
"sha256": "827e56bc4fdf4caf05f90b86bc9dd0d2f879578fb4e2b932118cae0e31983bf9"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "48250e742b0bab08601f007fa2fd980c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1442574,
"upload_time": "2023-09-16T10:17:55",
"upload_time_iso_8601": "2023-09-16T10:17:55.710641Z",
"url": "https://files.pythonhosted.org/packages/a4/61/b447017964988430377a620f1511ffa3f4dcb5c5cba316e9e4e22845d00d/drand_verify-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9b836de3916898dcb2c6247852a70280394628555ebb95733d0cbc4f65623ef",
"md5": "bc2868d0aff8a5e482cad71d65642e48",
"sha256": "b5676f62d1953db95ec98ae8a94befcf1668cb58226f8f9fa53998ff0b81d933"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bc2868d0aff8a5e482cad71d65642e48",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1253865,
"upload_time": "2023-09-16T10:17:57",
"upload_time_iso_8601": "2023-09-16T10:17:57.106263Z",
"url": "https://files.pythonhosted.org/packages/d9/b8/36de3916898dcb2c6247852a70280394628555ebb95733d0cbc4f65623ef/drand_verify-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b5383785c1e3a9aa62483865b87ff72d24f9a97824c2833c8d3657b49dcc845",
"md5": "e39969ced09bbd28a0bf5cf6aa2b849f",
"sha256": "e122db5872b8b64c59f337e90a2aa69861937bb377c4e950e6a7f46c166c0601"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e39969ced09bbd28a0bf5cf6aa2b849f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1366755,
"upload_time": "2023-09-16T10:17:58",
"upload_time_iso_8601": "2023-09-16T10:17:58.964823Z",
"url": "https://files.pythonhosted.org/packages/6b/53/83785c1e3a9aa62483865b87ff72d24f9a97824c2833c8d3657b49dcc845/drand_verify-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e2c95fe86a021f2e99f8f87d3c3ea5629a05f421f83cccac83c56007355070a",
"md5": "581a30ec4ae89c707a238f3068d1fdbb",
"sha256": "a28a65f8dadd2c1b64eb4d3b8ddf5ee639135f42b79bb91ded13ae0e920b6b71"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "581a30ec4ae89c707a238f3068d1fdbb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1364410,
"upload_time": "2023-09-16T10:18:00",
"upload_time_iso_8601": "2023-09-16T10:18:00.442463Z",
"url": "https://files.pythonhosted.org/packages/6e/2c/95fe86a021f2e99f8f87d3c3ea5629a05f421f83cccac83c56007355070a/drand_verify-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1ead65e63c6a227e9f39876cc1b38954a0bb8c58be0b5d0737b8e7e0775375b",
"md5": "35cbcfc772f7ca04963436d11d03759f",
"sha256": "e9886c36868438d5164ea9d0a9d2337daadfed4e20de4c170028152cd29b187a"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "35cbcfc772f7ca04963436d11d03759f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1362162,
"upload_time": "2023-09-16T10:18:02",
"upload_time_iso_8601": "2023-09-16T10:18:02.324295Z",
"url": "https://files.pythonhosted.org/packages/d1/ea/d65e63c6a227e9f39876cc1b38954a0bb8c58be0b5d0737b8e7e0775375b/drand_verify-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b4f5d3f2adbb8bb6416d95d35624fd8c5ffac8af7fd967b5e3dd1bfcc97ca42",
"md5": "179d2ba2c7d198c9bd54c14f2748c659",
"sha256": "543405c4613339ca1e9a3371bbd0b6fd68cd56caedb6c868d69e5b3971539cce"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "179d2ba2c7d198c9bd54c14f2748c659",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 262336,
"upload_time": "2023-09-16T10:18:03",
"upload_time_iso_8601": "2023-09-16T10:18:03.597338Z",
"url": "https://files.pythonhosted.org/packages/6b/4f/5d3f2adbb8bb6416d95d35624fd8c5ffac8af7fd967b5e3dd1bfcc97ca42/drand_verify-0.2.1-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "45d45422fcb6a3a95a032cf849f9bc11d4ae022bc683c9c25fd6e3fe5cf8eb4c",
"md5": "bc4d931ba34e883247b33afab6393cf8",
"sha256": "8440cbf7c0a714e3cd701c2f51ef2cc564ea9a42252e65caffca41b85171d750"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "bc4d931ba34e883247b33afab6393cf8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 217908,
"upload_time": "2023-09-16T10:18:04",
"upload_time_iso_8601": "2023-09-16T10:18:04.987285Z",
"url": "https://files.pythonhosted.org/packages/45/d4/5422fcb6a3a95a032cf849f9bc11d4ae022bc683c9c25fd6e3fe5cf8eb4c/drand_verify-0.2.1-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a9c42e830bddc60e388fe2223a57f041d153b003c53f65358a3a3366500066a",
"md5": "93072127b7d48fdeacd01a4f96f92bd3",
"sha256": "5d038cac77760ebf303f4e37ad884e9816dd51cacc9fe71b5172b63f19b4ea59"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "93072127b7d48fdeacd01a4f96f92bd3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 355424,
"upload_time": "2023-09-16T10:18:06",
"upload_time_iso_8601": "2023-09-16T10:18:06.205817Z",
"url": "https://files.pythonhosted.org/packages/8a/9c/42e830bddc60e388fe2223a57f041d153b003c53f65358a3a3366500066a/drand_verify-0.2.1-cp312-cp312-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e729c2a0ccaa00b10976f6dc19990b3a687b4d41819f42d7561e19989c20a71b",
"md5": "d147edff2d891aa2da9a3f0c322e12cb",
"sha256": "278d2426ce399ee1411d6b6eab69d70228b10eee727edbb559ff909d78c84262"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d147edff2d891aa2da9a3f0c322e12cb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 344490,
"upload_time": "2023-09-16T10:18:07",
"upload_time_iso_8601": "2023-09-16T10:18:07.471699Z",
"url": "https://files.pythonhosted.org/packages/e7/29/c2a0ccaa00b10976f6dc19990b3a687b4d41819f42d7561e19989c20a71b/drand_verify-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8fde0640ad8c6e308472af2382a8790efcb4174ef33bb2edb00b57be5d5a180",
"md5": "39143d4b933514848eed4ace0d155eff",
"sha256": "1737b7b122caecf0f044f5b2111a8f3ab99cf848ad861422a1067985d2a0fbe5"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "39143d4b933514848eed4ace0d155eff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1263744,
"upload_time": "2023-09-16T10:18:09",
"upload_time_iso_8601": "2023-09-16T10:18:09.296594Z",
"url": "https://files.pythonhosted.org/packages/f8/fd/e0640ad8c6e308472af2382a8790efcb4174ef33bb2edb00b57be5d5a180/drand_verify-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d295d528be388e5908e6b18e269a968b391bb79b24cef30de50ba2b57c559310",
"md5": "3313df064f6cb63519f9474b01aba486",
"sha256": "51c56d710b8ef7d5ba95c6d0ae269f06f177751c4595d983141f991605e66b7c"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "3313df064f6cb63519f9474b01aba486",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1395247,
"upload_time": "2023-09-16T10:18:11",
"upload_time_iso_8601": "2023-09-16T10:18:11.031644Z",
"url": "https://files.pythonhosted.org/packages/d2/95/d528be388e5908e6b18e269a968b391bb79b24cef30de50ba2b57c559310/drand_verify-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86ea7ee207d04630ffb06fb30aeee9dab1f1b3dfe792aafe799fc98b7a404817",
"md5": "0a6b84641d1926512554db6ea1a72bcf",
"sha256": "e27cad9c04a277c22bea5e82137368710a9ed08d6940ee854b4685059bff2b9b"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0a6b84641d1926512554db6ea1a72bcf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1412281,
"upload_time": "2023-09-16T10:18:12",
"upload_time_iso_8601": "2023-09-16T10:18:12.759458Z",
"url": "https://files.pythonhosted.org/packages/86/ea/7ee207d04630ffb06fb30aeee9dab1f1b3dfe792aafe799fc98b7a404817/drand_verify-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "610a66429acde81cdf8e3b2edea4ad532f8f2e2e7fe558d3a4472a5f90df5891",
"md5": "6c1d099ba4ee3cac023634fa53380da4",
"sha256": "3030cee4d3adf9a6c4bd870f27b3a5bd67e89318cbdf0ae2dabb4c5bdaa21e0e"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6c1d099ba4ee3cac023634fa53380da4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1431774,
"upload_time": "2023-09-16T10:18:14",
"upload_time_iso_8601": "2023-09-16T10:18:14.752530Z",
"url": "https://files.pythonhosted.org/packages/61/0a/66429acde81cdf8e3b2edea4ad532f8f2e2e7fe558d3a4472a5f90df5891/drand_verify-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f3c27d9f2443a7b93aafb99fabb7c62dca85541dfdac07047c97c0df0e939dd",
"md5": "83cab2c7d4023c616a10efaa3d16a2b7",
"sha256": "84834cc95ca3dde2e1d1fc2050a11b97d3a0639182f25d6ff9b7e45722d4c3f8"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "83cab2c7d4023c616a10efaa3d16a2b7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1253755,
"upload_time": "2023-09-16T10:18:16",
"upload_time_iso_8601": "2023-09-16T10:18:16.306275Z",
"url": "https://files.pythonhosted.org/packages/1f/3c/27d9f2443a7b93aafb99fabb7c62dca85541dfdac07047c97c0df0e939dd/drand_verify-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d59c1b869c5f74d2367941badecbe50d998ef102db55be138a6420afa7eab7c",
"md5": "61413551f3ed70b93033bdf4cde61922",
"sha256": "84bbd075da260b9f9bd9b98289d3519b44a5cc5d6742e88d18873bcdfc10bf10"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "61413551f3ed70b93033bdf4cde61922",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1364594,
"upload_time": "2023-09-16T10:18:17",
"upload_time_iso_8601": "2023-09-16T10:18:17.786546Z",
"url": "https://files.pythonhosted.org/packages/3d/59/c1b869c5f74d2367941badecbe50d998ef102db55be138a6420afa7eab7c/drand_verify-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "40c075eb7e2e32555e07fef5f03ec57e7361e958808cb5c273bc73d5b8dc027f",
"md5": "9874b952b50ebcc259fc6819c3b4217f",
"sha256": "5667e2e880b214a493f64585385ffa0aedc4fbf29b738c3727096d808ca443d4"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9874b952b50ebcc259fc6819c3b4217f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1363178,
"upload_time": "2023-09-16T10:18:19",
"upload_time_iso_8601": "2023-09-16T10:18:19.663470Z",
"url": "https://files.pythonhosted.org/packages/40/c0/75eb7e2e32555e07fef5f03ec57e7361e958808cb5c273bc73d5b8dc027f/drand_verify-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "776728b19501c30dbc8800c3edc75616e1e5dbd866d8fc65c8139cc360c07613",
"md5": "26e79de01248d757346298dbbcf37e0c",
"sha256": "feb6a123bea129d866ba14cd85f323d774ed3e0bba9586549f32a47a67e8d170"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "26e79de01248d757346298dbbcf37e0c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1361888,
"upload_time": "2023-09-16T10:18:20",
"upload_time_iso_8601": "2023-09-16T10:18:20.995838Z",
"url": "https://files.pythonhosted.org/packages/77/67/28b19501c30dbc8800c3edc75616e1e5dbd866d8fc65c8139cc360c07613/drand_verify-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd1c37aa4652123385203133215c8603916bf8df18f4dcb3631967eda3c6e17b",
"md5": "fbce271c6a507889b2886b5e37c67894",
"sha256": "b5221a9cc56cd5035efe85ed326b99451af74ff11d50a21364530989113d8afe"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "fbce271c6a507889b2886b5e37c67894",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 261589,
"upload_time": "2023-09-16T10:18:22",
"upload_time_iso_8601": "2023-09-16T10:18:22.419458Z",
"url": "https://files.pythonhosted.org/packages/dd/1c/37aa4652123385203133215c8603916bf8df18f4dcb3631967eda3c6e17b/drand_verify-0.2.1-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e9af2876bfd5d041b7f6bac3695b12a552b6a89695bcb5df12aa65e77c7e45f",
"md5": "ad624b05762e5712a12db1438a1f1cb9",
"sha256": "78d3179160a9c78c070a325b53c2c066581781c379ea78c4bdbebe60422dac3a"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "ad624b05762e5712a12db1438a1f1cb9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 217506,
"upload_time": "2023-09-16T10:18:23",
"upload_time_iso_8601": "2023-09-16T10:18:23.659074Z",
"url": "https://files.pythonhosted.org/packages/7e/9a/f2876bfd5d041b7f6bac3695b12a552b6a89695bcb5df12aa65e77c7e45f/drand_verify-0.2.1-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15bd3e67dad6e98dc161dc440cbfbf6b40e3bb834f20dd3dcd8a4d11d8d24eb4",
"md5": "c9b5931aa7dde5ad9680763588c3bd43",
"sha256": "3352528dd0865ec7f3a31ca28c31ce1097cf4f29e1c9f7170d3decc52125ad9a"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "c9b5931aa7dde5ad9680763588c3bd43",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 356070,
"upload_time": "2023-09-16T10:18:25",
"upload_time_iso_8601": "2023-09-16T10:18:25.386306Z",
"url": "https://files.pythonhosted.org/packages/15/bd/3e67dad6e98dc161dc440cbfbf6b40e3bb834f20dd3dcd8a4d11d8d24eb4/drand_verify-0.2.1-cp37-cp37m-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aba2928e4e8ee6cd3c35a75712b486e1630a6c4a30234878ed805eae9ba6a6c0",
"md5": "e09373d92612aa45633ce99a6579c064",
"sha256": "55b9904342d0899c2a464042cfc018efb94e5459b3ec0ada36d118bdb862accf"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e09373d92612aa45633ce99a6579c064",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 344730,
"upload_time": "2023-09-16T10:18:26",
"upload_time_iso_8601": "2023-09-16T10:18:26.818002Z",
"url": "https://files.pythonhosted.org/packages/ab/a2/928e4e8ee6cd3c35a75712b486e1630a6c4a30234878ed805eae9ba6a6c0/drand_verify-0.2.1-cp37-cp37m-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "626432db378e30dcf48f657f882979f4e07ac29ae75d569b749d0e8cb45cccf0",
"md5": "9362c698f377c7e810b87ec29d131689",
"sha256": "5c1de9c433d34112a33ce615f751efa70799bcee9853badd5a25ea997bbc7062"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9362c698f377c7e810b87ec29d131689",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1264423,
"upload_time": "2023-09-16T10:18:28",
"upload_time_iso_8601": "2023-09-16T10:18:28.097743Z",
"url": "https://files.pythonhosted.org/packages/62/64/32db378e30dcf48f657f882979f4e07ac29ae75d569b749d0e8cb45cccf0/drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3aa88e8cbef77e098f20486100c1857f40357b610a88ec4c8d997bb42db1eec9",
"md5": "cadb4df87199f0855aef40c2732ca276",
"sha256": "2a4a6bc413a59cc2ca9264e69aa71ca196b47517a8c25401c377e01e2a779e45"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "cadb4df87199f0855aef40c2732ca276",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1396195,
"upload_time": "2023-09-16T10:18:29",
"upload_time_iso_8601": "2023-09-16T10:18:29.593543Z",
"url": "https://files.pythonhosted.org/packages/3a/a8/8e8cbef77e098f20486100c1857f40357b610a88ec4c8d997bb42db1eec9/drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a7050989a35b2d3db81c3d6d7dc8e16dcdcc05173fa224067c7a0a4bd0ea30e",
"md5": "41372d0fa6801dde42899906d2501797",
"sha256": "0c59cf7624ddede84825da7d98925b35e0c1ba489fbbae965e6134d38db304c5"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "41372d0fa6801dde42899906d2501797",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1406819,
"upload_time": "2023-09-16T10:18:31",
"upload_time_iso_8601": "2023-09-16T10:18:31.024001Z",
"url": "https://files.pythonhosted.org/packages/1a/70/50989a35b2d3db81c3d6d7dc8e16dcdcc05173fa224067c7a0a4bd0ea30e/drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ea5a6de54776c9df7e87b254fe36b86b3993000ec918356f059745ff373b690",
"md5": "0fe64e8f7f4a46fb160427d76d1fc01f",
"sha256": "c0af7f80f92712d43d606609b4ba372ef9dd24607fc5ef7dda28b7830bb50d16"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0fe64e8f7f4a46fb160427d76d1fc01f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1442598,
"upload_time": "2023-09-16T10:18:32",
"upload_time_iso_8601": "2023-09-16T10:18:32.452781Z",
"url": "https://files.pythonhosted.org/packages/7e/a5/a6de54776c9df7e87b254fe36b86b3993000ec918356f059745ff373b690/drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "381bc32bdaafb4aa83027cd1d4f987ac32205cb5afb1b14d3314fb57397710e2",
"md5": "55ba90424c17c4e5539c5fa35e3ce721",
"sha256": "4b095d3decfac0f13df69e6cda0bcfcb12a9e71d737539647d3945a896d0dd33"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "55ba90424c17c4e5539c5fa35e3ce721",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1253683,
"upload_time": "2023-09-16T10:18:33",
"upload_time_iso_8601": "2023-09-16T10:18:33.818609Z",
"url": "https://files.pythonhosted.org/packages/38/1b/c32bdaafb4aa83027cd1d4f987ac32205cb5afb1b14d3314fb57397710e2/drand_verify-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9841e76f5dca8d4c2f9e785ec4f87e906b0f5dde606292b5e95ba6088f39297f",
"md5": "f58fbfb3a1fc0f8afb50544df6028681",
"sha256": "ba6c995ef3c33dcd505d6073683c0efadec6526f5a0d38aa4a4b683156e95fce"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f58fbfb3a1fc0f8afb50544df6028681",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1366520,
"upload_time": "2023-09-16T10:18:35",
"upload_time_iso_8601": "2023-09-16T10:18:35.138957Z",
"url": "https://files.pythonhosted.org/packages/98/41/e76f5dca8d4c2f9e785ec4f87e906b0f5dde606292b5e95ba6088f39297f/drand_verify-0.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c437a67aa155bc2aaaa7b8525bb785611bee69dffbb6ab0c50dade70508631f1",
"md5": "f92b4c5e9568dcb6622aa3e1decc7558",
"sha256": "4ef56ec96bcf2ad08cd08e8104fc36bac07874954285ae2142db92171e26a66c"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f92b4c5e9568dcb6622aa3e1decc7558",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1364200,
"upload_time": "2023-09-16T10:18:37",
"upload_time_iso_8601": "2023-09-16T10:18:37.156670Z",
"url": "https://files.pythonhosted.org/packages/c4/37/a67aa155bc2aaaa7b8525bb785611bee69dffbb6ab0c50dade70508631f1/drand_verify-0.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "025b109712c757c8560c52147c08c9c998ed069b419f03378bc8d7b53608e470",
"md5": "efba5c676ea142c2ea647f100e2350ac",
"sha256": "b77f47464cb0c628343d0798839f70680f878222298d4c09046bf5dac6da8e84"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "efba5c676ea142c2ea647f100e2350ac",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 1362016,
"upload_time": "2023-09-16T10:18:39",
"upload_time_iso_8601": "2023-09-16T10:18:39.190803Z",
"url": "https://files.pythonhosted.org/packages/02/5b/109712c757c8560c52147c08c9c998ed069b419f03378bc8d7b53608e470/drand_verify-0.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "887fc831792fd07c2d0a2daf443f37cbc5153765df9f8d5b4da1f7117c98229b",
"md5": "a3624ddf3358a85663a6b31cd28edc27",
"sha256": "9975f315b9e73edd8ad448a6918381d0cbb734d8875c45297039d00f6dc76bb0"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-none-win32.whl",
"has_sig": false,
"md5_digest": "a3624ddf3358a85663a6b31cd28edc27",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 262295,
"upload_time": "2023-09-16T10:18:40",
"upload_time_iso_8601": "2023-09-16T10:18:40.603204Z",
"url": "https://files.pythonhosted.org/packages/88/7f/c831792fd07c2d0a2daf443f37cbc5153765df9f8d5b4da1f7117c98229b/drand_verify-0.2.1-cp37-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8242466128255fc0d54f574c9317ae2715dbb72d2bdb4d0960c5ffc5c491891c",
"md5": "9841037c433c606c598fc60bd2f2c06f",
"sha256": "4b387853588b0debf40878708aad7ebffede203501471034a52583171a2b3f89"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp37-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "9841037c433c606c598fc60bd2f2c06f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 217534,
"upload_time": "2023-09-16T10:18:41",
"upload_time_iso_8601": "2023-09-16T10:18:41.910192Z",
"url": "https://files.pythonhosted.org/packages/82/42/466128255fc0d54f574c9317ae2715dbb72d2bdb4d0960c5ffc5c491891c/drand_verify-0.2.1-cp37-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "185a3eaf5ba7cbea5d683904272e4a3e47c24e669519f708acebc500850b807f",
"md5": "3dd3a0a34e73d96d6501911d956cddab",
"sha256": "78d23a548bf7e1200563383158c9cec407f15e1607d5d1c84fec3840cfcb5836"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "3dd3a0a34e73d96d6501911d956cddab",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 355957,
"upload_time": "2023-09-16T10:18:43",
"upload_time_iso_8601": "2023-09-16T10:18:43.257216Z",
"url": "https://files.pythonhosted.org/packages/18/5a/3eaf5ba7cbea5d683904272e4a3e47c24e669519f708acebc500850b807f/drand_verify-0.2.1-cp38-cp38-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a09dd0d087db675f75868a3a078d8d6a97495b73122bd7833256569c3ed28388",
"md5": "ee6c95c5af046468c572dc2543353b10",
"sha256": "09966fd64a52e6ea35778e7293c45dc33e979e492a88e1407f87ea14d095d141"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ee6c95c5af046468c572dc2543353b10",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 345240,
"upload_time": "2023-09-16T10:18:44",
"upload_time_iso_8601": "2023-09-16T10:18:44.566693Z",
"url": "https://files.pythonhosted.org/packages/a0/9d/d0d087db675f75868a3a078d8d6a97495b73122bd7833256569c3ed28388/drand_verify-0.2.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f0a6235d5c0bb7d51816b9c1623c2f1a70a5a8fcc2b61c1f456253c0ed8798b",
"md5": "994ec0a09bf196b015eb9a75aa5760c6",
"sha256": "79c7e228b1cf471ec164960a091f8dde51d81ecbad50a35df7e56a47751e0c09"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "994ec0a09bf196b015eb9a75aa5760c6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1264477,
"upload_time": "2023-09-16T10:18:46",
"upload_time_iso_8601": "2023-09-16T10:18:46.496362Z",
"url": "https://files.pythonhosted.org/packages/5f/0a/6235d5c0bb7d51816b9c1623c2f1a70a5a8fcc2b61c1f456253c0ed8798b/drand_verify-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87d9c011d1e3da11f9d8f0e127b6ce971730843916ea8260b14cf772a7098f14",
"md5": "601fcdbb3364c4d92c35f0c1131b437c",
"sha256": "219423129159fa3f6b11cb92e1b739768e2ddf7957651ca6b6cc0cd781432501"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "601fcdbb3364c4d92c35f0c1131b437c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1396190,
"upload_time": "2023-09-16T10:18:48",
"upload_time_iso_8601": "2023-09-16T10:18:48.460066Z",
"url": "https://files.pythonhosted.org/packages/87/d9/c011d1e3da11f9d8f0e127b6ce971730843916ea8260b14cf772a7098f14/drand_verify-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6467def19e237aea894c8df09c6dcc34adf1f73f3fb42a058823b1ffe66faf69",
"md5": "099b1356ca2052681b2c5800f3ac09ef",
"sha256": "915eb12d7f217a69f179f6bfc694972184caec698bda662fde320d1aea7b9748"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "099b1356ca2052681b2c5800f3ac09ef",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1406782,
"upload_time": "2023-09-16T10:18:50",
"upload_time_iso_8601": "2023-09-16T10:18:50.013356Z",
"url": "https://files.pythonhosted.org/packages/64/67/def19e237aea894c8df09c6dcc34adf1f73f3fb42a058823b1ffe66faf69/drand_verify-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f514e70325a3287e98d0f6492324e84c96fa4e7e8be906470e4b3ae967bb4a7d",
"md5": "751ed41e4ff9803b9a38f01a8d4f8dbf",
"sha256": "314a6c120018f2ddbc737fdf02c6776caf30de6d4092c34fd7562bc75e361777"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "751ed41e4ff9803b9a38f01a8d4f8dbf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1442345,
"upload_time": "2023-09-16T10:18:51",
"upload_time_iso_8601": "2023-09-16T10:18:51.661866Z",
"url": "https://files.pythonhosted.org/packages/f5/14/e70325a3287e98d0f6492324e84c96fa4e7e8be906470e4b3ae967bb4a7d/drand_verify-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4944f194f2f7c81799147243a045c4f2becd490d32b5b86c65fd514089699e1",
"md5": "023d8df73bceedcf00a4bf8daf3eec70",
"sha256": "7023f8de69042de8515cc58246c9ea7477e29ffd7a9a390994328f5ca0b4cc22"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "023d8df73bceedcf00a4bf8daf3eec70",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1253766,
"upload_time": "2023-09-16T10:18:53",
"upload_time_iso_8601": "2023-09-16T10:18:53.096124Z",
"url": "https://files.pythonhosted.org/packages/b4/94/4f194f2f7c81799147243a045c4f2becd490d32b5b86c65fd514089699e1/drand_verify-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f888870939f8ef07728589ee2806089a9cf8ccdd2c9b71c716bdb1167c56874",
"md5": "7e48cd75d983e5a6ae96de268fb73f8d",
"sha256": "aaf57e8a51d5b93f2e972f4af982db5cb15ef9858b1308e4f5cac5549f261d0a"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7e48cd75d983e5a6ae96de268fb73f8d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1366582,
"upload_time": "2023-09-16T10:18:55",
"upload_time_iso_8601": "2023-09-16T10:18:55.275103Z",
"url": "https://files.pythonhosted.org/packages/5f/88/8870939f8ef07728589ee2806089a9cf8ccdd2c9b71c716bdb1167c56874/drand_verify-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38600375cf954e8aafe34bf4170b87caecaaf533a4c7d7d548e9b14ac6b69930",
"md5": "884cae241e3c668ae3742b924b37baf1",
"sha256": "f1caedc68b57004c4ab60aa6808c7f6284c852ee4b23b812e38f5dc1c1d86ec2"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "884cae241e3c668ae3742b924b37baf1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1364218,
"upload_time": "2023-09-16T10:18:56",
"upload_time_iso_8601": "2023-09-16T10:18:56.972062Z",
"url": "https://files.pythonhosted.org/packages/38/60/0375cf954e8aafe34bf4170b87caecaaf533a4c7d7d548e9b14ac6b69930/drand_verify-0.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "167ab948a31fc196a02f06df584f48efcde54aea9fe508f2513a5ff6d684efd9",
"md5": "f02aa6441ac79313962398c207df9bb2",
"sha256": "f6a2897e3e510647ca8db0ff2fb7cfc5318184fdf0553a8cd77fbe4ffa13bf27"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f02aa6441ac79313962398c207df9bb2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1361974,
"upload_time": "2023-09-16T10:18:58",
"upload_time_iso_8601": "2023-09-16T10:18:58.340652Z",
"url": "https://files.pythonhosted.org/packages/16/7a/b948a31fc196a02f06df584f48efcde54aea9fe508f2513a5ff6d684efd9/drand_verify-0.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b56fcf1224d717fd7c52afa25e61305dbcab5c5179dbb39440a9c14a4262724",
"md5": "53c36cf5c165d91c5c8f7b4fc7e360c4",
"sha256": "673321bc698170a2c14574e28caa078cd66f04d0f691f8bdcdb93a2625a20a3c"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "53c36cf5c165d91c5c8f7b4fc7e360c4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 262327,
"upload_time": "2023-09-16T10:18:59",
"upload_time_iso_8601": "2023-09-16T10:18:59.716980Z",
"url": "https://files.pythonhosted.org/packages/5b/56/fcf1224d717fd7c52afa25e61305dbcab5c5179dbb39440a9c14a4262724/drand_verify-0.2.1-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "666fb6142c1fd097d065e16c4428ea27d880d49c1e377737dd91b3070ada9cc4",
"md5": "4dc2dbafcd6979df6dd2c43cb06b42df",
"sha256": "91d047d87f30237426ad3e95478f1b24c6c29fec9314cbaffa7ee4548a9a94e6"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "4dc2dbafcd6979df6dd2c43cb06b42df",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 217573,
"upload_time": "2023-09-16T10:19:01",
"upload_time_iso_8601": "2023-09-16T10:19:01.088202Z",
"url": "https://files.pythonhosted.org/packages/66/6f/b6142c1fd097d065e16c4428ea27d880d49c1e377737dd91b3070ada9cc4/drand_verify-0.2.1-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93b28b413890f2a6e261dc2f19b95365766acfdf4b5a3a94b7e3fc6d871064e6",
"md5": "d5122569c8203b934e5c136628680760",
"sha256": "f4049b60b443d6382eda5f1613e17ebd1c3692885de2b0ee4ab18be6c669d77a"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "d5122569c8203b934e5c136628680760",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 355906,
"upload_time": "2023-09-16T10:19:02",
"upload_time_iso_8601": "2023-09-16T10:19:02.766381Z",
"url": "https://files.pythonhosted.org/packages/93/b2/8b413890f2a6e261dc2f19b95365766acfdf4b5a3a94b7e3fc6d871064e6/drand_verify-0.2.1-cp39-cp39-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8b533fa90cf13b68ca5ae5f6dda07d33e0ea1e462bdabbadf84f755f2ad8e7e",
"md5": "9cb778e7c08a96af20d29dd1d755d5d6",
"sha256": "332778c05040efc45b398fb839b8cbf43f1f5763d4f63fae0345bf0c664f4d8b"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9cb778e7c08a96af20d29dd1d755d5d6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 345212,
"upload_time": "2023-09-16T10:19:04",
"upload_time_iso_8601": "2023-09-16T10:19:04.649446Z",
"url": "https://files.pythonhosted.org/packages/f8/b5/33fa90cf13b68ca5ae5f6dda07d33e0ea1e462bdabbadf84f755f2ad8e7e/drand_verify-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ec23989fc87251ab5146b2668f9eec00c362d4e26d38006d0972a7ff9a9f77e",
"md5": "b9d7f3d26e36ea6d9109639a4abfbd84",
"sha256": "f9a043cd99e6e44207299ccf3f545a3f0234e8a97511abfe42c285d15ed2c1fd"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b9d7f3d26e36ea6d9109639a4abfbd84",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1264780,
"upload_time": "2023-09-16T10:19:06",
"upload_time_iso_8601": "2023-09-16T10:19:06.565104Z",
"url": "https://files.pythonhosted.org/packages/2e/c2/3989fc87251ab5146b2668f9eec00c362d4e26d38006d0972a7ff9a9f77e/drand_verify-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41da63833020dcd48c3db9db609e79861dfcb63f3c896f63e519f8efa64aa9ad",
"md5": "e0857732c9d237262a43d0a9b859b9a4",
"sha256": "96aa730e297d1d9f45205cae162670e36db580abd5e58f2a8277c1688b9a3922"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e0857732c9d237262a43d0a9b859b9a4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1396258,
"upload_time": "2023-09-16T10:19:08",
"upload_time_iso_8601": "2023-09-16T10:19:08.025307Z",
"url": "https://files.pythonhosted.org/packages/41/da/63833020dcd48c3db9db609e79861dfcb63f3c896f63e519f8efa64aa9ad/drand_verify-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9628990c3d8671fcb2a17f18139908b8ee656dda88cdfccc621f19e02db40478",
"md5": "f727f8770a16cdf6d133baae90779a19",
"sha256": "fb892224f1674238fe9a3972598733366b71d3b21013397ad68a1055dc88f332"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f727f8770a16cdf6d133baae90779a19",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1414211,
"upload_time": "2023-09-16T10:19:09",
"upload_time_iso_8601": "2023-09-16T10:19:09.989782Z",
"url": "https://files.pythonhosted.org/packages/96/28/990c3d8671fcb2a17f18139908b8ee656dda88cdfccc621f19e02db40478/drand_verify-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab654fd2625e90d59ab59b9d64a3b46c6ed173fd9ef105aef62e141d92c71ef5",
"md5": "947efd7a6b833df3c41121685c9f9a5b",
"sha256": "25c1b9d0d73d1b225f4c44706230e265599d05deb1aa537162a4129900123ab8"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "947efd7a6b833df3c41121685c9f9a5b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1442356,
"upload_time": "2023-09-16T10:19:12",
"upload_time_iso_8601": "2023-09-16T10:19:12.379673Z",
"url": "https://files.pythonhosted.org/packages/ab/65/4fd2625e90d59ab59b9d64a3b46c6ed173fd9ef105aef62e141d92c71ef5/drand_verify-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6af247397fa225a52f9a1465cf0eacd228e49bbe2d76e841488126cfc4b7e5a6",
"md5": "93bdd2ebfb513eaa3d17a214b1df60e2",
"sha256": "b33f11e7fa56c68e103221abb303f120dfe0d723f7c4e09c380a7c1a5c958a4f"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "93bdd2ebfb513eaa3d17a214b1df60e2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1253761,
"upload_time": "2023-09-16T10:19:13",
"upload_time_iso_8601": "2023-09-16T10:19:13.859568Z",
"url": "https://files.pythonhosted.org/packages/6a/f2/47397fa225a52f9a1465cf0eacd228e49bbe2d76e841488126cfc4b7e5a6/drand_verify-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d8be5c2bb9b251bd2d5a104c98a9b7859c3550482a4bce50127d14fe088f01a",
"md5": "7753bae1eeedbdb7081aa2175f98c013",
"sha256": "78c661b1eddee42b89d77b6b6273134fb03129d6b319b67f2b69250a8a1e54a6"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7753bae1eeedbdb7081aa2175f98c013",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1366711,
"upload_time": "2023-09-16T10:19:15",
"upload_time_iso_8601": "2023-09-16T10:19:15.305381Z",
"url": "https://files.pythonhosted.org/packages/6d/8b/e5c2bb9b251bd2d5a104c98a9b7859c3550482a4bce50127d14fe088f01a/drand_verify-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96420eca927273851d988054e55c298acd0eedd3046681f5bb8b0708fbc038d4",
"md5": "46035fb1d28669525e8623b12dfdbae0",
"sha256": "32e3672a69e24e9d6ad008fbf5ae626785ebd3b9330a844c82c8646b0c061a7b"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "46035fb1d28669525e8623b12dfdbae0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1364233,
"upload_time": "2023-09-16T10:19:16",
"upload_time_iso_8601": "2023-09-16T10:19:16.923394Z",
"url": "https://files.pythonhosted.org/packages/96/42/0eca927273851d988054e55c298acd0eedd3046681f5bb8b0708fbc038d4/drand_verify-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77abf213cd940e8bce09b614de4e3863d1c3b1fd91cce6e6eb3151fc6ec8cea6",
"md5": "895530dcdbf897b669b34bf7ba6447fa",
"sha256": "dd489ee8275aa6c39927ab55c7c34bd3b6902805f01414cfad7157358efc4197"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "895530dcdbf897b669b34bf7ba6447fa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1361974,
"upload_time": "2023-09-16T10:19:18",
"upload_time_iso_8601": "2023-09-16T10:19:18.425809Z",
"url": "https://files.pythonhosted.org/packages/77/ab/f213cd940e8bce09b614de4e3863d1c3b1fd91cce6e6eb3151fc6ec8cea6/drand_verify-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad77b952ff4e64fb18f50b4793ec6644bebacec00094497d6a1d5a8ceea9b56f",
"md5": "ab5cb6ad324a28bfee9fbf157afa71f7",
"sha256": "0aec9c7de978637f104e4d83d9add52d8b4fc6a0cc577c4cc8b9e20121302068"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "ab5cb6ad324a28bfee9fbf157afa71f7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 262285,
"upload_time": "2023-09-16T10:19:19",
"upload_time_iso_8601": "2023-09-16T10:19:19.977652Z",
"url": "https://files.pythonhosted.org/packages/ad/77/b952ff4e64fb18f50b4793ec6644bebacec00094497d6a1d5a8ceea9b56f/drand_verify-0.2.1-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b18a8fe11f9d5b60d732868ffa37579d785993303650880573e92d2d04e1c430",
"md5": "10590b5e14fd90bec4857b7843674a97",
"sha256": "033d1ae027c0dec83a5b14bd567ec00693d592199a3492d3fdad665974b86253"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "10590b5e14fd90bec4857b7843674a97",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 217897,
"upload_time": "2023-09-16T10:19:21",
"upload_time_iso_8601": "2023-09-16T10:19:21.314854Z",
"url": "https://files.pythonhosted.org/packages/b1/8a/8fe11f9d5b60d732868ffa37579d785993303650880573e92d2d04e1c430/drand_verify-0.2.1-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31ac097acb7878c431379e6353bf9a5b571c9d4f2ba5270b5dce5d4f39019258",
"md5": "345d9af0887619c402145e1c0cf8d1a3",
"sha256": "b6bcced050f9c36882143c0ac6dc1d97fa0ddc7dc6b313d09a0a45ef6294d186"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "345d9af0887619c402145e1c0cf8d1a3",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 356206,
"upload_time": "2023-09-16T10:19:22",
"upload_time_iso_8601": "2023-09-16T10:19:22.649982Z",
"url": "https://files.pythonhosted.org/packages/31/ac/097acb7878c431379e6353bf9a5b571c9d4f2ba5270b5dce5d4f39019258/drand_verify-0.2.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fcfb2b65896381c1db4247df0edf42bd72e25ecfb637cb94317dea0f511ebb2d",
"md5": "2a8d0fb38ff99f8281dcd6ca6db7ff49",
"sha256": "1674f678ed410dfdb10a6c8b16f228ddf66e34b64ea418fd81edcefe862791ee"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2a8d0fb38ff99f8281dcd6ca6db7ff49",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 345152,
"upload_time": "2023-09-16T10:19:24",
"upload_time_iso_8601": "2023-09-16T10:19:24.170602Z",
"url": "https://files.pythonhosted.org/packages/fc/fb/2b65896381c1db4247df0edf42bd72e25ecfb637cb94317dea0f511ebb2d/drand_verify-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cc0e862197582d31f3c538e112cbbe08a5ae7739923830499789cc3f83d023c",
"md5": "f4ffeda9d126976d7c9867ad750e5152",
"sha256": "2e355d058465f00704a1c3648ae09cb25ba264dac85e8b232ee8570a05019803"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f4ffeda9d126976d7c9867ad750e5152",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 1264569,
"upload_time": "2023-09-16T10:19:26",
"upload_time_iso_8601": "2023-09-16T10:19:26.066888Z",
"url": "https://files.pythonhosted.org/packages/7c/c0/e862197582d31f3c538e112cbbe08a5ae7739923830499789cc3f83d023c/drand_verify-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0315d3d9860cdf473eb1cd1992433e9e5ca09b66eb88d10e84cfaf069f92066c",
"md5": "cde5e091e01bdfb1b4cbef76c0b5ae7c",
"sha256": "e3b25e2e73dc418958215d1677662e21a6d33d59f3445e1cad6deb20cda45d0e"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cde5e091e01bdfb1b4cbef76c0b5ae7c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 1254277,
"upload_time": "2023-09-16T10:19:27",
"upload_time_iso_8601": "2023-09-16T10:19:27.607613Z",
"url": "https://files.pythonhosted.org/packages/03/15/d3d9860cdf473eb1cd1992433e9e5ca09b66eb88d10e84cfaf069f92066c/drand_verify-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5826d36cc2a0a69067fcc179e462e104e7f014f445c1d261dbca22d10878766",
"md5": "957acb7884a80aeab9c9db4f4ce7114d",
"sha256": "01e2acec3ef0fbbcb3c69522591a79933c104db7149a177900d62f3b1604c69d"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "957acb7884a80aeab9c9db4f4ce7114d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 1366509,
"upload_time": "2023-09-16T10:19:29",
"upload_time_iso_8601": "2023-09-16T10:19:29.087388Z",
"url": "https://files.pythonhosted.org/packages/e5/82/6d36cc2a0a69067fcc179e462e104e7f014f445c1d261dbca22d10878766/drand_verify-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "246272be7f985bb8528793300b1903453a04c5f78d637a4a7ae85df261c49741",
"md5": "8bbb8b4ea537bf475eb634fdd219a176",
"sha256": "a8e767c978fcb218a05be0e378b2b2abfed71159e2c16b536aecf0156baec4bd"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "8bbb8b4ea537bf475eb634fdd219a176",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 1364112,
"upload_time": "2023-09-16T10:19:31",
"upload_time_iso_8601": "2023-09-16T10:19:31.146599Z",
"url": "https://files.pythonhosted.org/packages/24/62/72be7f985bb8528793300b1903453a04c5f78d637a4a7ae85df261c49741/drand_verify-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e0fd1cdeff2ad9b029cb92c8b75e0dd13b5261ce645ad33d567916d32949f0b",
"md5": "ba560977f60542c4e50f3de4fd4c6079",
"sha256": "c741211b4143b977988cc4446d4112be5082a426d03dd2ae379c2ccb884392a4"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ba560977f60542c4e50f3de4fd4c6079",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 1361821,
"upload_time": "2023-09-16T10:19:32",
"upload_time_iso_8601": "2023-09-16T10:19:32.671530Z",
"url": "https://files.pythonhosted.org/packages/9e/0f/d1cdeff2ad9b029cb92c8b75e0dd13b5261ce645ad33d567916d32949f0b/drand_verify-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "662c6adbd24684da8d93cc24b8ed058004d28d98c7b42a2809ef4d854be9d666",
"md5": "621274f8e0bab9485bd9a036d98069d4",
"sha256": "75b35e1acb06db2c4541a4c20a687a9ca51ff21093443489221cd0ef4c6362db"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "621274f8e0bab9485bd9a036d98069d4",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 360182,
"upload_time": "2023-09-16T10:19:34",
"upload_time_iso_8601": "2023-09-16T10:19:34.317950Z",
"url": "https://files.pythonhosted.org/packages/66/2c/6adbd24684da8d93cc24b8ed058004d28d98c7b42a2809ef4d854be9d666/drand_verify-0.2.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99724d39f75137ce495cd1211747c661eeb72a85f18329972cc9e4f44c610e6a",
"md5": "0950c56dfdfaeb61d5dcc901a349aa58",
"sha256": "f88f531bbfcab5993813945f1ea840af2c5de693b9f6dea4d08f27e1aedaecbb"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0950c56dfdfaeb61d5dcc901a349aa58",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 1268086,
"upload_time": "2023-09-16T10:19:36",
"upload_time_iso_8601": "2023-09-16T10:19:36.170705Z",
"url": "https://files.pythonhosted.org/packages/99/72/4d39f75137ce495cd1211747c661eeb72a85f18329972cc9e4f44c610e6a/drand_verify-0.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6a7378892363898e92cf7fded8ebe48fb498d9067cc29e9e1815ff0b08bbfee",
"md5": "d240a504736aeaf76835d5961878e194",
"sha256": "dc9e5a9d632d5c0f576c81f923a096e740191b29d8cc4f56314de5ab00afbffa"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d240a504736aeaf76835d5961878e194",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 1258639,
"upload_time": "2023-09-16T10:19:37",
"upload_time_iso_8601": "2023-09-16T10:19:37.660255Z",
"url": "https://files.pythonhosted.org/packages/d6/a7/378892363898e92cf7fded8ebe48fb498d9067cc29e9e1815ff0b08bbfee/drand_verify-0.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5af8741b8632dd22d40fd9f17d68e99a0eabd29fa85bee9fc87450b099243fd6",
"md5": "30780e2ce8a226065539b3cef930bc1d",
"sha256": "7ff717ab9a88c12dca8b7f656e1d04a37a9ebfd98a260930415b9d6888c6eab6"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "30780e2ce8a226065539b3cef930bc1d",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 1371062,
"upload_time": "2023-09-16T10:19:39",
"upload_time_iso_8601": "2023-09-16T10:19:39.616232Z",
"url": "https://files.pythonhosted.org/packages/5a/f8/741b8632dd22d40fd9f17d68e99a0eabd29fa85bee9fc87450b099243fd6/drand_verify-0.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5480a83271e3950436d2bbd6931503272f59088e1e6b4621a9bd498399383292",
"md5": "87b4b23b163e0af879014d3788beadc5",
"sha256": "ef1672f11928546069a06f4cd07eac106fa5f041fb512b44bae6300f564df95b"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "87b4b23b163e0af879014d3788beadc5",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 1367759,
"upload_time": "2023-09-16T10:19:41",
"upload_time_iso_8601": "2023-09-16T10:19:41.148388Z",
"url": "https://files.pythonhosted.org/packages/54/80/a83271e3950436d2bbd6931503272f59088e1e6b4621a9bd498399383292/drand_verify-0.2.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "047a3d179a2bbf8e190c05f81cbdd08826e30cdc02564e708c1ba493ab870a15",
"md5": "e633e584628801c2dc49a8eb1c8567ac",
"sha256": "6154ea167a3e9d4063c19c6fc5d21ed73cd2a444cbeb62caa135474b5fb4c38b"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e633e584628801c2dc49a8eb1c8567ac",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 1364674,
"upload_time": "2023-09-16T10:19:42",
"upload_time_iso_8601": "2023-09-16T10:19:42.957087Z",
"url": "https://files.pythonhosted.org/packages/04/7a/3d179a2bbf8e190c05f81cbdd08826e30cdc02564e708c1ba493ab870a15/drand_verify-0.2.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e151ce23855866d67f057a16c3b37dd3c4d04fb507d23c04ced28ecbea7f4aa",
"md5": "5adde5ca5e33ac8bc7db1cc178d3f375",
"sha256": "57722601d5b1a4c173137ae473611511d4d25dd0358a380499c43fb567b3e642"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "5adde5ca5e33ac8bc7db1cc178d3f375",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 356601,
"upload_time": "2023-09-16T10:19:45",
"upload_time_iso_8601": "2023-09-16T10:19:45.005687Z",
"url": "https://files.pythonhosted.org/packages/5e/15/1ce23855866d67f057a16c3b37dd3c4d04fb507d23c04ced28ecbea7f4aa/drand_verify-0.2.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "751b3c7caa0046e30ffb4424538d22d4f307e9f72a7c239e81bb5dfc87130aa4",
"md5": "1fd9b2d565cddc8c691f81d73fb2dd54",
"sha256": "e3e65f44e2dc35d9174330cc410afbf2f7995947479bf911f6f843c306759126"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1fd9b2d565cddc8c691f81d73fb2dd54",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 345257,
"upload_time": "2023-09-16T10:19:47",
"upload_time_iso_8601": "2023-09-16T10:19:47.025259Z",
"url": "https://files.pythonhosted.org/packages/75/1b/3c7caa0046e30ffb4424538d22d4f307e9f72a7c239e81bb5dfc87130aa4/drand_verify-0.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "88f4ae6336c0cbd40b95e6588acef50eb75665bc0a41cfa506425a676ae37695",
"md5": "6a776a7526ca1447a41eb60dc1bd890b",
"sha256": "cf0d6125a041328db04ae462d96f7188035da4e94dbd6ecbc365f4f6338d802d"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6a776a7526ca1447a41eb60dc1bd890b",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 1264998,
"upload_time": "2023-09-16T10:19:49",
"upload_time_iso_8601": "2023-09-16T10:19:49.215463Z",
"url": "https://files.pythonhosted.org/packages/88/f4/ae6336c0cbd40b95e6588acef50eb75665bc0a41cfa506425a676ae37695/drand_verify-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9b4ef60b56ee82ef0ac91afddad2ccac5681d632dc298ccbe51c5123aa0dd00",
"md5": "c67d7004a98127e64c54a67f7bdb192e",
"sha256": "0916748f4963b6e0c8e4d4a89a4d897d5d6dcbd079835be1fdc02457821c7f7e"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c67d7004a98127e64c54a67f7bdb192e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 1254765,
"upload_time": "2023-09-16T10:19:51",
"upload_time_iso_8601": "2023-09-16T10:19:51.326015Z",
"url": "https://files.pythonhosted.org/packages/e9/b4/ef60b56ee82ef0ac91afddad2ccac5681d632dc298ccbe51c5123aa0dd00/drand_verify-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43eb2ac07f0100dd2903600cdf81f3d5353499352ed93652fa8a37e768fea447",
"md5": "ff9c78661d4cedb81450ac00f573d9d3",
"sha256": "d34e73605adbf653d2322a544da0375e8098de26ebaeb1aadadf29128d0792cb"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ff9c78661d4cedb81450ac00f573d9d3",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 1366530,
"upload_time": "2023-09-16T10:19:53",
"upload_time_iso_8601": "2023-09-16T10:19:53.060843Z",
"url": "https://files.pythonhosted.org/packages/43/eb/2ac07f0100dd2903600cdf81f3d5353499352ed93652fa8a37e768fea447/drand_verify-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00076ed320ded00e7a725ff42e43a9b13feb521283246f6733ede8e76645d292",
"md5": "d84dc9ddeb2942f9e812661617479b10",
"sha256": "27492ca6260d861ac57454ff0e6a571f044ce7e4ceb403bd4d0c596fb61647ec"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d84dc9ddeb2942f9e812661617479b10",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 1364163,
"upload_time": "2023-09-16T10:19:55",
"upload_time_iso_8601": "2023-09-16T10:19:55.057184Z",
"url": "https://files.pythonhosted.org/packages/00/07/6ed320ded00e7a725ff42e43a9b13feb521283246f6733ede8e76645d292/drand_verify-0.2.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "245f16c0d60e55e64ca3ba5af6b071346afbbf2f30237ade67f2b8a8026e0e17",
"md5": "1bdac23b771dfde238c2316f9d5792c3",
"sha256": "affd5589ee65f726679b00c89b50716b5baf1a7694396f7d721a13c4112f4fb8"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "1bdac23b771dfde238c2316f9d5792c3",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 1361864,
"upload_time": "2023-09-16T10:19:56",
"upload_time_iso_8601": "2023-09-16T10:19:56.844195Z",
"url": "https://files.pythonhosted.org/packages/24/5f/16c0d60e55e64ca3ba5af6b071346afbbf2f30237ade67f2b8a8026e0e17/drand_verify-0.2.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a62d10813f569fdba96bff8bdd4657af37720f24445dcd09f6e792d3f7a92bb",
"md5": "5e5814716ae74a4fb0e9b817c5789624",
"sha256": "03b217a08af9650be4e423cebdee56bbb94563414aa95e941ea1454be7309154"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl",
"has_sig": false,
"md5_digest": "5e5814716ae74a4fb0e9b817c5789624",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 356197,
"upload_time": "2023-09-16T10:19:58",
"upload_time_iso_8601": "2023-09-16T10:19:58.451214Z",
"url": "https://files.pythonhosted.org/packages/9a/62/d10813f569fdba96bff8bdd4657af37720f24445dcd09f6e792d3f7a92bb/drand_verify-0.2.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0bef35c9c6c9a377c6605413e7baf1e33d36010475d90b5ac725c9610815ebc1",
"md5": "711974c6d8ac1994a88b1e9d0cb07c91",
"sha256": "aff6312760a1cdb554ea221dc27ddc837b592a22c75a6d037615634fb17fc985"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "711974c6d8ac1994a88b1e9d0cb07c91",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 345144,
"upload_time": "2023-09-16T10:20:00",
"upload_time_iso_8601": "2023-09-16T10:20:00.741967Z",
"url": "https://files.pythonhosted.org/packages/0b/ef/35c9c6c9a377c6605413e7baf1e33d36010475d90b5ac725c9610815ebc1/drand_verify-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64f767f85b577552b01c156175cdee082cec15951f9428c377847a56360f024e",
"md5": "83d2749dec91e047f9938ebe16949091",
"sha256": "dec01f7c7e110688e18841ec195e94a08096870b45d1ce77f8726cabe981d3d7"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "83d2749dec91e047f9938ebe16949091",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 1264494,
"upload_time": "2023-09-16T10:20:02",
"upload_time_iso_8601": "2023-09-16T10:20:02.354326Z",
"url": "https://files.pythonhosted.org/packages/64/f7/67f85b577552b01c156175cdee082cec15951f9428c377847a56360f024e/drand_verify-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32ffad73f1917b6482042a7862cdc2d727109e51871a1a1bd6723f74e756c25a",
"md5": "7deaf33256239fe8ad9de094d1d70e27",
"sha256": "6da32211113b5422534084c6c0dc02f2bc18547ccc754c9498264acc24930271"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7deaf33256239fe8ad9de094d1d70e27",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 1254132,
"upload_time": "2023-09-16T10:20:04",
"upload_time_iso_8601": "2023-09-16T10:20:04.165172Z",
"url": "https://files.pythonhosted.org/packages/32/ff/ad73f1917b6482042a7862cdc2d727109e51871a1a1bd6723f74e756c25a/drand_verify-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dac02982bcb021ce06e9bf3697803a172a2a0401f9455903fd38bf002390310",
"md5": "46e3e61f16b927b7bbec2e45590f23e6",
"sha256": "63d37400f65f3f3501a805d54accc9fd63c3a1aaa91978ef7db60bd4389d7b10"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "46e3e61f16b927b7bbec2e45590f23e6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 1366499,
"upload_time": "2023-09-16T10:20:06",
"upload_time_iso_8601": "2023-09-16T10:20:06.431485Z",
"url": "https://files.pythonhosted.org/packages/0d/ac/02982bcb021ce06e9bf3697803a172a2a0401f9455903fd38bf002390310/drand_verify-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd4539de8ff0c00088192f5835abd95f46acf6068b5429ebb6feae4d43bb4034",
"md5": "2b37405636f07f82137788483f367b2c",
"sha256": "32e45640c42d444641c05f42d1065ec66e2dffa626f4df3e4b9015f4b8de5992"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2b37405636f07f82137788483f367b2c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 1364048,
"upload_time": "2023-09-16T10:20:08",
"upload_time_iso_8601": "2023-09-16T10:20:08.379487Z",
"url": "https://files.pythonhosted.org/packages/bd/45/39de8ff0c00088192f5835abd95f46acf6068b5429ebb6feae4d43bb4034/drand_verify-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e28887642ad08915cfdd67ff69b3b83eb1679fd47a8805eea50f981df9c9620",
"md5": "5b134acfd9d3dd41168a259341a1e89f",
"sha256": "b8a16441ce907de7f3b8412a071849d59420a695ce8c9e49016950a726e6568d"
},
"downloads": -1,
"filename": "drand_verify-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5b134acfd9d3dd41168a259341a1e89f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 1361808,
"upload_time": "2023-09-16T10:20:10",
"upload_time_iso_8601": "2023-09-16T10:20:10.457388Z",
"url": "https://files.pythonhosted.org/packages/8e/28/887642ad08915cfdd67ff69b3b83eb1679fd47a8805eea50f981df9c9620/drand_verify-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de39e84c48c8a7537b260ae6d5b4aea0350b15efaf992f7c1293c23d40ec7e37",
"md5": "0b2c3b396550daf07b39f5d26f31106f",
"sha256": "250a760aa26f8e85448af2f4bd7697a5139fa9ae9d534057a67b60e02b2f3a15"
},
"downloads": -1,
"filename": "drand_verify-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "0b2c3b396550daf07b39f5d26f31106f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 12084,
"upload_time": "2023-09-16T10:20:12",
"upload_time_iso_8601": "2023-09-16T10:20:12.111526Z",
"url": "https://files.pythonhosted.org/packages/de/39/e84c48c8a7537b260ae6d5b4aea0350b15efaf992f7c1293c23d40ec7e37/drand_verify-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-09-16 10:20:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "very-lame-username",
"github_project": "python-drand-verify",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "drand-verify"
}