# py-bip39-bindings
Python bindings for the tiny-bip39 library: https://crates.io/crates/tiny-bip39
Reference to Reference to https://github.com/LocalCoinSwap/kusama-reference-implementation/tree/improve-trading-tests/bindings for the initial work
## Documentation
https://docs.rs/py-bip39-bindings/
## Installation
### Install from PyPI
```shell script
pip install py-bip39-bindings
```
### Compile for local development
```shell script
pip install -r requirements.txt
maturin develop
```
### Build wheels
```shell script
pip install -r requirements.txt
# Build local OS wheel
maturin build
# Build manylinux1 wheel
docker build . --tag polkasource/maturin
docker run --rm -i -v $(pwd):/io polkasource/maturin build
```
## Examples
```python
import binascii
from bip39 import bip39_to_mini_secret, bip39_generate, bip39_validate
mnemonic = bip39_generate(12)
bip39_validate(mnemonic)
seed_array = bip39_to_mini_secret(mnemonic, "")
seed_hex = binascii.hexlify(bytearray(seed_array)).decode("ascii")
```
## Multi-language support
The following language codes are supported: 'en', 'zh-hans', 'zh-hant', 'fr', 'it', 'jap', 'ko', 'es'. Defaults to 'en'
```python
mnemonic = bip39_generate(12, 'fr')
# 'moufle veinard tronc magasin merle amour toboggan admettre biotype décembre régalien billard'
bip39_validate(mnemonic, 'fr')
seed_array = bip39_to_mini_secret(mnemonic, "", 'fr')
mnemonic = bip39_generate(12, 'zh-hans')
# '观 敲 荣 硬 责 雪 专 宴 醇 飞 图 菌'
```
## License
https://github.com/polkascan/py-bip39-bindings/blob/master/LICENSE
Raw data
{
"_id": null,
"home_page": "https://github.com/polkascan/py-bip39-bindings",
"name": "py-bip39-bindings",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Polkascan Foundation <info@polkascan.org>",
"keywords": null,
"author": "Polkascan Foundation",
"author_email": "info@polkascan.org",
"download_url": "https://files.pythonhosted.org/packages/0a/e1/88d75d69d08322555e5fc310d3086df7355942c993abbc0cca50adf93ed9/py_bip39_bindings-0.2.0.tar.gz",
"platform": null,
"description": "# py-bip39-bindings\nPython bindings for the tiny-bip39 library: https://crates.io/crates/tiny-bip39\n\nReference to Reference to https://github.com/LocalCoinSwap/kusama-reference-implementation/tree/improve-trading-tests/bindings for the initial work \n\n## Documentation\n\nhttps://docs.rs/py-bip39-bindings/\n\n## Installation\n\n### Install from PyPI\n\n```shell script\npip install py-bip39-bindings\n```\n\n### Compile for local development\n\n```shell script\npip install -r requirements.txt\nmaturin develop\n```\n### Build wheels\n```shell script\npip install -r requirements.txt\n\n# Build local OS wheel\nmaturin build\n\n# Build manylinux1 wheel\ndocker build . --tag polkasource/maturin\ndocker run --rm -i -v $(pwd):/io polkasource/maturin build\n\n```\n\n## Examples\n\n```python\nimport binascii\nfrom bip39 import bip39_to_mini_secret, bip39_generate, bip39_validate\n\nmnemonic = bip39_generate(12)\nbip39_validate(mnemonic)\n\nseed_array = bip39_to_mini_secret(mnemonic, \"\")\nseed_hex = binascii.hexlify(bytearray(seed_array)).decode(\"ascii\")\n\n```\n\n## Multi-language support\n\nThe following language codes are supported: 'en', 'zh-hans', 'zh-hant', 'fr', 'it', 'jap', 'ko', 'es'. Defaults to 'en'\n\n```python\nmnemonic = bip39_generate(12, 'fr')\n# 'moufle veinard tronc magasin merle amour toboggan admettre biotype de\u0301cembre re\u0301galien billard'\nbip39_validate(mnemonic, 'fr')\n\nseed_array = bip39_to_mini_secret(mnemonic, \"\", 'fr')\n\nmnemonic = bip39_generate(12, 'zh-hans')\n# '\u89c2 \u6572 \u8363 \u786c \u8d23 \u96ea \u4e13 \u5bb4 \u9187 \u98de \u56fe \u83cc'\n```\n\n\n\n## License\nhttps://github.com/polkascan/py-bip39-bindings/blob/master/LICENSE\n\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Python bindings for tiny-bip39 RUST crate",
"version": "0.2.0",
"project_urls": {
"Homepage": "https://github.com/polkascan/py-bip39-bindings",
"repository": "https://github.com/polkascan/py-bip39-bindings"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "70d48cd94b3ab377d544b3409a0bae59e25a8b950bc329bcfa7ff9a6c0ab0c1c",
"md5": "9c4d472be41d555b2acc94f690d096b1",
"sha256": "6a9379172311aa9cdca13176fa541a7a8d5c99bb36360a35075b1687ca2a68f8"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9c4d472be41d555b2acc94f690d096b1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 425559,
"upload_time": "2024-12-09T15:03:23",
"upload_time_iso_8601": "2024-12-09T15:03:23.561779Z",
"url": "https://files.pythonhosted.org/packages/70/d4/8cd94b3ab377d544b3409a0bae59e25a8b950bc329bcfa7ff9a6c0ab0c1c/py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e59868889ca3a465ea83a7804dde6091ef60805a2fbd77f82cf8288bdcce88d5",
"md5": "dd14ed0526ed840dff78d5d0a50f5845",
"sha256": "f423282376ef9f080d52b213aa5800b78ba4a5c0da174679fe1989e632fd1def"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "dd14ed0526ed840dff78d5d0a50f5845",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 438164,
"upload_time": "2024-12-09T15:03:38",
"upload_time_iso_8601": "2024-12-09T15:03:38.809504Z",
"url": "https://files.pythonhosted.org/packages/e5/98/68889ca3a465ea83a7804dde6091ef60805a2fbd77f82cf8288bdcce88d5/py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5b977154574181e7d8979d7779dd0a3dc59985469ad390990a243220b9e1533",
"md5": "592e302024d911ad3e382b4d14775a2f",
"sha256": "0c61f08ee3a934932fb395a01b5f8f22e530e6c57a097fab40571ea635e28098"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "592e302024d911ad3e382b4d14775a2f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 474260,
"upload_time": "2024-12-09T15:03:51",
"upload_time_iso_8601": "2024-12-09T15:03:51.771522Z",
"url": "https://files.pythonhosted.org/packages/e5/b9/77154574181e7d8979d7779dd0a3dc59985469ad390990a243220b9e1533/py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a3438aae0aad701853e10b926240f921bbcba555e9e76ea05df8312b523d03d",
"md5": "ffc12f88853afb5112862cc30c8ece36",
"sha256": "8254c1b630aea2d8d3010f7dae4ed8f55f0ecc166122314b76c91541aeeb4df0"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ffc12f88853afb5112862cc30c8ece36",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 433936,
"upload_time": "2024-12-09T15:04:14",
"upload_time_iso_8601": "2024-12-09T15:04:14.493069Z",
"url": "https://files.pythonhosted.org/packages/0a/34/38aae0aad701853e10b926240f921bbcba555e9e76ea05df8312b523d03d/py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e72d28621dfa1327a123b59da367eeea26c2fe249bbbc9b62f54a5124caf298",
"md5": "0ec498bd67b122262350704064c67776",
"sha256": "5e68c0db919ebba87666a947efafa92e41beeaf19b254ce3c3787085ab0c5829"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0ec498bd67b122262350704064c67776",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 453502,
"upload_time": "2024-12-09T15:04:03",
"upload_time_iso_8601": "2024-12-09T15:04:03.463027Z",
"url": "https://files.pythonhosted.org/packages/2e/72/d28621dfa1327a123b59da367eeea26c2fe249bbbc9b62f54a5124caf298/py_bip39_bindings-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7016faa9fe7f81c2449ef2560a92ef04f6fc8c8dae7baf996aab070bff83f382",
"md5": "8db8d72fd960942977552cba065ee1a4",
"sha256": "d36d468abc23d31bf19e3642b384fe28c7600c96239d4436f033d744a9137079"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8db8d72fd960942977552cba065ee1a4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 603075,
"upload_time": "2024-12-09T15:04:32",
"upload_time_iso_8601": "2024-12-09T15:04:32.652025Z",
"url": "https://files.pythonhosted.org/packages/70/16/faa9fe7f81c2449ef2560a92ef04f6fc8c8dae7baf996aab070bff83f382/py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af621f416613a2d2d89e346428c93a17e597185355d16ea460ed056e6ea1fe4f",
"md5": "a7c9370edc25627341888f84c6296141",
"sha256": "f5ac37b6c6f3e32397925949f9c738e677c0b6ac7d3aa01d813724d86ce9045e"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "a7c9370edc25627341888f84c6296141",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 700972,
"upload_time": "2024-12-09T15:04:44",
"upload_time_iso_8601": "2024-12-09T15:04:44.943569Z",
"url": "https://files.pythonhosted.org/packages/af/62/1f416613a2d2d89e346428c93a17e597185355d16ea460ed056e6ea1fe4f/py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a0ad9dc276226c9e46d107ffa0dabb32599efa3caf291c55f1cce58b153fb3d",
"md5": "4f8e8ab52b4939e96a5a8ceb4ce61e49",
"sha256": "8a1f2353c7fdbec4ea6f0a6a088cde076523b3bfce193786e096c4831ec723bb"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4f8e8ab52b4939e96a5a8ceb4ce61e49",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 629220,
"upload_time": "2024-12-09T15:04:58",
"upload_time_iso_8601": "2024-12-09T15:04:58.179183Z",
"url": "https://files.pythonhosted.org/packages/3a/0a/d9dc276226c9e46d107ffa0dabb32599efa3caf291c55f1cce58b153fb3d/py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "442f3c6e0cc027dde20f29b658290f2432413104d2dcff67bea8e662fba6aa27",
"md5": "5b43361cfe1f3662024785da0b6b0afd",
"sha256": "cb05d97ed2d018a08715ff06051c8de75c75b44eb73a428aaa204b56ce69d8f4"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5b43361cfe1f3662024785da0b6b0afd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 604630,
"upload_time": "2024-12-09T15:05:10",
"upload_time_iso_8601": "2024-12-09T15:05:10.995202Z",
"url": "https://files.pythonhosted.org/packages/44/2f/3c6e0cc027dde20f29b658290f2432413104d2dcff67bea8e662fba6aa27/py_bip39_bindings-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b88cf17aea21468de78b7db16a765727744c9f6ded0b40725cce2bb0464a52bf",
"md5": "4bf09f872e5a843bc7d0052c35798263",
"sha256": "588ec726717b3ceaabff9b10d357a3a042a9a6cc075e3a9e14a3d7ba226c5ddf"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "4bf09f872e5a843bc7d0052c35798263",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 284208,
"upload_time": "2024-12-09T15:05:31",
"upload_time_iso_8601": "2024-12-09T15:05:31.411642Z",
"url": "https://files.pythonhosted.org/packages/b8/8c/f17aea21468de78b7db16a765727744c9f6ded0b40725cce2bb0464a52bf/py_bip39_bindings-0.2.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f279bc4715a7b20abebc810daff74be6da47a26e82ff5a31bbd26cd99530c26",
"md5": "0826980506d2252303332d57d51aff31",
"sha256": "4e5e2af6c4b6a3640648fb28c8655b4a3275cee9a5160de8ec8db5ab295b7ec9"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "0826980506d2252303332d57d51aff31",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 274716,
"upload_time": "2024-12-09T15:05:25",
"upload_time_iso_8601": "2024-12-09T15:05:25.225534Z",
"url": "https://files.pythonhosted.org/packages/2f/27/9bc4715a7b20abebc810daff74be6da47a26e82ff5a31bbd26cd99530c26/py_bip39_bindings-0.2.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8b1dd36bb789d0b555191442798993664732533e2e6b0af601bc20f55ff01c1",
"md5": "b67d4f4b8138563e4b6b8a916a61ec9a",
"sha256": "2af7c8dedaa1076002872eda378153e053e4c9f5ce39570da3c65ce7306f4439"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b67d4f4b8138563e4b6b8a916a61ec9a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 375749,
"upload_time": "2024-12-09T15:04:28",
"upload_time_iso_8601": "2024-12-09T15:04:28.369419Z",
"url": "https://files.pythonhosted.org/packages/d8/b1/dd36bb789d0b555191442798993664732533e2e6b0af601bc20f55ff01c1/py_bip39_bindings-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b804ea07ae149ea46712ffe1b66079b074c00340dc5a5291c69f25a1386d176",
"md5": "5884126124e517d1dd50e89b2ae8c34d",
"sha256": "08e03bc728aa599e3cfac9395787618308c8b8e6f35a9ee0b11b73dcde72e3fc"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5884126124e517d1dd50e89b2ae8c34d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 369191,
"upload_time": "2024-12-09T15:04:25",
"upload_time_iso_8601": "2024-12-09T15:04:25.180239Z",
"url": "https://files.pythonhosted.org/packages/4b/80/4ea07ae149ea46712ffe1b66079b074c00340dc5a5291c69f25a1386d176/py_bip39_bindings-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e58af6240831717a275545fb2883a8a3513fcf56cf22a65cfc368e65a3f8b4d",
"md5": "f6943ac3c91ca220d22a34138c8b4045",
"sha256": "4f052e5740d500e5a6a24c97e026ce152bbee58b56f2944ed455788f65658884"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f6943ac3c91ca220d22a34138c8b4045",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 425344,
"upload_time": "2024-12-09T15:03:26",
"upload_time_iso_8601": "2024-12-09T15:03:26.481628Z",
"url": "https://files.pythonhosted.org/packages/8e/58/af6240831717a275545fb2883a8a3513fcf56cf22a65cfc368e65a3f8b4d/py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6f70ceae0bf65f029d1b602bab6d744ddaedb42602d50fcbe07386c8f71ef84",
"md5": "b0f5c76abfedc1345f2e04738f3c9094",
"sha256": "fd441833b21a5da2ccfebbdf800892e41282b24fc782eabae2a576e3d74d67f8"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b0f5c76abfedc1345f2e04738f3c9094",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 438079,
"upload_time": "2024-12-09T15:03:40",
"upload_time_iso_8601": "2024-12-09T15:03:40.585489Z",
"url": "https://files.pythonhosted.org/packages/c6/f7/0ceae0bf65f029d1b602bab6d744ddaedb42602d50fcbe07386c8f71ef84/py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96c13b157e5ddd654a94a947ee4921cd78add2c81d887272925c2220162eba5d",
"md5": "36943ada9579907f0e22a8203fe813f0",
"sha256": "f39ac5d74640d1d48c80404e549be9dc5a8931383e7f94ee388e4d972b571f42"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "36943ada9579907f0e22a8203fe813f0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 474168,
"upload_time": "2024-12-09T15:03:52",
"upload_time_iso_8601": "2024-12-09T15:03:52.888642Z",
"url": "https://files.pythonhosted.org/packages/96/c1/3b157e5ddd654a94a947ee4921cd78add2c81d887272925c2220162eba5d/py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "916a05875c2ef0692a4f9783605a12e0c175082686d74f9bf1517712e362e1d5",
"md5": "b5c025cf4c40e40c051be667e06f4b57",
"sha256": "55ee7185bb1b5fb5ec4abcdea1ad89256dc7ee7e9a69843390a98068832169d6"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b5c025cf4c40e40c051be667e06f4b57",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 433706,
"upload_time": "2024-12-09T15:04:16",
"upload_time_iso_8601": "2024-12-09T15:04:16.476759Z",
"url": "https://files.pythonhosted.org/packages/91/6a/05875c2ef0692a4f9783605a12e0c175082686d74f9bf1517712e362e1d5/py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8edfc91ec4307be96b530b9aaf10315c3146c3a6ec6752cdce6fdc751fd11ee4",
"md5": "3cff2329e68653d52ae635036ce831f1",
"sha256": "42a00be8009d3c396bc9719fc743b85cb928cf163b081ad6ead8fc7c9c2fefdb"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3cff2329e68653d52ae635036ce831f1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 453329,
"upload_time": "2024-12-09T15:04:05",
"upload_time_iso_8601": "2024-12-09T15:04:05.308695Z",
"url": "https://files.pythonhosted.org/packages/8e/df/c91ec4307be96b530b9aaf10315c3146c3a6ec6752cdce6fdc751fd11ee4/py_bip39_bindings-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "994c37644ba79e663669f73b52159ded2e4f8e9ed303c7b6755061b0685830a6",
"md5": "0f7efed016be48ebfebda3aad0a5cb8b",
"sha256": "ccc54690103b537f6650a8053f905e56772ae0aeb7e456c062a290357953f292"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0f7efed016be48ebfebda3aad0a5cb8b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 602963,
"upload_time": "2024-12-09T15:04:33",
"upload_time_iso_8601": "2024-12-09T15:04:33.973384Z",
"url": "https://files.pythonhosted.org/packages/99/4c/37644ba79e663669f73b52159ded2e4f8e9ed303c7b6755061b0685830a6/py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1895b09c1ef3c262f137ba100a7f1fc7ef814005c9c7ab329eb9b8bbf40deab8",
"md5": "d792e62b3bf0b610c87d6f060e8d44bd",
"sha256": "59a954b4e22e3cb3da441a94576002eaaba0b9ad75956ebb871f9b8e8bd7044a"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d792e62b3bf0b610c87d6f060e8d44bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 700923,
"upload_time": "2024-12-09T15:04:46",
"upload_time_iso_8601": "2024-12-09T15:04:46.225087Z",
"url": "https://files.pythonhosted.org/packages/18/95/b09c1ef3c262f137ba100a7f1fc7ef814005c9c7ab329eb9b8bbf40deab8/py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23dc56d01fa7a44351bcc4d14b6cb32601a83a89cf3861804efdb05dde534f90",
"md5": "48820ac8ac98320d37c06e70755e3b1f",
"sha256": "54ac4841e7f018811b0ffa4baae5bce82347f448b99c13b030fb9a0c263efc3d"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "48820ac8ac98320d37c06e70755e3b1f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 629135,
"upload_time": "2024-12-09T15:04:59",
"upload_time_iso_8601": "2024-12-09T15:04:59.367509Z",
"url": "https://files.pythonhosted.org/packages/23/dc/56d01fa7a44351bcc4d14b6cb32601a83a89cf3861804efdb05dde534f90/py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c60cae449358a46474be1d7e041b074b29c04819db07deb3dad0e7ddf49b1b8c",
"md5": "dcb48a3eca860c0707a1d2b42db08cb2",
"sha256": "2d1cdceebf62c804d53ff676f14fcadf43eeac7e8b10af2058f9387b9417094d"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dcb48a3eca860c0707a1d2b42db08cb2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 604311,
"upload_time": "2024-12-09T15:05:12",
"upload_time_iso_8601": "2024-12-09T15:05:12.232366Z",
"url": "https://files.pythonhosted.org/packages/c6/0c/ae449358a46474be1d7e041b074b29c04819db07deb3dad0e7ddf49b1b8c/py_bip39_bindings-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3359f7903bc158dd15da8b5f87c8426367c4b8c1ff1cbe5601cb78a69c2fef25",
"md5": "7ec10d82908f4449ba86b58b3c0cb697",
"sha256": "be0786e712fb32efc55f06270c3da970e667dcec7f116b3defba802e6913e834"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "7ec10d82908f4449ba86b58b3c0cb697",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 284131,
"upload_time": "2024-12-09T15:05:32",
"upload_time_iso_8601": "2024-12-09T15:05:32.705943Z",
"url": "https://files.pythonhosted.org/packages/33/59/f7903bc158dd15da8b5f87c8426367c4b8c1ff1cbe5601cb78a69c2fef25/py_bip39_bindings-0.2.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f10420af46554b9f4323a4fe9db03adcef67123be463d810c3a3f8945b9c9e5",
"md5": "daf6a6ce04069335f14993380438fa57",
"sha256": "82593f31fb59f5b42ffdd4b177e0472ec32b178321063a93f6d609d672f0a087"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "daf6a6ce04069335f14993380438fa57",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 274609,
"upload_time": "2024-12-09T15:05:26",
"upload_time_iso_8601": "2024-12-09T15:05:26.347987Z",
"url": "https://files.pythonhosted.org/packages/2f/10/420af46554b9f4323a4fe9db03adcef67123be463d810c3a3f8945b9c9e5/py_bip39_bindings-0.2.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61931ced62883588d8c8631c502dee48eb8aae7782a85e37a249e8febbe2e790",
"md5": "999e83dbb2828a90b6099fe2e05c190c",
"sha256": "c763de71a7c83fcea7d6058a516e8ee3fd0f7111b6b02173381c35f48d96b090"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "999e83dbb2828a90b6099fe2e05c190c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 373324,
"upload_time": "2024-12-09T15:04:29",
"upload_time_iso_8601": "2024-12-09T15:04:29.541243Z",
"url": "https://files.pythonhosted.org/packages/61/93/1ced62883588d8c8631c502dee48eb8aae7782a85e37a249e8febbe2e790/py_bip39_bindings-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "378a7870abe65b02f6fe6d49ee2c74dfbe5d9b8a038223eb6cbc2d50014f4eb2",
"md5": "8c850204c7b983075a22317452e37df2",
"sha256": "c61f65286fe314c28a4cf78f92bd549dbcc8f2dad99034ec7b47a688b2695cae"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8c850204c7b983075a22317452e37df2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 366909,
"upload_time": "2024-12-09T15:04:26",
"upload_time_iso_8601": "2024-12-09T15:04:26.211721Z",
"url": "https://files.pythonhosted.org/packages/37/8a/7870abe65b02f6fe6d49ee2c74dfbe5d9b8a038223eb6cbc2d50014f4eb2/py_bip39_bindings-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ecbb448b3e1ffcd71773b889e2197cc5237f25f931defc741ad354f612e9536b",
"md5": "170949aae939d0cb0e7c1f80f7056098",
"sha256": "287301a2406e18cfb42bcc1b38cbd390ed11880cec371cd45471c00f75c3db8c"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "170949aae939d0cb0e7c1f80f7056098",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 424842,
"upload_time": "2024-12-09T15:03:28",
"upload_time_iso_8601": "2024-12-09T15:03:28.452033Z",
"url": "https://files.pythonhosted.org/packages/ec/bb/448b3e1ffcd71773b889e2197cc5237f25f931defc741ad354f612e9536b/py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fa46801cd146945eca93eb2dfb37fccd9b1fec291fa8e5288da1cff57d5fa8f",
"md5": "e013af4cb142a4283221db6f717e4f26",
"sha256": "69c55c11228f91de55415eb31d5e5e8007b0544a48e2780e521a15a3fb713e8f"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e013af4cb142a4283221db6f717e4f26",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 437603,
"upload_time": "2024-12-09T15:03:42",
"upload_time_iso_8601": "2024-12-09T15:03:42.523263Z",
"url": "https://files.pythonhosted.org/packages/8f/a4/6801cd146945eca93eb2dfb37fccd9b1fec291fa8e5288da1cff57d5fa8f/py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00625aca778da125acfadd958ef63cbf13cb2319b75c122209d347410d5cbec6",
"md5": "b9e033fb49e838b8251493c4f64efdc0",
"sha256": "8ec5e6adb8ea6ffa22ed701d9749a184a203005538e276dcd2de183f27edebef"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b9e033fb49e838b8251493c4f64efdc0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 473228,
"upload_time": "2024-12-09T15:03:54",
"upload_time_iso_8601": "2024-12-09T15:03:54.038802Z",
"url": "https://files.pythonhosted.org/packages/00/62/5aca778da125acfadd958ef63cbf13cb2319b75c122209d347410d5cbec6/py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b180a42dfd9bd5abbef43137a4b160a77ce7c8ae1bc140857b6251f3ad1428b",
"md5": "c0d0e1df64331e493380acc1e0c0c7c3",
"sha256": "831b0649d603b2e7905e09e39e36955f756abb19200beb630afc168b5c03d681"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c0d0e1df64331e493380acc1e0c0c7c3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 432654,
"upload_time": "2024-12-09T15:04:17",
"upload_time_iso_8601": "2024-12-09T15:04:17.593327Z",
"url": "https://files.pythonhosted.org/packages/3b/18/0a42dfd9bd5abbef43137a4b160a77ce7c8ae1bc140857b6251f3ad1428b/py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "debafe37cb1015444fab7af1e79ad3a6ae39e3a65988e70e14522f73476543e0",
"md5": "ad70e2af69188530850d006c08996501",
"sha256": "629399c400d605fbcb8de5ea942634ac06940e733e43753e0c23aee96fee6e45"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ad70e2af69188530850d006c08996501",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 452133,
"upload_time": "2024-12-09T15:04:06",
"upload_time_iso_8601": "2024-12-09T15:04:06.448901Z",
"url": "https://files.pythonhosted.org/packages/de/ba/fe37cb1015444fab7af1e79ad3a6ae39e3a65988e70e14522f73476543e0/py_bip39_bindings-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d969e2d30914fc46a1d01df9611f3f8ddd201a942bbf4395687248642d473e1c",
"md5": "2f56d40b8083a51c4907187fd1bfd852",
"sha256": "15daa05fa85564f3ef7f3251ba9616cfc48f48d467cbecaf241194d0f8f62194"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2f56d40b8083a51c4907187fd1bfd852",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 602568,
"upload_time": "2024-12-09T15:04:35",
"upload_time_iso_8601": "2024-12-09T15:04:35.199068Z",
"url": "https://files.pythonhosted.org/packages/d9/69/e2d30914fc46a1d01df9611f3f8ddd201a942bbf4395687248642d473e1c/py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a1e9744a9def2c76ff3dd4caedbf833a4a16e0ae64fa55b5101cbb3e840efec",
"md5": "0bf911b98b596880b01d8ec6b17712f6",
"sha256": "236aa7edb9ad3cade3e554743d00a620f47a228f36aa512dd0ee2fa75ea21c44"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0bf911b98b596880b01d8ec6b17712f6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 700117,
"upload_time": "2024-12-09T15:04:47",
"upload_time_iso_8601": "2024-12-09T15:04:47.669057Z",
"url": "https://files.pythonhosted.org/packages/4a/1e/9744a9def2c76ff3dd4caedbf833a4a16e0ae64fa55b5101cbb3e840efec/py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df339f7c0d826a040ce6873defe8a88bb297403eb30e5724a99e1e117efa437d",
"md5": "fe8bc8c3b394f1c933844d75a34a542f",
"sha256": "677ad9a382e8c2e73ca61f357a9c20a45885cd407afecc0c6e6604644c6ddfdc"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fe8bc8c3b394f1c933844d75a34a542f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 628003,
"upload_time": "2024-12-09T15:05:00",
"upload_time_iso_8601": "2024-12-09T15:05:00.690112Z",
"url": "https://files.pythonhosted.org/packages/df/33/9f7c0d826a040ce6873defe8a88bb297403eb30e5724a99e1e117efa437d/py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6719d22d55db0d662f1467437164b7171c9b89711d8db2e69c9040cc22fc13d1",
"md5": "1fa2ff7c4dd878f40763f414f0444477",
"sha256": "5f3b7bc29eda6ad7347caf07a91941a1c6a7c5c94212ffec7b056a9c4801911e"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1fa2ff7c4dd878f40763f414f0444477",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 602974,
"upload_time": "2024-12-09T15:05:13",
"upload_time_iso_8601": "2024-12-09T15:05:13.570058Z",
"url": "https://files.pythonhosted.org/packages/67/19/d22d55db0d662f1467437164b7171c9b89711d8db2e69c9040cc22fc13d1/py_bip39_bindings-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64bc7b20bdf20032fae9cf4238334bba22c39c295f52fb3e54579bf0df468d6b",
"md5": "98782512f87b39542ae1d34261bc84b3",
"sha256": "41f12635c5f0af0e406054d3a3ba0fad2045dfed461f43182bfa24edf11d90ca"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "98782512f87b39542ae1d34261bc84b3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 283891,
"upload_time": "2024-12-09T15:05:34",
"upload_time_iso_8601": "2024-12-09T15:05:34.001646Z",
"url": "https://files.pythonhosted.org/packages/64/bc/7b20bdf20032fae9cf4238334bba22c39c295f52fb3e54579bf0df468d6b/py_bip39_bindings-0.2.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "242a2a5a6e5d2dcb55b4fb649ed9fc3810fb3623feaf578acf793e2999020ace",
"md5": "66805ae9afafec719be07eaf7a3e2f10",
"sha256": "e3a4f2e05b6aaabbe3e59cebab72b57f216e118e5e3f167d93ee9b9e2257871b"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "66805ae9afafec719be07eaf7a3e2f10",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 274200,
"upload_time": "2024-12-09T15:05:27",
"upload_time_iso_8601": "2024-12-09T15:05:27.683343Z",
"url": "https://files.pythonhosted.org/packages/24/2a/2a5a6e5d2dcb55b4fb649ed9fc3810fb3623feaf578acf793e2999020ace/py_bip39_bindings-0.2.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7530f762daf12fa1f7aabaffe8389b7058cdee06eb0e05d49b8c4c887f348136",
"md5": "2f2d2c2521c80bcc2a6496a5557cf1fe",
"sha256": "21eed9f92eaf9746459cb7a2d0c97b98c885c51a279ec5bbf0b7ff8c26fe5bcc"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2f2d2c2521c80bcc2a6496a5557cf1fe",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 373493,
"upload_time": "2024-12-09T15:04:30",
"upload_time_iso_8601": "2024-12-09T15:04:30.771749Z",
"url": "https://files.pythonhosted.org/packages/75/30/f762daf12fa1f7aabaffe8389b7058cdee06eb0e05d49b8c4c887f348136/py_bip39_bindings-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55a3a188ef39ac60e05fcffa987ccdb56ccdf3b8caf78bf28df7ba5347faf47b",
"md5": "adef8484296b76a961d3235c26647f9a",
"sha256": "350e83133f4445c038d39ada05add91743bbff904774b220e5b143df4ca7c4c3"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "adef8484296b76a961d3235c26647f9a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 367095,
"upload_time": "2024-12-09T15:04:27",
"upload_time_iso_8601": "2024-12-09T15:04:27.295218Z",
"url": "https://files.pythonhosted.org/packages/55/a3/a188ef39ac60e05fcffa987ccdb56ccdf3b8caf78bf28df7ba5347faf47b/py_bip39_bindings-0.2.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24caaaa0c34396746b5d9f286cdbac781d17c7e96c6a4579bc4ce8c6f3309611",
"md5": "5acd9c198223ece55b963f6accdeb3e3",
"sha256": "c46c3aca25f0c9840303d1fc16ad21b3bc620255e9a09fe0f739108419029245"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5acd9c198223ece55b963f6accdeb3e3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 424805,
"upload_time": "2024-12-09T15:03:30",
"upload_time_iso_8601": "2024-12-09T15:03:30.439173Z",
"url": "https://files.pythonhosted.org/packages/24/ca/aaa0c34396746b5d9f286cdbac781d17c7e96c6a4579bc4ce8c6f3309611/py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "023041f410953a8da779c654ce417bbcb13e66143fa29fbc393a5a5a8e9aebec",
"md5": "dadc49209fc201c8cbbe9c0650a6e647",
"sha256": "57bd5454a3f4cad68ebb3b5978f166cb01bf0153f39e7bfc83af99399f142374"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "dadc49209fc201c8cbbe9c0650a6e647",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 437516,
"upload_time": "2024-12-09T15:03:43",
"upload_time_iso_8601": "2024-12-09T15:03:43.957537Z",
"url": "https://files.pythonhosted.org/packages/02/30/41f410953a8da779c654ce417bbcb13e66143fa29fbc393a5a5a8e9aebec/py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a73c0bcb83ddf38369dd08f80c70444ba72ab7027095fb22970949fd5b1267e",
"md5": "8241dc4bed2be3e20c2edec7bb5811f9",
"sha256": "8039f96b52b4ab348e01459e24355b62a6ad1d6a6ab9b3fcb40cfc404640ca9f"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8241dc4bed2be3e20c2edec7bb5811f9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 473044,
"upload_time": "2024-12-09T15:03:56",
"upload_time_iso_8601": "2024-12-09T15:03:56.054960Z",
"url": "https://files.pythonhosted.org/packages/7a/73/c0bcb83ddf38369dd08f80c70444ba72ab7027095fb22970949fd5b1267e/py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50728cddb7a588e38daaacfe4f3001618d4fa1ef3add1e8f90cc9b3cefe2f600",
"md5": "860122408a0bdbdd5fa7c90b6835ccd2",
"sha256": "6919cd972bad09afacd266af560379bafc10f708c959d2353aea1584019de023"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "860122408a0bdbdd5fa7c90b6835ccd2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 432761,
"upload_time": "2024-12-09T15:04:19",
"upload_time_iso_8601": "2024-12-09T15:04:19.564836Z",
"url": "https://files.pythonhosted.org/packages/50/72/8cddb7a588e38daaacfe4f3001618d4fa1ef3add1e8f90cc9b3cefe2f600/py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0925a6d1c1131c6c2f7bb59a7abbd47a234a4ce0afd5d2cb35610080ee79e340",
"md5": "945b12d172ca2273d231b5afd164401a",
"sha256": "4737db37d8800eb2de056b736058b7d3f2d7c424320d26e275d9015b05b1f562"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "945b12d172ca2273d231b5afd164401a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 452250,
"upload_time": "2024-12-09T15:04:07",
"upload_time_iso_8601": "2024-12-09T15:04:07.578936Z",
"url": "https://files.pythonhosted.org/packages/09/25/a6d1c1131c6c2f7bb59a7abbd47a234a4ce0afd5d2cb35610080ee79e340/py_bip39_bindings-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89b9fbafc90a2d2f4f90f6aff3dd64efd0448974612a8297737bf9501e678f22",
"md5": "aa850884bee3b3115c00e8b9754ae59c",
"sha256": "98df51a42035466cab5dfb69faec63c2e666c391ff6746a8603cc9cabfcebe24"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "aa850884bee3b3115c00e8b9754ae59c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 602583,
"upload_time": "2024-12-09T15:04:36",
"upload_time_iso_8601": "2024-12-09T15:04:36.502378Z",
"url": "https://files.pythonhosted.org/packages/89/b9/fbafc90a2d2f4f90f6aff3dd64efd0448974612a8297737bf9501e678f22/py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2097b2cf57e4b62b2cfaefe707db8f09891ff9ab28101c62a6f052378466581d",
"md5": "d4738c0dbb5077c12f11def50c24a573",
"sha256": "d55c6af3cebb5c640ff12d29d7ca152d2b8188db49b0a53fc52fd2a748a7e231"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d4738c0dbb5077c12f11def50c24a573",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 700060,
"upload_time": "2024-12-09T15:04:49",
"upload_time_iso_8601": "2024-12-09T15:04:49.852141Z",
"url": "https://files.pythonhosted.org/packages/20/97/b2cf57e4b62b2cfaefe707db8f09891ff9ab28101c62a6f052378466581d/py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55d3cf80afc7c859be56024b1c07f6fe8152880d5885f6a534913fb2115de771",
"md5": "46b0be476295dce9296bd34811e8caa4",
"sha256": "eae5c4956613134ec5abc696121272a6ce7107af1509d8cdea3e24db1dff351b"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "46b0be476295dce9296bd34811e8caa4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 628070,
"upload_time": "2024-12-09T15:05:01",
"upload_time_iso_8601": "2024-12-09T15:05:01.944024Z",
"url": "https://files.pythonhosted.org/packages/55/d3/cf80afc7c859be56024b1c07f6fe8152880d5885f6a534913fb2115de771/py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9a88a07fc64d8f06cfd148bb1839f3dcd79449d1d7f9d811dacd118ab046b8b",
"md5": "a4071e925ba000ac54b0c02fb880a6f8",
"sha256": "071c4e67e9ae4a5ae12d781483f3a46d81d6b20be965dade39044ed0f89df34a"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a4071e925ba000ac54b0c02fb880a6f8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 603201,
"upload_time": "2024-12-09T15:05:15",
"upload_time_iso_8601": "2024-12-09T15:05:15.691385Z",
"url": "https://files.pythonhosted.org/packages/e9/a8/8a07fc64d8f06cfd148bb1839f3dcd79449d1d7f9d811dacd118ab046b8b/py_bip39_bindings-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "776ea970c42c5ebac1e265ecd27f70091793ff0bb10b9f28d9d792034d9336cd",
"md5": "91c1ffb8f355e07bc03e2ef94f455279",
"sha256": "d7642f598e9cd7caddcc2f57f50335a16677c02bb9a7c9bb01b1814ddab85bb5"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "91c1ffb8f355e07bc03e2ef94f455279",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 424975,
"upload_time": "2024-12-09T15:03:32",
"upload_time_iso_8601": "2024-12-09T15:03:32.150040Z",
"url": "https://files.pythonhosted.org/packages/77/6e/a970c42c5ebac1e265ecd27f70091793ff0bb10b9f28d9d792034d9336cd/py_bip39_bindings-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a37aa9281012ba3383530da8ce5cc3c350488564105bd8d3a1863a8ac239b2f1",
"md5": "727565350b068b86b437ccf728e4c9c4",
"sha256": "0d0cff505237fd8c7103243f242610501afcd8a917ce484e50097189a7115c55"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "727565350b068b86b437ccf728e4c9c4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 437063,
"upload_time": "2024-12-09T15:03:45",
"upload_time_iso_8601": "2024-12-09T15:03:45.110844Z",
"url": "https://files.pythonhosted.org/packages/a3/7a/a9281012ba3383530da8ce5cc3c350488564105bd8d3a1863a8ac239b2f1/py_bip39_bindings-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61c5d169677f066e676efa33a1bdad33c3195b417572c287bb55c924b57436a1",
"md5": "494903004c81e503a3f4bbc92c90088a",
"sha256": "6fec3d7b30980978bd73103e27907ca37766762c21cfce1abcc6f9032d54274f"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "494903004c81e503a3f4bbc92c90088a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 473567,
"upload_time": "2024-12-09T15:03:57",
"upload_time_iso_8601": "2024-12-09T15:03:57.143618Z",
"url": "https://files.pythonhosted.org/packages/61/c5/d169677f066e676efa33a1bdad33c3195b417572c287bb55c924b57436a1/py_bip39_bindings-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9f4397fefe24a92126514dea6f94783ac8816f7b7d470a43582cd14f1f27d71",
"md5": "acffe8205040f5ab8a42c65c22b816e9",
"sha256": "876006fa8936ad413d2f53e67246478fc94c19d38dc45f6bfd5f9861853ac999"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "acffe8205040f5ab8a42c65c22b816e9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 602951,
"upload_time": "2024-12-09T15:04:37",
"upload_time_iso_8601": "2024-12-09T15:04:37.698981Z",
"url": "https://files.pythonhosted.org/packages/d9/f4/397fefe24a92126514dea6f94783ac8816f7b7d470a43582cd14f1f27d71/py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e8213e2ca5e43f2c7219fafa069341d52ee1867c2d929a019574ec90f6d0114",
"md5": "89ad3f055e575de1b450ae9bb8a9148b",
"sha256": "e6064feb105ed5c7278d19e8c4e371710ce56adcdd48e0c5e6b77f9b005201b9"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "89ad3f055e575de1b450ae9bb8a9148b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 699630,
"upload_time": "2024-12-09T15:04:51",
"upload_time_iso_8601": "2024-12-09T15:04:51.103461Z",
"url": "https://files.pythonhosted.org/packages/3e/82/13e2ca5e43f2c7219fafa069341d52ee1867c2d929a019574ec90f6d0114/py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78d7f4c33dbc311cd07946994481dea7f09e417a29dc46e3c6de81d367a87194",
"md5": "2c314cb514e3fc31951d13c5429f7987",
"sha256": "0cb7a39bd65455c4cc3feb3f8d5766644410f32ac137aeea88b119c6ebe2d58b"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2c314cb514e3fc31951d13c5429f7987",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 627655,
"upload_time": "2024-12-09T15:05:03",
"upload_time_iso_8601": "2024-12-09T15:05:03.212790Z",
"url": "https://files.pythonhosted.org/packages/78/d7/f4c33dbc311cd07946994481dea7f09e417a29dc46e3c6de81d367a87194/py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31687dbb7f20d64222bd64e56d976e30614fb10d8b9dd60547028cf12b7d23a4",
"md5": "41e0c31ddad29e532e0a0939dfee95ed",
"sha256": "58743e95cedee157a545d060ee401639308f995badb91477d195f1d571664b65"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "41e0c31ddad29e532e0a0939dfee95ed",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 603340,
"upload_time": "2024-12-09T15:05:17",
"upload_time_iso_8601": "2024-12-09T15:05:17.062890Z",
"url": "https://files.pythonhosted.org/packages/31/68/7dbb7f20d64222bd64e56d976e30614fb10d8b9dd60547028cf12b7d23a4/py_bip39_bindings-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ed5d5b79e579230cd60ddb117e04f1076562920400318f5d14352dd093dfa35",
"md5": "767e58fd59577eaaba8e2e5447024d63",
"sha256": "84f4c53eab32476e3a9dd473ad4e0093dd284e7868da886d37a0be9e67ec7509"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "767e58fd59577eaaba8e2e5447024d63",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 426011,
"upload_time": "2024-12-09T15:03:33",
"upload_time_iso_8601": "2024-12-09T15:03:33.169589Z",
"url": "https://files.pythonhosted.org/packages/8e/d5/d5b79e579230cd60ddb117e04f1076562920400318f5d14352dd093dfa35/py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb323bd8200c4660f56d3bf95659974828ed3899f1f2f691888b59db1eecc006",
"md5": "90581b34cca18286fe8f132e77541708",
"sha256": "e219d724c39cbaaabab1d1f10975399d46ba83a228437680dc29ccb7c8b4d38d"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "90581b34cca18286fe8f132e77541708",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 437855,
"upload_time": "2024-12-09T15:03:46",
"upload_time_iso_8601": "2024-12-09T15:03:46.329242Z",
"url": "https://files.pythonhosted.org/packages/eb/32/3bd8200c4660f56d3bf95659974828ed3899f1f2f691888b59db1eecc006/py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b8d292e2b177f3e08a8cd87780f2a6de2848df136541fd0a1ac22416c6ab757",
"md5": "0422a157ed66e9bbf340ae0b628208a6",
"sha256": "8fda7efd3befc614966169c10a4d5f60958698c13d4d0b97f069540220b45544"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0422a157ed66e9bbf340ae0b628208a6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 474371,
"upload_time": "2024-12-09T15:03:58",
"upload_time_iso_8601": "2024-12-09T15:03:58.296413Z",
"url": "https://files.pythonhosted.org/packages/4b/8d/292e2b177f3e08a8cd87780f2a6de2848df136541fd0a1ac22416c6ab757/py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe57af5aa59f2dc9206f0da0ccee364e719b99e35e3e9a2b7d64bc8f70242ae8",
"md5": "ae6a6423a0fb99f87831311dc19a946f",
"sha256": "5319b6ad23e46e8521fa23c0204ba22bbc5ebc5002f8808182b07c216223b8ed"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ae6a6423a0fb99f87831311dc19a946f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 434603,
"upload_time": "2024-12-09T15:04:20",
"upload_time_iso_8601": "2024-12-09T15:04:20.779334Z",
"url": "https://files.pythonhosted.org/packages/fe/57/af5aa59f2dc9206f0da0ccee364e719b99e35e3e9a2b7d64bc8f70242ae8/py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e0c37bc95b64119ccf8a9622afbb2f3a275ce46c3eb5b42bc1d96ad24e03733",
"md5": "b5228d880ea942072b086739c9f90b53",
"sha256": "a1b1de6b2e12a7992aa91501e80724b89a4636b91b22a2288bae5c417e358466"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b5228d880ea942072b086739c9f90b53",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 453298,
"upload_time": "2024-12-09T15:04:10",
"upload_time_iso_8601": "2024-12-09T15:04:10.571540Z",
"url": "https://files.pythonhosted.org/packages/7e/0c/37bc95b64119ccf8a9622afbb2f3a275ce46c3eb5b42bc1d96ad24e03733/py_bip39_bindings-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4104065a4c48bf5b2ad5291a524c582af7ed08f56ad4953e292123b7c9effd6",
"md5": "749de8b163396ef89a3e36821b8d32f2",
"sha256": "bae82c4505a79ed7f621d45e9ea225e7cd5e0804ce4c8022ab7a2b92bd007d53"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "749de8b163396ef89a3e36821b8d32f2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 603684,
"upload_time": "2024-12-09T15:04:38",
"upload_time_iso_8601": "2024-12-09T15:04:38.914769Z",
"url": "https://files.pythonhosted.org/packages/d4/10/4065a4c48bf5b2ad5291a524c582af7ed08f56ad4953e292123b7c9effd6/py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "240a9eac56e610faac258c06ff9482011b64562372e774095234045f89be4a68",
"md5": "7c6b157bfddc943ef5d78d0461ef1507",
"sha256": "d42d44532f395c59059551fd030e91dd39cbe1b30cb7a1cf7636f9a6a6a36a94"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7c6b157bfddc943ef5d78d0461ef1507",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 700794,
"upload_time": "2024-12-09T15:04:52",
"upload_time_iso_8601": "2024-12-09T15:04:52.925840Z",
"url": "https://files.pythonhosted.org/packages/24/0a/9eac56e610faac258c06ff9482011b64562372e774095234045f89be4a68/py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20340062c1a1407dd6de55ab98e122bb9c2ba9600bd690189265e4c37afe564d",
"md5": "1bd2a929b8cadc0724c57dc7cd9495f2",
"sha256": "a29bca14abb51449bd051d59040966c6feff43b01f6b8a9669d876d7195d215f"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1bd2a929b8cadc0724c57dc7cd9495f2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 629070,
"upload_time": "2024-12-09T15:05:04",
"upload_time_iso_8601": "2024-12-09T15:05:04.519685Z",
"url": "https://files.pythonhosted.org/packages/20/34/0062c1a1407dd6de55ab98e122bb9c2ba9600bd690189265e4c37afe564d/py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa540f71b6266f0e82f49a0f9629e4f27b49b25825b69619ff8d9046152ec00b",
"md5": "787a6bf99d1c28a41bbd9f39baf276ec",
"sha256": "e7cb5aefdbc142b5c9b56b2c89c0112fd2288d52be8024cf1f1b66a4b84e3c83"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "787a6bf99d1c28a41bbd9f39baf276ec",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 604583,
"upload_time": "2024-12-09T15:05:18",
"upload_time_iso_8601": "2024-12-09T15:05:18.339662Z",
"url": "https://files.pythonhosted.org/packages/fa/54/0f71b6266f0e82f49a0f9629e4f27b49b25825b69619ff8d9046152ec00b/py_bip39_bindings-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe32bf44a93d1ef5ec26b75a9073cdb0591436f53013626bde51f4d8bd81537a",
"md5": "ce766ed698df3941a46d6b0c59aa6af9",
"sha256": "e846c0eebeb0b684da4d41ac0751e510f91d7568cc9bc085cb93aa50d9b1ee6e"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "ce766ed698df3941a46d6b0c59aa6af9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 284234,
"upload_time": "2024-12-09T15:05:35",
"upload_time_iso_8601": "2024-12-09T15:05:35.375513Z",
"url": "https://files.pythonhosted.org/packages/fe/32/bf44a93d1ef5ec26b75a9073cdb0591436f53013626bde51f4d8bd81537a/py_bip39_bindings-0.2.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "754089db1afa63a4b94fd36aef4cd0bc674a8d896396ac7782fcd49a34d66185",
"md5": "48cdd6422d145dae545ae489eba8a6fe",
"sha256": "0a2024c9e9a5b9d90ab9c1fdaddd1abb7e632ef309efc4b89656fc25689c4456"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "48cdd6422d145dae545ae489eba8a6fe",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 274499,
"upload_time": "2024-12-09T15:05:28",
"upload_time_iso_8601": "2024-12-09T15:05:28.873978Z",
"url": "https://files.pythonhosted.org/packages/75/40/89db1afa63a4b94fd36aef4cd0bc674a8d896396ac7782fcd49a34d66185/py_bip39_bindings-0.2.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31f76fec0f819e36a103e2636bdacabc09f88ceb4bf3baeb412ad715056f5798",
"md5": "d7808a98043b150742f0564221be2717",
"sha256": "5e3438f2568c1fdd8862a9946800570dbb8665b6c46412fa60745975cd82083a"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d7808a98043b150742f0564221be2717",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 426395,
"upload_time": "2024-12-09T15:03:34",
"upload_time_iso_8601": "2024-12-09T15:03:34.976142Z",
"url": "https://files.pythonhosted.org/packages/31/f7/6fec0f819e36a103e2636bdacabc09f88ceb4bf3baeb412ad715056f5798/py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cb52d4844bc6c22e23658cfc971ea22e9309aa536ff33da1b7c90b0c1adff45",
"md5": "ea9d7694e5e30f3410f46431c5a317ac",
"sha256": "d5339d0b99d2ce9835f467ed3790399793ed4d51982881ff9c1f854649055d42"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ea9d7694e5e30f3410f46431c5a317ac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 438634,
"upload_time": "2024-12-09T15:03:47",
"upload_time_iso_8601": "2024-12-09T15:03:47.569722Z",
"url": "https://files.pythonhosted.org/packages/2c/b5/2d4844bc6c22e23658cfc971ea22e9309aa536ff33da1b7c90b0c1adff45/py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15bdbb9ef9502a7a69f6db22023c3c3fd9e5209c735b4f432f486be8f88f57ce",
"md5": "5f08b81a8eb3b660102d8843d6091fac",
"sha256": "856b69bc125c40264bf9e749efc1b66405b27cfc4c7f96cd3c5e6a657b143859"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5f08b81a8eb3b660102d8843d6091fac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 474548,
"upload_time": "2024-12-09T15:03:59",
"upload_time_iso_8601": "2024-12-09T15:03:59.431431Z",
"url": "https://files.pythonhosted.org/packages/15/bd/bb9ef9502a7a69f6db22023c3c3fd9e5209c735b4f432f486be8f88f57ce/py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f13fe9d3c47e7548a28e0b2eb900aa5541c28fe3ddd94982dbcc9e1bd1c3f722",
"md5": "f28bebda16a167023cca875fd3b782e9",
"sha256": "91cffd83189f42f2945693786104c51fa775ba8f09c532bf8c504916d6ddb565"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f28bebda16a167023cca875fd3b782e9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 434996,
"upload_time": "2024-12-09T15:04:22",
"upload_time_iso_8601": "2024-12-09T15:04:22.786454Z",
"url": "https://files.pythonhosted.org/packages/f1/3f/e9d3c47e7548a28e0b2eb900aa5541c28fe3ddd94982dbcc9e1bd1c3f722/py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e0af39eacff37920098b53a96427bdd31cc32489408618e7b3cb25223aaa7bd",
"md5": "97104047adf2a9bb3efbf80a9d12de1b",
"sha256": "c72195aa802a36ad81bcc07fc23d59b83214511b1569e5cb245402a9209614e7"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "97104047adf2a9bb3efbf80a9d12de1b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 453680,
"upload_time": "2024-12-09T15:04:11",
"upload_time_iso_8601": "2024-12-09T15:04:11.968722Z",
"url": "https://files.pythonhosted.org/packages/0e/0a/f39eacff37920098b53a96427bdd31cc32489408618e7b3cb25223aaa7bd/py_bip39_bindings-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbed88743357a275a01f74103a5b0347c7696e8bd7f36b477afab8aa1ce39c09",
"md5": "c1f1ca88fe44f3edccf067b9c56a9d48",
"sha256": "a5224fc1417d35413f914bbe414b276941dd1d03466ed8a8a259dc4fa330b60c"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c1f1ca88fe44f3edccf067b9c56a9d48",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 604011,
"upload_time": "2024-12-09T15:04:40",
"upload_time_iso_8601": "2024-12-09T15:04:40.241589Z",
"url": "https://files.pythonhosted.org/packages/db/ed/88743357a275a01f74103a5b0347c7696e8bd7f36b477afab8aa1ce39c09/py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0bd09cb46a84ff0c4cd105e1e90249faeb823ac2b877fc2a9b8c757ba2cfda5c",
"md5": "9b1d72676f7bca062d5d6532050ff7ac",
"sha256": "86265b865bcacd3fcd30f89012cd248142d3eb6f36785c213f00d2d84d41e6fc"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "9b1d72676f7bca062d5d6532050ff7ac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 701003,
"upload_time": "2024-12-09T15:04:54",
"upload_time_iso_8601": "2024-12-09T15:04:54.348503Z",
"url": "https://files.pythonhosted.org/packages/0b/d0/9cb46a84ff0c4cd105e1e90249faeb823ac2b877fc2a9b8c757ba2cfda5c/py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34216394eefa2de34b711459c701066ca7057ed59672dbee217f2316570d20b0",
"md5": "fd9bb550155206b1ba707ad01ad28755",
"sha256": "96337e30589963b6b849415e0c1dc9fe5c671f51c1f10e10e40f825460078318"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fd9bb550155206b1ba707ad01ad28755",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 629481,
"upload_time": "2024-12-09T15:05:05",
"upload_time_iso_8601": "2024-12-09T15:05:05.801074Z",
"url": "https://files.pythonhosted.org/packages/34/21/6394eefa2de34b711459c701066ca7057ed59672dbee217f2316570d20b0/py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a3e42b0fc91bbba8b12da8b6dafe734751d101ac7460c9104aa4bafe85a62a8",
"md5": "8fa510c6f9e989902d8903c980f2f21b",
"sha256": "07f2cd20581104c2bc02ccf90aaeb5e31b7dda2bbdb24afbaef69d410eb18bf0"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8fa510c6f9e989902d8903c980f2f21b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 605255,
"upload_time": "2024-12-09T15:05:20",
"upload_time_iso_8601": "2024-12-09T15:05:20.366643Z",
"url": "https://files.pythonhosted.org/packages/8a/3e/42b0fc91bbba8b12da8b6dafe734751d101ac7460c9104aa4bafe85a62a8/py_bip39_bindings-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e54166f7e640fc30af918b49783c8f31a2325014aa844c8b095ff7f6b3339f4d",
"md5": "7d981084f0b0680acd7b30f174f536d6",
"sha256": "d26f9e2007c1275a869711bae2d1f1c6f99feadc3ea8ebb0aed4b69d1290bfa9"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "7d981084f0b0680acd7b30f174f536d6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 284273,
"upload_time": "2024-12-09T15:05:36",
"upload_time_iso_8601": "2024-12-09T15:05:36.784810Z",
"url": "https://files.pythonhosted.org/packages/e5/41/66f7e640fc30af918b49783c8f31a2325014aa844c8b095ff7f6b3339f4d/py_bip39_bindings-0.2.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "608b057eca16a946da490cb5c784eae75c0f5f1cd96fe4b4619e523bcdcd231d",
"md5": "10dddc7e52cf74e8c49d2561a1f00767",
"sha256": "3e79ad1cbf5410db23db6579111ed27aa7fac38969739040a9e3909a10d303fc"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "10dddc7e52cf74e8c49d2561a1f00767",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 274654,
"upload_time": "2024-12-09T15:05:30",
"upload_time_iso_8601": "2024-12-09T15:05:30.079929Z",
"url": "https://files.pythonhosted.org/packages/60/8b/057eca16a946da490cb5c784eae75c0f5f1cd96fe4b4619e523bcdcd231d/py_bip39_bindings-0.2.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1216476667597250fda9ddc191cd4ce019d8a156ecc047336b9f41aa52176193",
"md5": "1d0bca8f57179b660d72f6e8f5cf24ed",
"sha256": "2491fc1a1c37052cf9538118ddde51c94a0d85804a6d06fddb930114a8f41385"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1d0bca8f57179b660d72f6e8f5cf24ed",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 426115,
"upload_time": "2024-12-09T15:03:36",
"upload_time_iso_8601": "2024-12-09T15:03:36.102792Z",
"url": "https://files.pythonhosted.org/packages/12/16/476667597250fda9ddc191cd4ce019d8a156ecc047336b9f41aa52176193/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da58eeefd175cd650cf6ee8545765e27a3eec1faf8b110963102a287a028207d",
"md5": "55294cf4cd652ae516e7abf7e332b35f",
"sha256": "5ecf247c9ea0c32c37bdde2db616cf3fff3d29a6b4c8945957f13e4c9e32c71a"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "55294cf4cd652ae516e7abf7e332b35f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 438976,
"upload_time": "2024-12-09T15:03:48",
"upload_time_iso_8601": "2024-12-09T15:03:48.836422Z",
"url": "https://files.pythonhosted.org/packages/da/58/eeefd175cd650cf6ee8545765e27a3eec1faf8b110963102a287a028207d/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef6495d7c8ada94015e8e66525707ea53874bf1efaafd4547d534239b6461088",
"md5": "21b6d37b02c5b869f0996eca22dac17a",
"sha256": "7ce39808c717b13c02edca9eea4d139fc4d86c01acad99efb113b04e9639e2b9"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "21b6d37b02c5b869f0996eca22dac17a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 474454,
"upload_time": "2024-12-09T15:04:01",
"upload_time_iso_8601": "2024-12-09T15:04:01.021903Z",
"url": "https://files.pythonhosted.org/packages/ef/64/95d7c8ada94015e8e66525707ea53874bf1efaafd4547d534239b6461088/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6612ceb96b8c513506c698dafe20dd06e378311fff1d095beb30429aa4705a99",
"md5": "30ffbeba7341f78fdce5bbd7655f13ff",
"sha256": "9c5f38b01283e5973b1dfcdedc4e941c463f89879dc5d86463e77e816d240182"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "30ffbeba7341f78fdce5bbd7655f13ff",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 434701,
"upload_time": "2024-12-09T15:04:24",
"upload_time_iso_8601": "2024-12-09T15:04:24.056690Z",
"url": "https://files.pythonhosted.org/packages/66/12/ceb96b8c513506c698dafe20dd06e378311fff1d095beb30429aa4705a99/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39343905794b77f5d8c6eb8a7c80c6a7c5aa3c66615775d349eca2dcc41d8ea3",
"md5": "60f8eabf253a33fec89dfd90198b73de",
"sha256": "4fb1503c87e3d97f6802b28bd3b808ce5f0d88b7a38ed413275616d1962f0a6d"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "60f8eabf253a33fec89dfd90198b73de",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 453571,
"upload_time": "2024-12-09T15:04:13",
"upload_time_iso_8601": "2024-12-09T15:04:13.281951Z",
"url": "https://files.pythonhosted.org/packages/39/34/3905794b77f5d8c6eb8a7c80c6a7c5aa3c66615775d349eca2dcc41d8ea3/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f998ab9420c853d2c39b22c87207fe2c20bb82a41de81fcf9b44b32a3fc3c1f",
"md5": "136680e4a99f85ad99aedac925e91cb7",
"sha256": "e9ae6318f14bf8683cc11714516a04ac60095eab1aaf6ca6d1c99d508e399c64"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "136680e4a99f85ad99aedac925e91cb7",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 603670,
"upload_time": "2024-12-09T15:04:42",
"upload_time_iso_8601": "2024-12-09T15:04:42.427036Z",
"url": "https://files.pythonhosted.org/packages/0f/99/8ab9420c853d2c39b22c87207fe2c20bb82a41de81fcf9b44b32a3fc3c1f/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d637dc3055a60a5c692db3b2ae69f6b3497ad742daf985572a0973d7eeddf7d6",
"md5": "ae4f573cb1370201aa2f9272c889d27a",
"sha256": "7be4ac068391c80fdee956f7c4309533fcf7a4fae45dec46179af757961efefc"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "ae4f573cb1370201aa2f9272c889d27a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 701103,
"upload_time": "2024-12-09T15:04:55",
"upload_time_iso_8601": "2024-12-09T15:04:55.745903Z",
"url": "https://files.pythonhosted.org/packages/d6/37/dc3055a60a5c692db3b2ae69f6b3497ad742daf985572a0973d7eeddf7d6/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fd81db987a0618f44a0484fcf7e5da837c335f6d9e1a6b3f53fe3bfba61cd5b",
"md5": "519861c186a11b084f3b8e00981fd247",
"sha256": "e26059b46eff40ccb282966c49c475633cd7d3a1c08780fff3527d2ff247a014"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "519861c186a11b084f3b8e00981fd247",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 629702,
"upload_time": "2024-12-09T15:05:07",
"upload_time_iso_8601": "2024-12-09T15:05:07.850339Z",
"url": "https://files.pythonhosted.org/packages/3f/d8/1db987a0618f44a0484fcf7e5da837c335f6d9e1a6b3f53fe3bfba61cd5b/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "930142df0c2662b0cdbb0206e030b533b0e7c4b368ef7ea081e27cc6c06934f7",
"md5": "6aa2dc8688f97e2d0f393d6cfcabddfe",
"sha256": "e8a63d04f68269e7e42219b30ff1e1e013f08d2fecef3f39f1588db512339509"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6aa2dc8688f97e2d0f393d6cfcabddfe",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 605026,
"upload_time": "2024-12-09T15:05:21",
"upload_time_iso_8601": "2024-12-09T15:05:21.859917Z",
"url": "https://files.pythonhosted.org/packages/93/01/42df0c2662b0cdbb0206e030b533b0e7c4b368ef7ea081e27cc6c06934f7/py_bip39_bindings-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a0ca2a007ef4d37d9a5cfb44ad1f3643a29d916a4a1e95fcde8ed743a6403ce",
"md5": "e37f01f664d0e79b6df50df0d14264ca",
"sha256": "4b85cb77708a4d1aceac8140604148c97894d3e7a3a531f8cfb82a85c574e4ac"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e37f01f664d0e79b6df50df0d14264ca",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 426373,
"upload_time": "2024-12-09T15:03:37",
"upload_time_iso_8601": "2024-12-09T15:03:37.190431Z",
"url": "https://files.pythonhosted.org/packages/7a/0c/a2a007ef4d37d9a5cfb44ad1f3643a29d916a4a1e95fcde8ed743a6403ce/py_bip39_bindings-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62245933843a6484227f9e18fd92b4f913cca59215b4e368dd86051b953f7474",
"md5": "4bce1e8f7e6b90fe0cca2928173c5049",
"sha256": "57a0c57a431fcd9873ae3d00b6227e39b80e63d9924d74a9f34972fd9f2e3076"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4bce1e8f7e6b90fe0cca2928173c5049",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 439209,
"upload_time": "2024-12-09T15:03:50",
"upload_time_iso_8601": "2024-12-09T15:03:50.556861Z",
"url": "https://files.pythonhosted.org/packages/62/24/5933843a6484227f9e18fd92b4f913cca59215b4e368dd86051b953f7474/py_bip39_bindings-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3a68d49e072092cd2c1774f52d1e1f2c9ac13d36bcad8fe90985a17af3b5fc6",
"md5": "5da2186a7a5b684d5c72b2921157dcea",
"sha256": "28bc089c7a7f22ac67de0e9e8308873c151cac9c5320c610392cdcb1c20e915e"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5da2186a7a5b684d5c72b2921157dcea",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 473978,
"upload_time": "2024-12-09T15:04:02",
"upload_time_iso_8601": "2024-12-09T15:04:02.187965Z",
"url": "https://files.pythonhosted.org/packages/c3/a6/8d49e072092cd2c1774f52d1e1f2c9ac13d36bcad8fe90985a17af3b5fc6/py_bip39_bindings-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b0c1cdc9b2e306c35d1b7283bd64dce07e0836a0df7359d328800e857f8d217",
"md5": "f114afa1769b2c08c54c78d6e7e3becc",
"sha256": "bfcec453c1069e87791ed0e1bc7168bbc3883dd40b0d7b35236e77dd0b1411c0"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f114afa1769b2c08c54c78d6e7e3becc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 604001,
"upload_time": "2024-12-09T15:04:43",
"upload_time_iso_8601": "2024-12-09T15:04:43.585062Z",
"url": "https://files.pythonhosted.org/packages/6b/0c/1cdc9b2e306c35d1b7283bd64dce07e0836a0df7359d328800e857f8d217/py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1271a83d0141ea4275defb4ab903713dd47ccb3d31459819d017b31596dea0ac",
"md5": "c8ab4f9a29185a51033682cf97e552fa",
"sha256": "850cd2b2341a5438ae23b53054f1130f377813417f1fbe56c8424224dad0a408"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c8ab4f9a29185a51033682cf97e552fa",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 701207,
"upload_time": "2024-12-09T15:04:57",
"upload_time_iso_8601": "2024-12-09T15:04:57.010188Z",
"url": "https://files.pythonhosted.org/packages/12/71/a83d0141ea4275defb4ab903713dd47ccb3d31459819d017b31596dea0ac/py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0bc8783662e549b1672c6fea6e2dbfbe523b1d2afd71713e2815d62e865099d",
"md5": "bac9edd9103352b1469951cab990f959",
"sha256": "424a2df31bcd3c9649598fc1ea443267db724754f9ec19ac3bd2c42542643043"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bac9edd9103352b1469951cab990f959",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 630292,
"upload_time": "2024-12-09T15:05:09",
"upload_time_iso_8601": "2024-12-09T15:05:09.690840Z",
"url": "https://files.pythonhosted.org/packages/a0/bc/8783662e549b1672c6fea6e2dbfbe523b1d2afd71713e2815d62e865099d/py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "331d62753a93d03763322bdeedc1805aab3ce436f11f6e9d5e3ed8d44ea1842b",
"md5": "dab341bde061595357c624e8fa8d0e7d",
"sha256": "06fe0f8bb2bd28266bf5182320b3f0cef94b103e03e81999f67cae194b7ea097"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dab341bde061595357c624e8fa8d0e7d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 605117,
"upload_time": "2024-12-09T15:05:23",
"upload_time_iso_8601": "2024-12-09T15:05:23.174815Z",
"url": "https://files.pythonhosted.org/packages/33/1d/62753a93d03763322bdeedc1805aab3ce436f11f6e9d5e3ed8d44ea1842b/py_bip39_bindings-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ae188d75d69d08322555e5fc310d3086df7355942c993abbc0cca50adf93ed9",
"md5": "454e562839026cb44489676ea45dad84",
"sha256": "38eac2c2be53085b8c2a215ebf12abcdaefee07bc8e00d7649b6b27399612b83"
},
"downloads": -1,
"filename": "py_bip39_bindings-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "454e562839026cb44489676ea45dad84",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 14867,
"upload_time": "2024-12-09T15:05:24",
"upload_time_iso_8601": "2024-12-09T15:05:24.377731Z",
"url": "https://files.pythonhosted.org/packages/0a/e1/88d75d69d08322555e5fc310d3086df7355942c993abbc0cca50adf93ed9/py_bip39_bindings-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-09 15:05:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "polkascan",
"github_project": "py-bip39-bindings",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "maturin",
"specs": [
[
"~=",
"1.7"
]
]
},
{
"name": "bumpversion",
"specs": []
},
{
"name": "pytest",
"specs": []
}
],
"lcname": "py-bip39-bindings"
}