iota-sdk


Nameiota-sdk JSON
Version 1.1.4 PyPI version JSON
download
home_pagehttps://www.iota.org/
SummaryPython bindings for the IOTA SDK library
upload_time2024-05-07 06:54:27
maintainerNone
docs_urlNone
authorIOTA Stiftung
requires_pythonNone
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": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "iota, client, wallet, transaction, python",
    "author": "IOTA Stiftung",
    "author_email": null,
    "download_url": null,
    "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.4",
    "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": "d7c95f09afbc804b71414331afa2a5f15c1ca0f50c4b479817543bd04c9dddee",
                "md5": "2cb408de0242a7278978661ee8076218",
                "sha256": "f2f0f68e4b894c5085f2b38ce05363e8c408451ac268fbc04998c5d3ce37aedd"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2cb408de0242a7278978661ee8076218",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 7595008,
            "upload_time": "2024-05-07T06:54:27",
            "upload_time_iso_8601": "2024-05-07T06:54:27.011444Z",
            "url": "https://files.pythonhosted.org/packages/d7/c9/5f09afbc804b71414331afa2a5f15c1ca0f50c4b479817543bd04c9dddee/iota_sdk-1.1.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "176a17c48975ddb84ff24b92f655ab3184136946bc7e45a6dde49cff57f14602",
                "md5": "902379431e5700f0ae9937353028fd47",
                "sha256": "d1842811936043a39fa7ed5cb9f30d37fb91b002a1438867afac482be56873cd"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp310-cp310-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "902379431e5700f0ae9937353028fd47",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8926563,
            "upload_time": "2024-05-07T06:54:30",
            "upload_time_iso_8601": "2024-05-07T06:54:30.249973Z",
            "url": "https://files.pythonhosted.org/packages/17/6a/17c48975ddb84ff24b92f655ab3184136946bc7e45a6dde49cff57f14602/iota_sdk-1.1.4-cp310-cp310-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06764bc1130add19c66469c993006ab273061614b2bdcc87ce76341a65281bb7",
                "md5": "6b395a9dadb169d799af442936c120a8",
                "sha256": "36d253c8251a917e68b8a9a4a987a1b104f7f402c2e213ab1bf700328c4a0d48"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp310-cp310-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b395a9dadb169d799af442936c120a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 9057041,
            "upload_time": "2024-05-07T06:54:32",
            "upload_time_iso_8601": "2024-05-07T06:54:32.852756Z",
            "url": "https://files.pythonhosted.org/packages/06/76/4bc1130add19c66469c993006ab273061614b2bdcc87ce76341a65281bb7/iota_sdk-1.1.4-cp310-cp310-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a3fb034dbd2f392b06b684e1b3a99ecb57a1772df271833204f36e2572648bf",
                "md5": "d4fa4e0898cba74d1c362707b343e9f1",
                "sha256": "a86f8c9b2c09ecdc905cf5033e3897103434fddf27a96805d797b94ba1f66e12"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d4fa4e0898cba74d1c362707b343e9f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8457391,
            "upload_time": "2024-05-07T06:54:35",
            "upload_time_iso_8601": "2024-05-07T06:54:35.744114Z",
            "url": "https://files.pythonhosted.org/packages/2a/3f/b034dbd2f392b06b684e1b3a99ecb57a1772df271833204f36e2572648bf/iota_sdk-1.1.4-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5815927a6103354879e86965fdba9034b705a60c8070dc59756e3ec09dbbc649",
                "md5": "e5726b061d4616f982b181daf0411836",
                "sha256": "bd6cdb26bbc73566f9f22ee212c81effcd8c86f60d97de77a5c53b55aacceccc"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5726b061d4616f982b181daf0411836",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 7594984,
            "upload_time": "2024-05-07T06:54:38",
            "upload_time_iso_8601": "2024-05-07T06:54:38.081987Z",
            "url": "https://files.pythonhosted.org/packages/58/15/927a6103354879e86965fdba9034b705a60c8070dc59756e3ec09dbbc649/iota_sdk-1.1.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee4c8eb9e4fe6c75592215dc73be99802677392d9222edda3eda4a83bb14252f",
                "md5": "a62ae5f4c30a638747c1a0494489da7e",
                "sha256": "d013f49abda01b385253c6447884d3e9137e2eae5ad40dbdc1b2620f64c0a1b3"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp311-cp311-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a62ae5f4c30a638747c1a0494489da7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8926456,
            "upload_time": "2024-05-07T06:54:40",
            "upload_time_iso_8601": "2024-05-07T06:54:40.638498Z",
            "url": "https://files.pythonhosted.org/packages/ee/4c/8eb9e4fe6c75592215dc73be99802677392d9222edda3eda4a83bb14252f/iota_sdk-1.1.4-cp311-cp311-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eae579a6ee5cd70c43ea00fc8c5d19456093ab0a04e68e1883954e1cb693dec8",
                "md5": "4f64cd06765c94bc67094de07fe73a90",
                "sha256": "6b92fc85d22e05f5b32b0693e1e1a3c37d700fa3b662b97e114962e3930e9ba0"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp311-cp311-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f64cd06765c94bc67094de07fe73a90",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9057137,
            "upload_time": "2024-05-07T06:54:43",
            "upload_time_iso_8601": "2024-05-07T06:54:43.200960Z",
            "url": "https://files.pythonhosted.org/packages/ea/e5/79a6ee5cd70c43ea00fc8c5d19456093ab0a04e68e1883954e1cb693dec8/iota_sdk-1.1.4-cp311-cp311-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fecb5147000a10f09bbf591c775f1b67b821852a454ae48f09dabab792c232d",
                "md5": "13460343a84d06174b77ff9f574b0dae",
                "sha256": "8941db47c37edfeb42a8642b2a26bc8a6d8f4bea70261eed2cf1c771bcfb1d61"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "13460343a84d06174b77ff9f574b0dae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8457508,
            "upload_time": "2024-05-07T06:54:45",
            "upload_time_iso_8601": "2024-05-07T06:54:45.848676Z",
            "url": "https://files.pythonhosted.org/packages/9f/ec/b5147000a10f09bbf591c775f1b67b821852a454ae48f09dabab792c232d/iota_sdk-1.1.4-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2db5e52106ae9d8d69be8628f341ab24af1cc99187ef48532f68fa4cd2379630",
                "md5": "72244a804a9e11a95605b7f7d624d7a2",
                "sha256": "ba24f2a3377db2dcb07e85ca50746264aa8dde06e085e79ec3b37415b74bd862"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "72244a804a9e11a95605b7f7d624d7a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 7596190,
            "upload_time": "2024-05-07T06:54:49",
            "upload_time_iso_8601": "2024-05-07T06:54:49.525584Z",
            "url": "https://files.pythonhosted.org/packages/2d/b5/e52106ae9d8d69be8628f341ab24af1cc99187ef48532f68fa4cd2379630/iota_sdk-1.1.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ae977fbca172acf9dc323b246e0fff78d32bee50038ec8e6438d79b9284d8d0",
                "md5": "de88a14a116f227c7a4ea04783bd2cd8",
                "sha256": "97b63bffeb6f6e30a33be4423d8d91a6c02276b693f269128ebd0fbc8a0caa28"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp312-cp312-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de88a14a116f227c7a4ea04783bd2cd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 9056279,
            "upload_time": "2024-05-07T06:54:52",
            "upload_time_iso_8601": "2024-05-07T06:54:52.098344Z",
            "url": "https://files.pythonhosted.org/packages/0a/e9/77fbca172acf9dc323b246e0fff78d32bee50038ec8e6438d79b9284d8d0/iota_sdk-1.1.4-cp312-cp312-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e2f588cdce770d574c863dbf2ea301f7c3b5babb36c5a06e9fbdaec59c8fc6",
                "md5": "e04e1c99daf34b377b1ac2168dd06b64",
                "sha256": "3cc42f6be146dbb13e30f435ca07bfc57ee43ef84c24b38cf6c66c63bc4d64dd"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e04e1c99daf34b377b1ac2168dd06b64",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8457869,
            "upload_time": "2024-05-07T06:54:54",
            "upload_time_iso_8601": "2024-05-07T06:54:54.947583Z",
            "url": "https://files.pythonhosted.org/packages/56/e2/f588cdce770d574c863dbf2ea301f7c3b5babb36c5a06e9fbdaec59c8fc6/iota_sdk-1.1.4-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "616d614e359095e7fba3c226119b72af016de52d363c32989c857226e16e53b0",
                "md5": "65ded188cccbbcc3322a2c918f94449f",
                "sha256": "0c4e0df11cf4d8fd147437b72ba5f816125d74754e6c919ca0bf00ab8c631e83"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65ded188cccbbcc3322a2c918f94449f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 7595330,
            "upload_time": "2024-05-07T06:54:57",
            "upload_time_iso_8601": "2024-05-07T06:54:57.323603Z",
            "url": "https://files.pythonhosted.org/packages/61/6d/614e359095e7fba3c226119b72af016de52d363c32989c857226e16e53b0/iota_sdk-1.1.4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36eee0775655b5d3af64263eb01ecba3003f83df9fd476a9592ca31deac25c48",
                "md5": "143f6d5e380273aa82a99e4e82d47ab3",
                "sha256": "0064ddbaf9f2fc5f8fe97249f7e5684730ab7bebc1700df132c73f0d083feba8"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp38-cp38-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "143f6d5e380273aa82a99e4e82d47ab3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 9057390,
            "upload_time": "2024-05-07T06:54:59",
            "upload_time_iso_8601": "2024-05-07T06:54:59.491199Z",
            "url": "https://files.pythonhosted.org/packages/36/ee/e0775655b5d3af64263eb01ecba3003f83df9fd476a9592ca31deac25c48/iota_sdk-1.1.4-cp38-cp38-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b244aa24f10c6c52940d8e4a8aaa4e19974ba80cc85013de737ae71c59f225d",
                "md5": "6998400acbff9caa126460d206e7d08c",
                "sha256": "146735088850bed85b3a969eb1cd467ed99523c339801d923131e540b533fb9f"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6998400acbff9caa126460d206e7d08c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 8457751,
            "upload_time": "2024-05-07T06:55:02",
            "upload_time_iso_8601": "2024-05-07T06:55:02.924199Z",
            "url": "https://files.pythonhosted.org/packages/6b/24/4aa24f10c6c52940d8e4a8aaa4e19974ba80cc85013de737ae71c59f225d/iota_sdk-1.1.4-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b521e3dd3abfce7a4e0670ec4b0ee49c10d1eb463ff8b2d90af3b10652e43a4c",
                "md5": "aee6456934f3ede6c1502fdd4b4cd3aa",
                "sha256": "fb59b41f9f9ae8c7eb68901a97951469e01c731bfab4fe162d1a053ebf2a118e"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aee6456934f3ede6c1502fdd4b4cd3aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 7595075,
            "upload_time": "2024-05-07T06:55:06",
            "upload_time_iso_8601": "2024-05-07T06:55:06.404663Z",
            "url": "https://files.pythonhosted.org/packages/b5/21/e3dd3abfce7a4e0670ec4b0ee49c10d1eb463ff8b2d90af3b10652e43a4c/iota_sdk-1.1.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79fd303c7eb40fd7ec9b8d451a374ec95f4a6b7e9d58d3c6de1d0abd62f6f666",
                "md5": "2965bf37c866a3ad7d51ffacbb30b788",
                "sha256": "fc216f05567f4acc3ff9b8f40d88f266f82e377bd63fcc216c996241a1b27486"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp39-cp39-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2965bf37c866a3ad7d51ffacbb30b788",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8927074,
            "upload_time": "2024-05-07T06:55:08",
            "upload_time_iso_8601": "2024-05-07T06:55:08.505029Z",
            "url": "https://files.pythonhosted.org/packages/79/fd/303c7eb40fd7ec9b8d451a374ec95f4a6b7e9d58d3c6de1d0abd62f6f666/iota_sdk-1.1.4-cp39-cp39-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4719c6dc9ac543ef79ddee7a331634167c540ed85df1fedde22ffa84d0ecebc",
                "md5": "3ffd197af28a90e4248e97092fa7860f",
                "sha256": "66bd9799b8606e04888b4595baf0925f3c367d93f46753be8381b20e007ea3c2"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp39-cp39-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ffd197af28a90e4248e97092fa7860f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 9057257,
            "upload_time": "2024-05-07T06:55:11",
            "upload_time_iso_8601": "2024-05-07T06:55:11.511767Z",
            "url": "https://files.pythonhosted.org/packages/b4/71/9c6dc9ac543ef79ddee7a331634167c540ed85df1fedde22ffa84d0ecebc/iota_sdk-1.1.4-cp39-cp39-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48494cc928817827a8b4f0b6f11e0d62e33b2aa8adf9305a56fc9e79d6e9cdb3",
                "md5": "93a30f30a2db466b5fd39b0672334bcd",
                "sha256": "e3c3b237b616870cb038b1c59069a1dc4509199d07eea8ecbae46d78dc7b6b12"
            },
            "downloads": -1,
            "filename": "iota_sdk-1.1.4-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "93a30f30a2db466b5fd39b0672334bcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8457604,
            "upload_time": "2024-05-07T06:55:14",
            "upload_time_iso_8601": "2024-05-07T06:55:14.235559Z",
            "url": "https://files.pythonhosted.org/packages/48/49/4cc928817827a8b4f0b6f11e0d62e33b2aa8adf9305a56fc9e79d6e9cdb3/iota_sdk-1.1.4-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-07 06:54:27",
    "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.80687s