py-bip39-bindings


Namepy-bip39-bindings JSON
Version 0.1.11 PyPI version JSON
download
home_pagehttps://github.com/polkascan/py-bip39-bindings
SummaryPython bindings for tiny-bip39 RUST crate
upload_time2022-12-13 23:18:26
maintainerStichting Polkascan (Polkascan Foundation)
docs_urlNone
authorStichting Polkascan (Polkascan Foundation)
requires_python
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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": "Stichting Polkascan (Polkascan Foundation)",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "legal@polkascan.org",
    "keywords": "",
    "author": "Stichting Polkascan (Polkascan Foundation)",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/f0/8a/5e22cbd00b799b33ce0a45ae3715c9ea3fcd263f877544819e7d03753c49/py_bip39_bindings-0.1.11.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.1.11",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "77d0b53f28443bb5ee7d3ef44c45cfeb",
                "sha256": "324a7363f8b49201ebe1cc72d970017ec5139f8a5ddf605fa2774904eb7f08a1"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77d0b53f28443bb5ee7d3ef44c45cfeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 399429,
            "upload_time": "2022-12-13T22:14:48",
            "upload_time_iso_8601": "2022-12-13T22:14:48.085314Z",
            "url": "https://files.pythonhosted.org/packages/ed/0c/ab1bb098eaca1954c02ff1ef625817e7580907273d0f10de29eb4bac4f31/py_bip39_bindings-0.1.11-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "09473022d698da556308c2e4baf70a95",
                "sha256": "77173b83c7ade4ca3c91fae0da9c9b1bc5f4c6819baa2276feacd5abec6005fa"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "09473022d698da556308c2e4baf70a95",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 792362,
            "upload_time": "2022-12-13T22:14:50",
            "upload_time_iso_8601": "2022-12-13T22:14:50.340967Z",
            "url": "https://files.pythonhosted.org/packages/c0/87/3d9903a85f9b5b3d57eb04ec484bf148e12a8dcb255160d3071cabb3861c/py_bip39_bindings-0.1.11-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7e4216f643bde35c3e1828a9ba059661",
                "sha256": "84e5177fb3d3b9607f5d7d526a89f91b35687fcc34b643fc96cd168a0ae025cb"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7e4216f643bde35c3e1828a9ba059661",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 413986,
            "upload_time": "2022-12-13T23:18:01",
            "upload_time_iso_8601": "2022-12-13T23:18:01.471499Z",
            "url": "https://files.pythonhosted.org/packages/09/c1/2bda881db1c8fedc009bdd70db5ec6ccc840331f03726946907b417ce9fe/py_bip39_bindings-0.1.11-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3a5af3db1dd06ca7da35e10597fea0f8",
                "sha256": "76ecd1cfb17f0b1bb56f0b1de5c533ff9830a60b5d657846b8cf500ff9fca8b3"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a5af3db1dd06ca7da35e10597fea0f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1225281,
            "upload_time": "2022-12-13T23:18:04",
            "upload_time_iso_8601": "2022-12-13T23:18:04.159762Z",
            "url": "https://files.pythonhosted.org/packages/7f/df/32db1f9e09757f292c9d88d487b58cdae741ab4bd1567571725c27d4cbf4/py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "548827e71f0ab5b72e65bc1807e468b8",
                "sha256": "d3408dc0809fca5691f9c02c8292d62590d90de4f02a4b2dcab35817fa857a71"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "548827e71f0ab5b72e65bc1807e468b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1227053,
            "upload_time": "2022-12-13T22:14:53",
            "upload_time_iso_8601": "2022-12-13T22:14:53.141122Z",
            "url": "https://files.pythonhosted.org/packages/c1/0b/b83a9d6d60a5941b1c01ff4df6e4a7994c665f3167038dc26338814d57f1/py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "92acd2a084ac041d5f59134562fcfdf7",
                "sha256": "d6f0eda277c6d0ef28cc83fd3f59a0f745394ea1e2807f2fea49186084b3d47d"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "92acd2a084ac041d5f59134562fcfdf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1180932,
            "upload_time": "2022-12-13T23:23:21",
            "upload_time_iso_8601": "2022-12-13T23:23:21.994595Z",
            "url": "https://files.pythonhosted.org/packages/50/45/180a09137e318ff1b41e5a7641e383a7a1605876256b915e2761a3b6c8f8/py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "07c72479b823d6fdc144056ec914c4c8",
                "sha256": "963357db40dc7a816d55097a85929cae18c6174c5bedf0410f6e72181270b2b1"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "07c72479b823d6fdc144056ec914c4c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1264074,
            "upload_time": "2022-12-13T22:14:55",
            "upload_time_iso_8601": "2022-12-13T22:14:55.485561Z",
            "url": "https://files.pythonhosted.org/packages/8d/a9/b63d8cddbcbd31bbfa85475bd286779f56c5c313c84b7cd47f0f60a7c204/py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "022ac7b4ed10cc2235decadd9045141d",
                "sha256": "be06dc751be86cbd72cd71e318979d3ab27cee12fd84d1e5e4e84575c5c9355d"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "022ac7b4ed10cc2235decadd9045141d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1252036,
            "upload_time": "2022-12-13T22:14:57",
            "upload_time_iso_8601": "2022-12-13T22:14:57.277833Z",
            "url": "https://files.pythonhosted.org/packages/69/86/4702ca3849aeb2730311632937219e6fb6d492ff5aef1bad4c1ef23efb33/py_bip39_bindings-0.1.11-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a4223967ee2fc128593d3e25e735f9ff",
                "sha256": "b4e05b06831874fa8715bdb128ea776674ad708858a4b3b1a27e5710859b086d"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a4223967ee2fc128593d3e25e735f9ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 296768,
            "upload_time": "2022-12-13T22:14:58",
            "upload_time_iso_8601": "2022-12-13T22:14:58.890981Z",
            "url": "https://files.pythonhosted.org/packages/66/f5/e39751148880e2d422a609608c228734d2f56f36635ad4958fe2f36417d6/py_bip39_bindings-0.1.11-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "bb3dc975079ea79a8eee74dac8b6a9fa",
                "sha256": "e01a03e858a648d294bcf063368bf09027efa282f5192abddaf7af69c5e2a574"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb3dc975079ea79a8eee74dac8b6a9fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 283551,
            "upload_time": "2022-12-13T22:15:00",
            "upload_time_iso_8601": "2022-12-13T22:15:00.702309Z",
            "url": "https://files.pythonhosted.org/packages/d5/67/fc950648f9ea9c3db6bbd55c3384dd6a5a1814b59948ba5f80b8bee7de96/py_bip39_bindings-0.1.11-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2a4f07bb36ad2b27f20523e48d2891b5",
                "sha256": "27cce22727e28705a660464689ade6d2cdad4e622bead5bde2ffa53c4f605ee5"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a4f07bb36ad2b27f20523e48d2891b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 399429,
            "upload_time": "2022-12-13T22:15:02",
            "upload_time_iso_8601": "2022-12-13T22:15:02.183516Z",
            "url": "https://files.pythonhosted.org/packages/44/b6/0bd5bf1c4cb00e000a9c909280aa7f8654208ee136e2cd1f3650a8de59ed/py_bip39_bindings-0.1.11-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6fcae758955f6c74e6591d66ff104e53",
                "sha256": "cdf35d031587296dcbdb22dbc67f2eaf5b5df9d5036b77fbeb93affbb9eec8d3"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6fcae758955f6c74e6591d66ff104e53",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 792364,
            "upload_time": "2022-12-13T22:15:03",
            "upload_time_iso_8601": "2022-12-13T22:15:03.701718Z",
            "url": "https://files.pythonhosted.org/packages/22/44/b6ffdc17cc499b72821a1d777fb465af842d5b7373f1825a45dce551fedc/py_bip39_bindings-0.1.11-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "da88deb2f0ac7fd6bab76b85dc2e754a",
                "sha256": "2fd5b926686207752d5f2e2ff164a9489b3613239d0967362f10c2fbd64eb018"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "da88deb2f0ac7fd6bab76b85dc2e754a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 413967,
            "upload_time": "2022-12-13T23:18:06",
            "upload_time_iso_8601": "2022-12-13T23:18:06.728677Z",
            "url": "https://files.pythonhosted.org/packages/15/8d/0883d814a26f922b331218c777ecaec61919aebf9c54d4991f919b21ab8a/py_bip39_bindings-0.1.11-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "69ab9296123326265e5825f2a22c7096",
                "sha256": "ba84c38962bffdaea0e499245731d669cc21d1280f81ace8ff60ed3550024570"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "69ab9296123326265e5825f2a22c7096",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1225281,
            "upload_time": "2022-12-13T23:18:08",
            "upload_time_iso_8601": "2022-12-13T23:18:08.954828Z",
            "url": "https://files.pythonhosted.org/packages/72/30/e3c76035b83c9552bbeee90645411a3d52983067badbd8a5854a823701f9/py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ecf4d3e05cddcade104bee249695b4d4",
                "sha256": "a9024ec3c4a3db005b355f9a00602cede290dec5e9c7cf7dd06a26f620b0cf99"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecf4d3e05cddcade104bee249695b4d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1227054,
            "upload_time": "2022-12-13T22:15:05",
            "upload_time_iso_8601": "2022-12-13T22:15:05.707009Z",
            "url": "https://files.pythonhosted.org/packages/38/c9/3b73fe8ffd285387c4fe7b60ccd0072ee16d5153409619c472852ec88acc/py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "77e24598e0f2595ad5b3c990e5065d05",
                "sha256": "ce028c8aef51dec2a85f298461b2988cca28740bf3cc23472c3469d3f853714e"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "77e24598e0f2595ad5b3c990e5065d05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1180933,
            "upload_time": "2022-12-13T23:23:24",
            "upload_time_iso_8601": "2022-12-13T23:23:24.873567Z",
            "url": "https://files.pythonhosted.org/packages/7e/2f/d096e6e08439e5b3c1f41e95c5828700012c130611a64fe9e82a43b0ca45/py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "de455a7e46a14b9cfd9c424a80edb22c",
                "sha256": "51882cd0fa7529173b3543c089c24c775f1876ddf48f10e60f2ed07ad2af5cae"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "de455a7e46a14b9cfd9c424a80edb22c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1264074,
            "upload_time": "2022-12-13T22:15:07",
            "upload_time_iso_8601": "2022-12-13T22:15:07.172002Z",
            "url": "https://files.pythonhosted.org/packages/0b/8f/00c2239452f26e180229d74acd63ac0c027f8eb9a5fb90b879c6c1192102/py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "128062f8a541da7ab5a5ce907be377b5",
                "sha256": "4ee776f3b33b2d71fee48679951f117e3d1f052449ec2fcb184f3c64a4c77e4f"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "128062f8a541da7ab5a5ce907be377b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1252039,
            "upload_time": "2022-12-13T22:15:08",
            "upload_time_iso_8601": "2022-12-13T22:15:08.961197Z",
            "url": "https://files.pythonhosted.org/packages/1a/7a/524e38494a0ffb7ca211225acde0324cf216f081dffae7fd55446b009889/py_bip39_bindings-0.1.11-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5482bd3d9e0ec6194b75cc004f1f07ce",
                "sha256": "d8b722e49562810f94eb61c9efa172f327537c74c37da3e86b161f7f444c51bf"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5482bd3d9e0ec6194b75cc004f1f07ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 296767,
            "upload_time": "2022-12-13T22:15:10",
            "upload_time_iso_8601": "2022-12-13T22:15:10.637455Z",
            "url": "https://files.pythonhosted.org/packages/e9/a0/68bbb9e9326266a9acca2558d6556e22df31bcf4d2235ee1cdaf362add82/py_bip39_bindings-0.1.11-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d61a419d9745f5a0b81a1074a3d1c5e1",
                "sha256": "be934052497f07605768e2c7184e4f4269b3e2e77930131dfc9bdbb791e6fdf4"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d61a419d9745f5a0b81a1074a3d1c5e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 283550,
            "upload_time": "2022-12-13T22:15:11",
            "upload_time_iso_8601": "2022-12-13T22:15:11.921366Z",
            "url": "https://files.pythonhosted.org/packages/0a/47/4c5d0ff9949b725696b1b10b5b87f6c6d3c333d8458b354b7c8536272eef/py_bip39_bindings-0.1.11-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c56061709ba20ffbb9d624dc9bf694ed",
                "sha256": "76fc141ed154ccef9c36d5e2eb615565f2e272a43ed56edbdda538840b597187"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c56061709ba20ffbb9d624dc9bf694ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 399430,
            "upload_time": "2022-12-13T22:15:13",
            "upload_time_iso_8601": "2022-12-13T22:15:13.718825Z",
            "url": "https://files.pythonhosted.org/packages/64/16/c192021218b427c2288bea622195c38d86a01bcfdf076702cfa8706c5324/py_bip39_bindings-0.1.11-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "eeb737a4cbf023c11d0d53798c760c8f",
                "sha256": "3837f7040e732f7be49da5f595f147de2304e92a67267b12d5aa08a9bb02dd4b"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eeb737a4cbf023c11d0d53798c760c8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 413970,
            "upload_time": "2022-12-13T23:18:11",
            "upload_time_iso_8601": "2022-12-13T23:18:11.971951Z",
            "url": "https://files.pythonhosted.org/packages/69/7b/6e5b26b80f823a14bc56fa9bae561a54d747817b01ff672d308e734ebc72/py_bip39_bindings-0.1.11-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8ad1e29709cc513286c3360b22eb654e",
                "sha256": "82de90eabe531095d4e4721ea1546873f0161c101c30b43dcf0a7bbd9cdcce69"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ad1e29709cc513286c3360b22eb654e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1225203,
            "upload_time": "2022-12-13T23:18:14",
            "upload_time_iso_8601": "2022-12-13T23:18:14.621562Z",
            "url": "https://files.pythonhosted.org/packages/ec/ef/3962a571dd86e02758890ed5217a45c533216d0063969cd08a9c3bcc9185/py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "845979eb74bcc0423f86762f6b410575",
                "sha256": "19794bafd088cfb50f99b04f3710c895756fe25ec342eaea0b5c579512493b61"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "845979eb74bcc0423f86762f6b410575",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1227082,
            "upload_time": "2022-12-13T22:15:16",
            "upload_time_iso_8601": "2022-12-13T22:15:16.038550Z",
            "url": "https://files.pythonhosted.org/packages/53/46/485409334c8f528b8cc4fa8ecb925fe8e9bf4802ed5d417f4da043e59f84/py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "80bba6ee32c45e9250043120de6c9685",
                "sha256": "8b9aa564a0081c360776b2230472475bd2971ddbe8f99ed7d8676c0ab3b2e0e4"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "80bba6ee32c45e9250043120de6c9685",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1180985,
            "upload_time": "2022-12-13T23:23:27",
            "upload_time_iso_8601": "2022-12-13T23:23:27.961628Z",
            "url": "https://files.pythonhosted.org/packages/cb/d5/c7829a8f21e96c81add167e531633582c72aa8fa69fb55c002bff682bb89/py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "619d07d009ae277be3ccb85f6c033e5d",
                "sha256": "1f55ab4fc519b8a9b80b28e02756788b9da037a2484e42282497eb9a253e5a58"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "619d07d009ae277be3ccb85f6c033e5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1263955,
            "upload_time": "2022-12-13T22:15:17",
            "upload_time_iso_8601": "2022-12-13T22:15:17.330675Z",
            "url": "https://files.pythonhosted.org/packages/50/72/b3e350643181292dcb082b02559c40e3fe01708ab84d8ab3ecbe94f10b9e/py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "747fe8faad22567d8abcce36677ee0c0",
                "sha256": "cd1b874bc812866804a40242cdb1303de9caeb0ed261852dfbb5cbce94db31a4"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "747fe8faad22567d8abcce36677ee0c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1252045,
            "upload_time": "2022-12-13T22:15:19",
            "upload_time_iso_8601": "2022-12-13T22:15:19.177657Z",
            "url": "https://files.pythonhosted.org/packages/a3/aa/60549f6d7ecb9ee2f0287d3bb2324f861b9b05090790c032bc694ce47142/py_bip39_bindings-0.1.11-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2dfc4b79b06e091d9e7b9fd8a101b8bc",
                "sha256": "aa643eae0ebc185e50fcbc088210930f2cb4b30145dfd18a2b031451ce3edb03"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2dfc4b79b06e091d9e7b9fd8a101b8bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 296730,
            "upload_time": "2022-12-13T22:15:21",
            "upload_time_iso_8601": "2022-12-13T22:15:21.225692Z",
            "url": "https://files.pythonhosted.org/packages/de/cd/51f60e9722171b5d15d3fd886fcaf12b87160f3a7d6d046d8fff5d7e40d7/py_bip39_bindings-0.1.11-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "da0ccd0036ca4761091d3d28eb9a253c",
                "sha256": "e68673dbe4d2d99f64e493ac1369ac39b0bd9266dddefe476802d853f9637906"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da0ccd0036ca4761091d3d28eb9a253c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 283503,
            "upload_time": "2022-12-13T22:15:23",
            "upload_time_iso_8601": "2022-12-13T22:15:23.191713Z",
            "url": "https://files.pythonhosted.org/packages/45/d6/11a0242b454756d8a03ae4c287c14ba365ded1a765cc5eb887cceb103df5/py_bip39_bindings-0.1.11-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a780db75a2ed65806c6c33c1fae83a98",
                "sha256": "b1bece61da3c8ed37b86ac19051bab4cb599318066cdcf6ca9d795bdf7553525"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a780db75a2ed65806c6c33c1fae83a98",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 399426,
            "upload_time": "2022-12-13T22:15:24",
            "upload_time_iso_8601": "2022-12-13T22:15:24.797950Z",
            "url": "https://files.pythonhosted.org/packages/8f/a7/4a1bc74b82994532b7be54679a26f14fd6ab46a8e75daa122c6d879a584b/py_bip39_bindings-0.1.11-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ce6313b91aa3fb85f6d1d1741ba8fcf1",
                "sha256": "5cc8a25d058f8f7741af38015b56177a1fbd442d7a2d463860c76fb86ff33211"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ce6313b91aa3fb85f6d1d1741ba8fcf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 792360,
            "upload_time": "2022-12-13T22:15:26",
            "upload_time_iso_8601": "2022-12-13T22:15:26.208685Z",
            "url": "https://files.pythonhosted.org/packages/77/f9/d32bd3a766a1a933529ed44d04e6c72f4e8567ca19f84b0018de1b6cd9c4/py_bip39_bindings-0.1.11-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4425343be59a007efa7b2db8777f6b3f",
                "sha256": "ac1d37c0266c40f592a53b282c392f40bc23c117ca092a46e419c9d141a3dc89"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4425343be59a007efa7b2db8777f6b3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 413965,
            "upload_time": "2022-12-13T23:18:16",
            "upload_time_iso_8601": "2022-12-13T23:18:16.601756Z",
            "url": "https://files.pythonhosted.org/packages/68/70/f1be90e684a83f213a97a7c976fb14e3fe73dff4ae9312d8014c52b0e5a5/py_bip39_bindings-0.1.11-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8515791f8f630b49261feeb8f1351e0e",
                "sha256": "bd63afb8451a0ee91658144f1fa9d1b5ed908ca458e713864e775e47bb806414"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8515791f8f630b49261feeb8f1351e0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1225276,
            "upload_time": "2022-12-13T23:18:19",
            "upload_time_iso_8601": "2022-12-13T23:18:19.351103Z",
            "url": "https://files.pythonhosted.org/packages/e9/63/712849ae79e129ab6cab8a8afbd9a8c0d7cf05c5ec43e0ba3c075f1ef163/py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f0622dd51e331b8d88a990ce60789ed5",
                "sha256": "aa30b9b4b01cc703801924be51e802f7ae778abea433f4e3908fc470e2a517ef"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0622dd51e331b8d88a990ce60789ed5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1227051,
            "upload_time": "2022-12-13T22:15:27",
            "upload_time_iso_8601": "2022-12-13T22:15:27.670048Z",
            "url": "https://files.pythonhosted.org/packages/7a/98/e7aecd60239f6ce0d839b3cda79ab1f315f9b9455de2730770b1ba3f9c85/py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0e9c4c45a400bc919b805f61a57fa4e2",
                "sha256": "f826af5e54e250272af9203ce85bf53064fe514df8222836c3ff43f23ccd55fe"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0e9c4c45a400bc919b805f61a57fa4e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1180930,
            "upload_time": "2022-12-13T23:23:31",
            "upload_time_iso_8601": "2022-12-13T23:23:31.027014Z",
            "url": "https://files.pythonhosted.org/packages/99/9f/6dc9eda5f537e440ca4528b39e29d79b517253cb51e04cdb5926b8a7eb63/py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "90c38027e059838c4c4674c83ad623e3",
                "sha256": "08ba04fbad6d795c0bc59bbdf05a2bae9de929f34101fa149501e83fc4e52d6f"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "90c38027e059838c4c4674c83ad623e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1264073,
            "upload_time": "2022-12-13T22:15:29",
            "upload_time_iso_8601": "2022-12-13T22:15:29.108468Z",
            "url": "https://files.pythonhosted.org/packages/91/cd/1606c7ed1bddfb9cf1fb9505afbf28344c86659a1f1f9cac87854951ca94/py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8727e0d98e97056d74e818e2498455a3",
                "sha256": "1f9ba82d427353bd6e7521b03583e0e72d745e7d6bf0b1505555a1032b6fd656"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8727e0d98e97056d74e818e2498455a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1252034,
            "upload_time": "2022-12-13T22:15:30",
            "upload_time_iso_8601": "2022-12-13T22:15:30.534134Z",
            "url": "https://files.pythonhosted.org/packages/a6/ea/878fc92fe74fb8cd9a863620166cbe03314f6d73e51c3b3b7d9f27535cfe/py_bip39_bindings-0.1.11-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d95c245142c6c3e45307d9577e5d1837",
                "sha256": "86df39df8c573be8ff92e613d833045919e1351446898d683cc9a49ebeb25a87"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d95c245142c6c3e45307d9577e5d1837",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 296761,
            "upload_time": "2022-12-13T22:15:33",
            "upload_time_iso_8601": "2022-12-13T22:15:33.089641Z",
            "url": "https://files.pythonhosted.org/packages/1d/26/0d20e9955a50ada887b96d8ce87064db2d9d1ea73438ba9101099116ed1f/py_bip39_bindings-0.1.11-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "136de7e8c633d46598e575da92ab1251",
                "sha256": "e26cde6585ab95042fef48f6740a4f1a7962f2a571e73f1f12bfc4daee786c9a"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "136de7e8c633d46598e575da92ab1251",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 283545,
            "upload_time": "2022-12-13T22:15:34",
            "upload_time_iso_8601": "2022-12-13T22:15:34.978667Z",
            "url": "https://files.pythonhosted.org/packages/58/0e/3cff65df17bbd7e07930044273abfab1ad88f7c679a0e08c0c4cbfde49b2/py_bip39_bindings-0.1.11-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7074e22075ffeca23c94f1e6a311e836",
                "sha256": "3bb22e4f2430bc28d93599c70a4d6ce9fc3e88db3f20b24ca17902f796be6ae9"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7074e22075ffeca23c94f1e6a311e836",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 399426,
            "upload_time": "2022-12-13T22:15:36",
            "upload_time_iso_8601": "2022-12-13T22:15:36.421559Z",
            "url": "https://files.pythonhosted.org/packages/b2/0e/d86302ec79bcb3e0c419b00fa6837cdc4ebfd6a92cd40dc5647ebbf600ff/py_bip39_bindings-0.1.11-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d13b05fb536e47da18e98b8d5752bd9e",
                "sha256": "75de7c7e76581244c3893fb624e44d84dadcceddd73f221ab74a9cb3c04b416b"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d13b05fb536e47da18e98b8d5752bd9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 792362,
            "upload_time": "2022-12-13T22:15:38",
            "upload_time_iso_8601": "2022-12-13T22:15:38.072948Z",
            "url": "https://files.pythonhosted.org/packages/47/fb/dcbfff546c8f50f9d30a9f8d601a73c74e103fd64db26164ecc480e3dec0/py_bip39_bindings-0.1.11-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d0ddf8556eadcf1fa6851944d70a7da8",
                "sha256": "7e1a364081460498caa7d8238c54ae78b009d331afcb4f037d659b02639b969e"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0ddf8556eadcf1fa6851944d70a7da8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 413962,
            "upload_time": "2022-12-13T23:18:21",
            "upload_time_iso_8601": "2022-12-13T23:18:21.351679Z",
            "url": "https://files.pythonhosted.org/packages/21/13/0ce745d718690203b9546d0308e28c89f9edd4acd1ed32e8ff2746fc7e73/py_bip39_bindings-0.1.11-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8a1dc8d38f03457cc79ecb162b47f363",
                "sha256": "f3112f408f2d58be9ea3189903e5f2d944a0d882fa35b91b7bb88a195a16a8c1"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a1dc8d38f03457cc79ecb162b47f363",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1225277,
            "upload_time": "2022-12-13T23:18:23",
            "upload_time_iso_8601": "2022-12-13T23:18:23.565563Z",
            "url": "https://files.pythonhosted.org/packages/10/eb/3ebcb7c7b5c7086086f51005004f7c301c524c38e089a791c43dd5f135ff/py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ee39e2a4150930faec6bb3174a13cce0",
                "sha256": "7b921f36a4ef7a3bccb2635f2a5f91647a63ebaa1a4962a24fa236e5a32834cf"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee39e2a4150930faec6bb3174a13cce0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1227050,
            "upload_time": "2022-12-13T22:15:39",
            "upload_time_iso_8601": "2022-12-13T22:15:39.642174Z",
            "url": "https://files.pythonhosted.org/packages/8d/38/bb127c2fea0ebd0cf044819bd05671f0f542bacf10c832d712482d6925f0/py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0e0ed8ed530ef8387a179befe456e634",
                "sha256": "77accd187ef9a87e1d32f279b45a6e23123816b933a7e3d8c4a2fe61f6bd1d2e"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_28_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0e0ed8ed530ef8387a179befe456e634",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1180930,
            "upload_time": "2022-12-13T23:23:33",
            "upload_time_iso_8601": "2022-12-13T23:23:33.753852Z",
            "url": "https://files.pythonhosted.org/packages/dc/1f/712de161dfbbea549239c896716abc18a1a01714954e9c6d1555b6a44525/py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_28_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c9aeb20ce2b66954606c19f3a045cb88",
                "sha256": "fd74fd810cc1076dd0c2944490d4acb1a109837cc9cfd58b29605ea81b4034f5"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c9aeb20ce2b66954606c19f3a045cb88",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1264070,
            "upload_time": "2022-12-13T22:15:41",
            "upload_time_iso_8601": "2022-12-13T22:15:41.575102Z",
            "url": "https://files.pythonhosted.org/packages/76/7a/6f70d84f4dadb441cb14f12536bc5b92a4c281f8cf396b4805b7fc88fb90/py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "216fd78e02e32ee4d99d3e09e6b78994",
                "sha256": "153f310e55795509b8b004590dbc0cff58d65e8f032c1558021fc0898121a465"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "216fd78e02e32ee4d99d3e09e6b78994",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1252032,
            "upload_time": "2022-12-13T22:15:43",
            "upload_time_iso_8601": "2022-12-13T22:15:43.100466Z",
            "url": "https://files.pythonhosted.org/packages/b3/6f/ee4b4eb811a3fc24b11c88a347e292f99a4471ad84047b53c1b1474cd4db/py_bip39_bindings-0.1.11-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5d53bfbaf451353887a759a866209e9d",
                "sha256": "b769bcc358c806ca1a5983e57eb94ee33ec3a8ef69fa01aa6b28960fa3e0ab5a"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5d53bfbaf451353887a759a866209e9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 296761,
            "upload_time": "2022-12-13T22:15:44",
            "upload_time_iso_8601": "2022-12-13T22:15:44.808984Z",
            "url": "https://files.pythonhosted.org/packages/5d/d1/d270e05495a98f2f39cab33aa94e4a92cefe482a6da995d41714d87a01b5/py_bip39_bindings-0.1.11-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3d66df7c81bd96e46f7c0f5eaaa3f153",
                "sha256": "3d8a802d504c928d97e951489e942f39c9bfeec2a7305a6f0f3d5d38e152db9e"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d66df7c81bd96e46f7c0f5eaaa3f153",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 283544,
            "upload_time": "2022-12-13T22:15:46",
            "upload_time_iso_8601": "2022-12-13T22:15:46.595401Z",
            "url": "https://files.pythonhosted.org/packages/2b/3c/b75948fba5d7777ec460ea87d254e1c2d4c5727f243dd8cb4289e648ea08/py_bip39_bindings-0.1.11-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "40b2794a25e24cc023f616a432cedbb8",
                "sha256": "ebc128ccf3a0750d758557e094802f0975c3760a939f8a8b76392d7dbe6b52a1"
            },
            "downloads": -1,
            "filename": "py_bip39_bindings-0.1.11.tar.gz",
            "has_sig": false,
            "md5_digest": "40b2794a25e24cc023f616a432cedbb8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18103,
            "upload_time": "2022-12-13T23:18:26",
            "upload_time_iso_8601": "2022-12-13T23:18:26.284652Z",
            "url": "https://files.pythonhosted.org/packages/f0/8a/5e22cbd00b799b33ce0a45ae3715c9ea3fcd263f877544819e7d03753c49/py_bip39_bindings-0.1.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-13 23:18:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "polkascan",
    "github_project": "py-bip39-bindings",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "py-bip39-bindings"
}
        
Elapsed time: 0.02219s