iota-sdk


Nameiota-sdk JSON
Version 1.1.2 PyPI version JSON
download
home_pagehttps://www.iota.org/
SummaryPython bindings for the IOTA SDK library
upload_time2023-12-01 09:40:48
maintainer
docs_urlNone
authorIOTA Stiftung
requires_python
licenseApache-2.0
keywords iota client wallet transaction python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # IOTA SDK Library - Python binding

Python binding to the [iota-sdk library](/README.md).

## Table of contents

- [IOTA SDK Library - Python binding](#iota-sdk-library---python-binding)
  - [Table of contents](#table-of-contents)
  - [Requirements](#requirements)
  - [Getting Started](#getting-started)
    - [Install the IOTA SDK via pip](#install-iota-sdk-via-pip)
    - [Install the IOTA SDK](#install-the-iota-sdk)
  - [Client](#client-usage)
  - [Wallet](#wallet-usage)
  - [Examples](#examples)
  - [API Reference](#api-reference)
  - [Learn More](#learn-more)

## Requirements

- [Python 3.9+](https://www.python.org)
- [pip ^21.x](https://pypi.org/project/pip)
- `Rust` and `Cargo` to compile the binding. Install
  them [here](https://doc.rust-lang.org/cargo/getting-started/installation.html).

## Getting Started

### Install IOTA SDK via pip

1. (optional) Create a virtual environment and use it. On Linux and macOS, you can run the following commands:

   ```bash
   python3 -m venv env
   source env/bin/activate
   ```

   If you are using Windows, you should run the following instead:

   ```bash
   python3 -m venv env
   .\env\Scripts\activate
   ```

2. Install the IOTA-SDK using pip:

   ```bash
   pip install iota-sdk
   ```

3. (optional) If you want to deactivate the virtual environment, run the following command:

   ```bash
   deactivate
   ```

### Install the IOTA SDK

1. Move to the Python bindings directory:

   ```bash
   cd iota-sdk/bindings/python
   ```

2. (optional) Create a virtual environment and use it. On Linux and macOS, you can run the following commands:

   ```bash
   python3 -m venv env
   source env/bin/activate
   ```

   If you are using Windows, you should run the following instead:

   ```bash
   python3 -m venv env
   .\env\Scripts\activate
   ```

3. Install the required dependencies and build the wheel by running the following commands:

   ```bash
   pip install -r requirements-dev.txt
   pip install .
   ```

4. (optional) If you want to deactivate the virtual environment, run the following command:

   ```bash
   deactivate
   ```

## Client Usage

The following example creates a Client instance connected to the Shimmer Testnet, and retrieves the node's information by calling `Client.get_info()`, and then print the node's information.

[examples/client/getting_started.py](examples/client/getting_started.py)

## Wallet Usage

The following example will create a new Wallet Account  using a StrongholdSecretManager, and then print the account's information.

[examples/wallet/getting_started.py](examples/wallet/getting_started.py)

## Examples

You can use the provided code [examples](https://github.com/iotaledger/iota-sdk/blob/develop/bindings/python/examples) to acquainted with the IOTA SDK. You can use the following command to
run any example:

```bash
python3 example/[example file]
```

- Where `[example file]` is the file name from the example folder. For example:

```bash
python3 examples/client/00_get_info.py
```

## API Reference

You can find the API reference for the Python bindings in the
[IOTA Wiki](https://wiki.iota.org/shimmer/iota-sdk/references/python/iota_sdk/client/).


## Learn More

To learn more about Rust, see the [Rust documentation](https://www.rust-lang.org).


            

Raw data

            {
    "_id": null,
    "home_page": "https://www.iota.org/",
    "name": "iota-sdk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "iota,client,wallet,transaction,python",
    "author": "IOTA Stiftung",
    "author_email": "",
    "download_url": "",
    "platform": null,
    "description": "# IOTA SDK Library - Python binding\n\nPython binding to the [iota-sdk library](/README.md).\n\n## Table of contents\n\n- [IOTA SDK Library - Python binding](#iota-sdk-library---python-binding)\n  - [Table of contents](#table-of-contents)\n  - [Requirements](#requirements)\n  - [Getting Started](#getting-started)\n    - [Install the IOTA SDK via pip](#install-iota-sdk-via-pip)\n    - [Install the IOTA SDK](#install-the-iota-sdk)\n  - [Client](#client-usage)\n  - [Wallet](#wallet-usage)\n  - [Examples](#examples)\n  - [API Reference](#api-reference)\n  - [Learn More](#learn-more)\n\n## Requirements\n\n- [Python 3.9+](https://www.python.org)\n- [pip ^21.x](https://pypi.org/project/pip)\n- `Rust` and `Cargo` to compile the binding. Install\n  them [here](https://doc.rust-lang.org/cargo/getting-started/installation.html).\n\n## Getting Started\n\n### Install IOTA SDK via pip\n\n1. (optional) Create a virtual environment and use it. On Linux and macOS, you can run the following commands:\n\n   ```bash\n   python3 -m venv env\n   source env/bin/activate\n   ```\n\n   If you are using Windows, you should run the following instead:\n\n   ```bash\n   python3 -m venv env\n   .\\env\\Scripts\\activate\n   ```\n\n2. Install the IOTA-SDK using pip:\n\n   ```bash\n   pip install iota-sdk\n   ```\n\n3. (optional) If you want to deactivate the virtual environment, run the following command:\n\n   ```bash\n   deactivate\n   ```\n\n### Install the IOTA SDK\n\n1. Move to the Python bindings directory:\n\n   ```bash\n   cd iota-sdk/bindings/python\n   ```\n\n2. (optional) Create a virtual environment and use it. On Linux and macOS, you can run the following commands:\n\n   ```bash\n   python3 -m venv env\n   source env/bin/activate\n   ```\n\n   If you are using Windows, you should run the following instead:\n\n   ```bash\n   python3 -m venv env\n   .\\env\\Scripts\\activate\n   ```\n\n3. Install the required dependencies and build the wheel by running the following commands:\n\n   ```bash\n   pip install -r requirements-dev.txt\n   pip install .\n   ```\n\n4. (optional) If you want to deactivate the virtual environment, run the following command:\n\n   ```bash\n   deactivate\n   ```\n\n## Client Usage\n\nThe following example creates a Client instance connected to the Shimmer Testnet, and retrieves the node's information by calling `Client.get_info()`, and then print the node's information.\n\n[examples/client/getting_started.py](examples/client/getting_started.py)\n\n## Wallet Usage\n\nThe following example will create a new Wallet Account  using a StrongholdSecretManager, and then print the account's information.\n\n[examples/wallet/getting_started.py](examples/wallet/getting_started.py)\n\n## Examples\n\nYou can use the provided code [examples](https://github.com/iotaledger/iota-sdk/blob/develop/bindings/python/examples) to acquainted with the IOTA SDK. You can use the following command to\nrun any example:\n\n```bash\npython3 example/[example file]\n```\n\n- Where `[example file]` is the file name from the example folder. For example:\n\n```bash\npython3 examples/client/00_get_info.py\n```\n\n## API Reference\n\nYou can find the API reference for the Python bindings in the\n[IOTA Wiki](https://wiki.iota.org/shimmer/iota-sdk/references/python/iota_sdk/client/).\n\n\n## Learn More\n\nTo learn more about Rust, see the [Rust documentation](https://www.rust-lang.org).\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Python bindings for the IOTA SDK library",
    "version": "1.1.2",
    "project_urls": {
        "Homepage": "https://www.iota.org/",
        "Source Code": "https://github.com/iotaledger/iota-sdk"
    },
    "split_keywords": [
        "iota",
        "client",
        "wallet",
        "transaction",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "165af40f6dba45f425dccd8a9674a3869b584db4c0de765c849da41317a4a2ec",
                "md5": "4379b0b82df5f6a9692e1375534d129a",
                "sha256": "fec572d7cf2b34c12efaf20a529f2f3862f4401777832b89a3ecb68def49cb63"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4379b0b82df5f6a9692e1375534d129a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8131678,
            "upload_time": "2023-12-01T09:40:48",
            "upload_time_iso_8601": "2023-12-01T09:40:48.895966Z",
            "url": "https://files.pythonhosted.org/packages/16/5a/f40f6dba45f425dccd8a9674a3869b584db4c0de765c849da41317a4a2ec/iota_sdk-1.1.2-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "807140e55c362436aa7dc08d5b834d48e86535d9d75871b974ad470a2f6e688a",
                "md5": "ce93fee24745fc1fd140f48ffe30648e",
                "sha256": "e667f6b9528c3e5199ce1809745afe69c1892f546c003c026406e0d071bfa7eb"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ce93fee24745fc1fd140f48ffe30648e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 7520744,
            "upload_time": "2023-12-01T09:40:50",
            "upload_time_iso_8601": "2023-12-01T09:40:50.986935Z",
            "url": "https://files.pythonhosted.org/packages/80/71/40e55c362436aa7dc08d5b834d48e86535d9d75871b974ad470a2f6e688a/iota_sdk-1.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79326ee5a7a2d9703eba9021bf181d6227590fe22fd079f921d3a3ccca833f8d",
                "md5": "1c6cb23d5288771f0d9746beb2d3f74d",
                "sha256": "aaad79bb73c3407945e7dcc0cb1de7adef11c0176d1e69324c80b539950d118e"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp310-cp310-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c6cb23d5288771f0d9746beb2d3f74d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8847598,
            "upload_time": "2023-12-01T09:40:52",
            "upload_time_iso_8601": "2023-12-01T09:40:52.963110Z",
            "url": "https://files.pythonhosted.org/packages/79/32/6ee5a7a2d9703eba9021bf181d6227590fe22fd079f921d3a3ccca833f8d/iota_sdk-1.1.2-cp310-cp310-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a03cc8e7bca05d66f43f70af2a1d615aaee5c1655c0afe297b96eeaaacad471c",
                "md5": "6004fe9ac6ed2e2b0411a4af01b8cde5",
                "sha256": "962327b795cdfa3808570bac8fe69985c58e419394266a9d48b79f44166cb9f5"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp310-cp310-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6004fe9ac6ed2e2b0411a4af01b8cde5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8905143,
            "upload_time": "2023-12-01T09:40:55",
            "upload_time_iso_8601": "2023-12-01T09:40:55.652709Z",
            "url": "https://files.pythonhosted.org/packages/a0/3c/c8e7bca05d66f43f70af2a1d615aaee5c1655c0afe297b96eeaaacad471c/iota_sdk-1.1.2-cp310-cp310-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "730cb7d994505b9e534c970ac3cbbd4c4df8310c625358dbcccc79f96bc697d3",
                "md5": "da7f1af0b17a3b9ab366aef940ca979f",
                "sha256": "05bce9d1d5ca4ed5bc7ed823b62404a5a64804bf31ab0ba35b1a0253bcadf888"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da7f1af0b17a3b9ab366aef940ca979f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8342562,
            "upload_time": "2023-12-01T09:40:58",
            "upload_time_iso_8601": "2023-12-01T09:40:58.946342Z",
            "url": "https://files.pythonhosted.org/packages/73/0c/b7d994505b9e534c970ac3cbbd4c4df8310c625358dbcccc79f96bc697d3/iota_sdk-1.1.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ffa54fbd86261dafa045484a6b58f921fb1a94f404790bee0d0091c26a51405",
                "md5": "48b34eaefa04260665020f8e5d218e42",
                "sha256": "bc3931010e8ea475704d9f90a02f18640fdee5d202acee045a7e2a155bf29d6a"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48b34eaefa04260665020f8e5d218e42",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8131809,
            "upload_time": "2023-12-01T09:41:02",
            "upload_time_iso_8601": "2023-12-01T09:41:02.190631Z",
            "url": "https://files.pythonhosted.org/packages/0f/fa/54fbd86261dafa045484a6b58f921fb1a94f404790bee0d0091c26a51405/iota_sdk-1.1.2-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9083b2e467841956463e311a2fdbb73997817f08c5d0d3f88e3f24d1db2469d",
                "md5": "0091532ea01fa2df275a905e735a555e",
                "sha256": "19e274aff97eacb28a69fec172b41412651188e69116e1f17765896132176dd6"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0091532ea01fa2df275a905e735a555e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 7520605,
            "upload_time": "2023-12-01T09:41:05",
            "upload_time_iso_8601": "2023-12-01T09:41:05.409515Z",
            "url": "https://files.pythonhosted.org/packages/e9/08/3b2e467841956463e311a2fdbb73997817f08c5d0d3f88e3f24d1db2469d/iota_sdk-1.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f7aec69c79cfd17ade6c2766eea219a8502b2c148d46320e6ff27c729d9021d",
                "md5": "c3e694b60703843532c62017e9f933ef",
                "sha256": "c6289e743549055bc1ec2f34775f321992b733f0e4d884c29d9902034da84584"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp311-cp311-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3e694b60703843532c62017e9f933ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8847568,
            "upload_time": "2023-12-01T09:41:08",
            "upload_time_iso_8601": "2023-12-01T09:41:08.438957Z",
            "url": "https://files.pythonhosted.org/packages/5f/7a/ec69c79cfd17ade6c2766eea219a8502b2c148d46320e6ff27c729d9021d/iota_sdk-1.1.2-cp311-cp311-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4012a16baef89c1b73c80adc6844d2a5ed3685dee7a48641000654d81db84866",
                "md5": "f0c7441faa7d746ae1d35da3b39c5522",
                "sha256": "4a3ea2a2a34f3c5ff9c1e46d2e3d1123188918dfce46a06cc343a826ba01f27e"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp311-cp311-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0c7441faa7d746ae1d35da3b39c5522",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8905437,
            "upload_time": "2023-12-01T09:41:11",
            "upload_time_iso_8601": "2023-12-01T09:41:11.684561Z",
            "url": "https://files.pythonhosted.org/packages/40/12/a16baef89c1b73c80adc6844d2a5ed3685dee7a48641000654d81db84866/iota_sdk-1.1.2-cp311-cp311-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7954349381d275d87cf17769aadcca73f32536fb760c8b3b7678ab8eeebb524d",
                "md5": "02c11071e456753b078ff7d5c10d23ba",
                "sha256": "75964dfeb414bd8b2b1b35f05719dcadd9310bce4922b893434bc4a587e2f65b"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "02c11071e456753b078ff7d5c10d23ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8342540,
            "upload_time": "2023-12-01T09:41:14",
            "upload_time_iso_8601": "2023-12-01T09:41:14.844379Z",
            "url": "https://files.pythonhosted.org/packages/79/54/349381d275d87cf17769aadcca73f32536fb760c8b3b7678ab8eeebb524d/iota_sdk-1.1.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfed2cbf2183458d4f20a70cbe0090d0b8e0414cf1d3afacb83f523681f0f37f",
                "md5": "3174bbbf1c022b18a91f56b6232f4219",
                "sha256": "eb4a71b9933d57a9c521c2dbb8a675091b64f266995b2502a53be733ccb32b07"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp312-cp312-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3174bbbf1c022b18a91f56b6232f4219",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8129994,
            "upload_time": "2023-12-01T09:41:17",
            "upload_time_iso_8601": "2023-12-01T09:41:17.151917Z",
            "url": "https://files.pythonhosted.org/packages/df/ed/2cbf2183458d4f20a70cbe0090d0b8e0414cf1d3afacb83f523681f0f37f/iota_sdk-1.1.2-cp312-cp312-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf59d15d675f481e1d64d46193d863de387124865dc3f49f114075e30ce37f08",
                "md5": "65d94f3e1ebe5cbd4df7174cb8ae7ce3",
                "sha256": "a803c892c5ebe045d6e4623beb5552e53a42f79fd92add7a63fe546359c006d6"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65d94f3e1ebe5cbd4df7174cb8ae7ce3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 7519964,
            "upload_time": "2023-12-01T09:41:19",
            "upload_time_iso_8601": "2023-12-01T09:41:19.719090Z",
            "url": "https://files.pythonhosted.org/packages/bf/59/d15d675f481e1d64d46193d863de387124865dc3f49f114075e30ce37f08/iota_sdk-1.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d79d7e85c87a4f6e5bc533851ed58037b74020567e50afc844538ee46fb6a640",
                "md5": "83e74799988d1ba3a3bd621604451bfe",
                "sha256": "abd06b0b21c6e621911aa82102db75322dd62039dbd5ba822d9b154059d55a8e"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp312-cp312-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83e74799988d1ba3a3bd621604451bfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8905935,
            "upload_time": "2023-12-01T09:41:21",
            "upload_time_iso_8601": "2023-12-01T09:41:21.885717Z",
            "url": "https://files.pythonhosted.org/packages/d7/9d/7e85c87a4f6e5bc533851ed58037b74020567e50afc844538ee46fb6a640/iota_sdk-1.1.2-cp312-cp312-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bba4d0d51aff1e950a141b9f24e129a9a4a023c20afcc19c1d4b78e00fb94cc3",
                "md5": "0c5a7dade441adf3fa8832a9d9f0ece0",
                "sha256": "ba0940e7f0e4eff1dc19a1882ef8b18cc67025b1a1eb9377e92bafa634236fc4"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0c5a7dade441adf3fa8832a9d9f0ece0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8341508,
            "upload_time": "2023-12-01T09:41:24",
            "upload_time_iso_8601": "2023-12-01T09:41:24.411440Z",
            "url": "https://files.pythonhosted.org/packages/bb/a4/d0d51aff1e950a141b9f24e129a9a4a023c20afcc19c1d4b78e00fb94cc3/iota_sdk-1.1.2-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65d05c67e8607cc3af43bcce9cd5627ad6a1327121f13c24ac58aa1f933cf178",
                "md5": "33da49c2c6cddc65c1f0510da007470d",
                "sha256": "61ba4819ff44213cbee487bf37bd484e179ecac45072c58b29c8032b5c4000d4"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp38-cp38-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33da49c2c6cddc65c1f0510da007470d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 8131995,
            "upload_time": "2023-12-01T09:41:27",
            "upload_time_iso_8601": "2023-12-01T09:41:27.354968Z",
            "url": "https://files.pythonhosted.org/packages/65/d0/5c67e8607cc3af43bcce9cd5627ad6a1327121f13c24ac58aa1f933cf178/iota_sdk-1.1.2-cp38-cp38-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "044775bf5f90fbfb7598988a6b4a114692e2f4aa9cae7f36e30ddf9cf2e470d5",
                "md5": "4a24c75b4e9ac68c196cfdf886e3451d",
                "sha256": "44ae83153a879f2c63f5f1253168ce005c3fcc46791644e19ce9eea3124ca5ab"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a24c75b4e9ac68c196cfdf886e3451d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 7520526,
            "upload_time": "2023-12-01T09:41:29",
            "upload_time_iso_8601": "2023-12-01T09:41:29.510572Z",
            "url": "https://files.pythonhosted.org/packages/04/47/75bf5f90fbfb7598988a6b4a114692e2f4aa9cae7f36e30ddf9cf2e470d5/iota_sdk-1.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a93249e88f02f7ff495fb15cdc727a49f21da08894535c1f1bb379086c0393c9",
                "md5": "ecbd52d99de573a5c1a57c98a030c926",
                "sha256": "0ad378d712239335d2d63f7eb8ebba601650f5d68bee5a2990cc2542a1bcc1a6"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp38-cp38-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecbd52d99de573a5c1a57c98a030c926",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 8905372,
            "upload_time": "2023-12-01T09:41:32",
            "upload_time_iso_8601": "2023-12-01T09:41:32.145627Z",
            "url": "https://files.pythonhosted.org/packages/a9/32/49e88f02f7ff495fb15cdc727a49f21da08894535c1f1bb379086c0393c9/iota_sdk-1.1.2-cp38-cp38-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b11286773d8d25f94d310551dd24ad33c155e7f206773bbddde6b8501645f4d8",
                "md5": "1b54eda010b8a8f5a005d91917f89a09",
                "sha256": "ad25ab807ef1dcfe3e2853b335dc4903ddb8f5d4d262859d1f37df541903479d"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1b54eda010b8a8f5a005d91917f89a09",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 8342602,
            "upload_time": "2023-12-01T09:41:35",
            "upload_time_iso_8601": "2023-12-01T09:41:35.232515Z",
            "url": "https://files.pythonhosted.org/packages/b1/12/86773d8d25f94d310551dd24ad33c155e7f206773bbddde6b8501645f4d8/iota_sdk-1.1.2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19fd3f74ee7d2e40a5f3f04417a6722586ca3048eee8d46bd14c4f19778d480d",
                "md5": "5804cd2cc238275de4c510c116e52a76",
                "sha256": "1e7dfacd66797e6b279e7afb2d7ccebd9fefc2ec926d8ed9441f76dbd3583c45"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5804cd2cc238275de4c510c116e52a76",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8131955,
            "upload_time": "2023-12-01T09:41:37",
            "upload_time_iso_8601": "2023-12-01T09:41:37.178594Z",
            "url": "https://files.pythonhosted.org/packages/19/fd/3f74ee7d2e40a5f3f04417a6722586ca3048eee8d46bd14c4f19778d480d/iota_sdk-1.1.2-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7af3dbed919a23a6422327f8df3f4343119243e323371587c3f378cc5b7222c",
                "md5": "e2d106065f6304ddbbf2479ed999de9f",
                "sha256": "bd356779bd0b0bbcfb4b25ad8cb933618b3121a0746ed1bcdb9486d0acfaef4b"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e2d106065f6304ddbbf2479ed999de9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 7520837,
            "upload_time": "2023-12-01T09:41:38",
            "upload_time_iso_8601": "2023-12-01T09:41:38.969071Z",
            "url": "https://files.pythonhosted.org/packages/e7/af/3dbed919a23a6422327f8df3f4343119243e323371587c3f378cc5b7222c/iota_sdk-1.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f832d9b31db30db506a6e74aeb39a5d7f282a07f5b338495b0ff8df1582493c9",
                "md5": "71459fb0371040a20bf1f149bcdb1ad4",
                "sha256": "fce364cae161603fc10aac34a02340e54f1b980b85f1ba368ebd5dfd5d498871"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp39-cp39-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71459fb0371040a20bf1f149bcdb1ad4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8847655,
            "upload_time": "2023-12-01T09:41:41",
            "upload_time_iso_8601": "2023-12-01T09:41:41.602086Z",
            "url": "https://files.pythonhosted.org/packages/f8/32/d9b31db30db506a6e74aeb39a5d7f282a07f5b338495b0ff8df1582493c9/iota_sdk-1.1.2-cp39-cp39-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c70331c6f3aba849aa4aa51fa211a1fa1ab3ceb877c2ccb44ee47059a0d9ca7e",
                "md5": "bc1fc7b6018715a06e26e245aaf49b60",
                "sha256": "0ac80a9001df6a9374c0d87d7d1522909a7805a98a44aa0dab6fd1d55aded7b2"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp39-cp39-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc1fc7b6018715a06e26e245aaf49b60",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8905561,
            "upload_time": "2023-12-01T09:41:45",
            "upload_time_iso_8601": "2023-12-01T09:41:45.222635Z",
            "url": "https://files.pythonhosted.org/packages/c7/03/31c6f3aba849aa4aa51fa211a1fa1ab3ceb877c2ccb44ee47059a0d9ca7e/iota_sdk-1.1.2-cp39-cp39-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f504eea5163a1a77b9e50c0ff83e6dd02cade2a7ac45d585e17b372383c3c937",
                "md5": "69920d120fa32bf053505ae5b40c85b4",
                "sha256": "81beab2397961e66b547f0a867ec61eda8a9959cffa6c92a30001b13af83e48f"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "69920d120fa32bf053505ae5b40c85b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8342622,
            "upload_time": "2023-12-01T09:41:47",
            "upload_time_iso_8601": "2023-12-01T09:41:47.806050Z",
            "url": "https://files.pythonhosted.org/packages/f5/04/eea5163a1a77b9e50c0ff83e6dd02cade2a7ac45d585e17b372383c3c937/iota_sdk-1.1.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-01 09:40:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "iotaledger",
    "github_project": "iota-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "iota-sdk"
}
        
Elapsed time: 0.14379s