python-ics


Namepython-ics JSON
Version 915.14 PyPI version JSON
download
home_pageNone
SummaryPython wrapper for interfacing to IntrepidCS Hardware.
upload_time2024-06-12 15:38:54
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords intrepidcs can ethernet automotive ics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ![](https://github.com/intrepidcs/python_ics/blob/master/IntrepidCS.png?raw=true)

![](https://github.com/intrepidcs/python_ics/actions/workflows/wheels.yml/badge.svg)

# Description

Python wrapper for interfacing to IntrepidCS Hardware.

# Installing

- `pip install python_ics`

## Platform specific Installation notes

### Windows

- Windows requires icsneo40.dll to be installed in the PATH. This can be obtained through vspy3 or our hardware installation kit found here: https://cdn.intrepidcs.net/updates/files/RP1210KitInstall.zip

### Linux

- Linux builds use [libicsneo](https://github.com/intrepidcs/libicsneo) and are built against [manylinux](https://github.com/pypa/manylinux) using cibuildwheel.
- libicsneolegacy.so is bundled with the wheel and python_ics will automatically use it.

### MacOS

- Mac builds use [libicsneo](https://github.com/intrepidcs/libicsneo) and are built using cibuildwheel
- libicsneolegacy.dylib is bundled with the wheel and python_ics will automatically use it.

# Basic usage

```python
import ics

devices = ics.find_devices()
print(f"Found {len(devices)} devices...")
for device in devices:
    # Print, open, load default settings, close
    print(device)
    device.open()
    device.load_default_settings()
    device.close()
```

# Documentation

http://python-ics.readthedocs.io/


# Building from source

- Building from source requires clang and clang-format to be present on the build machine.
- python_ics has submodules, please be sure to initial all submodules also.

```powershell
PS > git clone git@github.com:intrepidcs/python_ics.git

PS > cd python_ics

PS > git submodule update --init

PS > clang --version
clang version 11.1.0
Target: x86_64-pc-windows-msvc
Thread model: posix
InstalledDir: C:\Program Files\LLVM\bin

PS > clang-format --version
clang-format version 11.1.0

PS > python -m pip install .
```

# Debugging on Windows with Visual Studio Code

- Build and install python_ics for debug. When installing python choose the following:
    - Customize Installation -> Advanced Options
        - Check Download debugging symbols
        - Check Download debug binaries
- Build python with debug:
    - Install Visual Studio 2019 build tools(NOTE: As of 2/5/24, it looks like MSVC 2022 does not build correctly with setuptools and debug configurations). You should be able to build from source already.
    - Create virtual environment and activate it (powershell):
        - `python -m venv .venv`
        - `.\.venv\Scripts\Activate.ps1`
    - Install dependencies:
        - `python -m pip install -r requirements.txt`
    - Build in debug (`-g` flag):
        - `python setup.py build -g`
    - Install into our virtual environment:
        - `python setup.py install --force`
    - Inside visual studio code:
        - Open the root python_ics directory
            - `code C:\Path\To\python_ics`
        - Make sure the python extension is installed (ctrl+shift+x)
            - [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
            - [Python Debugger](https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy)
        - Select the python interpreter from our virtual environment (bottom right with a python file open in the editor).
        - Open and place a breakpoint in `src/icsdebug.py`
        - launch "Python: Debug icsdebug.py"
            - Note the PID that is outputted to terminal (Can also add `os.getpid()` to watch window)
        - Place a breakpoint inside the function you'd like to debug in `methods.cpp`
        - launch "Debugger Attach" (`launch.json`) and enter the pid when prompted.
        - enjoy!

# License - MIT

Copyright (c) Intrepid Control Systems, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "python-ics",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "David Rebbe <drebbe@intrepidcs.com>",
    "keywords": "intrepidcs, CAN, Ethernet, Automotive, ICS",
    "author": null,
    "author_email": "David Rebbe <drebbe@intrepidcs.com>",
    "download_url": "https://files.pythonhosted.org/packages/dc/03/59aa905bc10de211277f4bf15385e02d9e4d5edfeadbe7f18b060a0e5d07/python_ics-915.14.tar.gz",
    "platform": null,
    "description": "![](https://github.com/intrepidcs/python_ics/blob/master/IntrepidCS.png?raw=true)\n\n![](https://github.com/intrepidcs/python_ics/actions/workflows/wheels.yml/badge.svg)\n\n# Description\n\nPython wrapper for interfacing to IntrepidCS Hardware.\n\n# Installing\n\n- `pip install python_ics`\n\n## Platform specific Installation notes\n\n### Windows\n\n- Windows requires icsneo40.dll to be installed in the PATH. This can be obtained through vspy3 or our hardware installation kit found here: https://cdn.intrepidcs.net/updates/files/RP1210KitInstall.zip\n\n### Linux\n\n- Linux builds use [libicsneo](https://github.com/intrepidcs/libicsneo) and are built against [manylinux](https://github.com/pypa/manylinux) using cibuildwheel.\n- libicsneolegacy.so is bundled with the wheel and python_ics will automatically use it.\n\n### MacOS\n\n- Mac builds use [libicsneo](https://github.com/intrepidcs/libicsneo) and are built using cibuildwheel\n- libicsneolegacy.dylib is bundled with the wheel and python_ics will automatically use it.\n\n# Basic usage\n\n```python\nimport ics\n\ndevices = ics.find_devices()\nprint(f\"Found {len(devices)} devices...\")\nfor device in devices:\n    # Print, open, load default settings, close\n    print(device)\n    device.open()\n    device.load_default_settings()\n    device.close()\n```\n\n# Documentation\n\nhttp://python-ics.readthedocs.io/\n\n\n# Building from source\n\n- Building from source requires clang and clang-format to be present on the build machine.\n- python_ics has submodules, please be sure to initial all submodules also.\n\n```powershell\nPS > git clone git@github.com:intrepidcs/python_ics.git\n\nPS > cd python_ics\n\nPS > git submodule update --init\n\nPS > clang --version\nclang version 11.1.0\nTarget: x86_64-pc-windows-msvc\nThread model: posix\nInstalledDir: C:\\Program Files\\LLVM\\bin\n\nPS > clang-format --version\nclang-format version 11.1.0\n\nPS > python -m pip install .\n```\n\n# Debugging on Windows with Visual Studio Code\n\n- Build and install python_ics for debug. When installing python choose the following:\n    - Customize Installation -> Advanced Options\n        - Check Download debugging symbols\n        - Check Download debug binaries\n- Build python with debug:\n    - Install Visual Studio 2019 build tools(NOTE: As of 2/5/24, it looks like MSVC 2022 does not build correctly with setuptools and debug configurations). You should be able to build from source already.\n    - Create virtual environment and activate it (powershell):\n        - `python -m venv .venv`\n        - `.\\.venv\\Scripts\\Activate.ps1`\n    - Install dependencies:\n        - `python -m pip install -r requirements.txt`\n    - Build in debug (`-g` flag):\n        - `python setup.py build -g`\n    - Install into our virtual environment:\n        - `python setup.py install --force`\n    - Inside visual studio code:\n        - Open the root python_ics directory\n            - `code C:\\Path\\To\\python_ics`\n        - Make sure the python extension is installed (ctrl+shift+x)\n            - [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python)\n            - [Python Debugger](https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy)\n        - Select the python interpreter from our virtual environment (bottom right with a python file open in the editor).\n        - Open and place a breakpoint in `src/icsdebug.py`\n        - launch \"Python: Debug icsdebug.py\"\n            - Note the PID that is outputted to terminal (Can also add `os.getpid()` to watch window)\n        - Place a breakpoint inside the function you'd like to debug in `methods.cpp`\n        - launch \"Debugger Attach\" (`launch.json`) and enter the pid when prompted.\n        - enjoy!\n\n# License - MIT\n\nCopyright (c) Intrepid Control Systems, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python wrapper for interfacing to IntrepidCS Hardware.",
    "version": "915.14",
    "project_urls": {
        "Documentation": "http://python-ics.readthedocs.io/",
        "Download": "https://github.com/intrepidcs/python_ics/releases",
        "Homepage": "https://intrepidcs.com",
        "Issues": "https://github.com/intrepidcs/python_ics/issues",
        "Repository": "https://github.com/intrepidcs/python_ics/"
    },
    "split_keywords": [
        "intrepidcs",
        " can",
        " ethernet",
        " automotive",
        " ics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac81a69cb33d78231a8181c8b253fa2bd50e749d595f46576104ac30c4e9d487",
                "md5": "217f78c94f8deff90aa025777e686453",
                "sha256": "e8877bd85594cbd538ca6b9a85e669ebb15c39f424d8521b60c0c31ba787409e"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp310-cp310-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "217f78c94f8deff90aa025777e686453",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1768539,
            "upload_time": "2024-06-12T15:40:10",
            "upload_time_iso_8601": "2024-06-12T15:40:10.098724Z",
            "url": "https://files.pythonhosted.org/packages/ac/81/a69cb33d78231a8181c8b253fa2bd50e749d595f46576104ac30c4e9d487/python_ics-915.14-cp310-cp310-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcd0e5a16a80c975ff6376c047c5df0834977e89d6e23bf65faec94b2a30c13e",
                "md5": "c86db431f4b07eaf4c1ac3f7c24b1897",
                "sha256": "fe6ea943190e43624cbe481068178007321ea575b6161f1db66870cf84b80759"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c86db431f4b07eaf4c1ac3f7c24b1897",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2738076,
            "upload_time": "2024-06-12T15:39:07",
            "upload_time_iso_8601": "2024-06-12T15:39:07.386475Z",
            "url": "https://files.pythonhosted.org/packages/bc/d0/e5a16a80c975ff6376c047c5df0834977e89d6e23bf65faec94b2a30c13e/python_ics-915.14-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63b90b1c76fa5e01e508f2b820eb75930b409951f347fa9fd3b1aaf7ae37367d",
                "md5": "411e96a74a8d6e37358cc5aaa57febd3",
                "sha256": "84244ce9be72a330fdce4eb90a5e22c07fbd18ddd91220d81feea3886c6b4019"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "411e96a74a8d6e37358cc5aaa57febd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2798804,
            "upload_time": "2024-06-12T15:39:09",
            "upload_time_iso_8601": "2024-06-12T15:39:09.761851Z",
            "url": "https://files.pythonhosted.org/packages/63/b9/0b1c76fa5e01e508f2b820eb75930b409951f347fa9fd3b1aaf7ae37367d/python_ics-915.14-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d59060bda6e8387c8b8c77365a02c1f36f47cd997a35ff6185ef605f2b534c4",
                "md5": "ec9678b6e7906bc2023ad779c730845b",
                "sha256": "931a7778a582ac86d55a96eb73d4e763ff1a8eb3f9a13606448bacfa66ff5f00"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ec9678b6e7906bc2023ad779c730845b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 207803,
            "upload_time": "2024-06-12T15:39:44",
            "upload_time_iso_8601": "2024-06-12T15:39:44.240761Z",
            "url": "https://files.pythonhosted.org/packages/1d/59/060bda6e8387c8b8c77365a02c1f36f47cd997a35ff6185ef605f2b534c4/python_ics-915.14-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de7267c769eeb7a2128b915a3865c17572a84ffde7c3e08a6350306cc548bc47",
                "md5": "4d12c52f652f4c9793103da2270894ab",
                "sha256": "55cfee80eb0606f8dce25d8ad248cff6028ec9dd2d45806a4e2b5bdfbb548db2"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d12c52f652f4c9793103da2270894ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 217353,
            "upload_time": "2024-06-12T15:39:45",
            "upload_time_iso_8601": "2024-06-12T15:39:45.627660Z",
            "url": "https://files.pythonhosted.org/packages/de/72/67c769eeb7a2128b915a3865c17572a84ffde7c3e08a6350306cc548bc47/python_ics-915.14-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d682e2468bf56fee84c5fe232f5ebd775ae5659da27663944844f6162ddeeff8",
                "md5": "d7af6f2187116b2665b690edec804066",
                "sha256": "27ebdb5e036c2c3385889585ee2543e93e5ebdfd4f653b89481748028f24daa7"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp311-cp311-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "d7af6f2187116b2665b690edec804066",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1768587,
            "upload_time": "2024-06-12T15:40:11",
            "upload_time_iso_8601": "2024-06-12T15:40:11.914292Z",
            "url": "https://files.pythonhosted.org/packages/d6/82/e2468bf56fee84c5fe232f5ebd775ae5659da27663944844f6162ddeeff8/python_ics-915.14-cp311-cp311-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6bc928dbeed5b4e1c0225aa1b7a0250b90e9d8c05f36261f6c43720d594a620",
                "md5": "9528407feeacdcfdc72e98e1a051b585",
                "sha256": "de3f56ebf95aafb92285f3ba83e201c6b7335b44aebd4f37fba888da01ed1950"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9528407feeacdcfdc72e98e1a051b585",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2740345,
            "upload_time": "2024-06-12T15:39:12",
            "upload_time_iso_8601": "2024-06-12T15:39:12.124471Z",
            "url": "https://files.pythonhosted.org/packages/d6/bc/928dbeed5b4e1c0225aa1b7a0250b90e9d8c05f36261f6c43720d594a620/python_ics-915.14-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b4a80af57d24cb0c49d4c0cf61942ed068ab2eabcfdb529c2b9916f7470f45b",
                "md5": "a93458619d612cbbde11147869c969b3",
                "sha256": "d5c0664398a2a224c59d1b199ea5805eace1718f2ab0893936fe773eed6c17b3"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a93458619d612cbbde11147869c969b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2801093,
            "upload_time": "2024-06-12T15:39:14",
            "upload_time_iso_8601": "2024-06-12T15:39:14.301132Z",
            "url": "https://files.pythonhosted.org/packages/8b/4a/80af57d24cb0c49d4c0cf61942ed068ab2eabcfdb529c2b9916f7470f45b/python_ics-915.14-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5eaac2fd3ebbe50f8634e77ac1ce459abb84ce14de650e45561ec7bdd50983c1",
                "md5": "1f73c3dbe6c032ef25dc37deabe0e89b",
                "sha256": "6b6fbcebf93ae9e5b26d08337affc4295424d2e5ba15a91df44576fae6e2213d"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "1f73c3dbe6c032ef25dc37deabe0e89b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 207808,
            "upload_time": "2024-06-12T15:39:47",
            "upload_time_iso_8601": "2024-06-12T15:39:47.017192Z",
            "url": "https://files.pythonhosted.org/packages/5e/aa/c2fd3ebbe50f8634e77ac1ce459abb84ce14de650e45561ec7bdd50983c1/python_ics-915.14-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "532a19dd766984c02c599513245fef07e91e0f2e013c9453c460e8929fbe237a",
                "md5": "476cb31a132a89d14bec6e0acf46cf8c",
                "sha256": "b5a887c1527fde920415d207666a55d6eb43c9b9c1477e901ae83148aa4cafad"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "476cb31a132a89d14bec6e0acf46cf8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 217358,
            "upload_time": "2024-06-12T15:39:48",
            "upload_time_iso_8601": "2024-06-12T15:39:48.302681Z",
            "url": "https://files.pythonhosted.org/packages/53/2a/19dd766984c02c599513245fef07e91e0f2e013c9453c460e8929fbe237a/python_ics-915.14-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "965d1fad48f72d0a3c7d35990473516c09ba168e0dbb41f890377718eb170b58",
                "md5": "9d101625ffe79c54a1e280a0c32765c9",
                "sha256": "dfecd1005f8370096ff362ffbddd8bbb071e891fcf40c0255330ac2cd42cd591"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "9d101625ffe79c54a1e280a0c32765c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1768832,
            "upload_time": "2024-06-12T15:40:14",
            "upload_time_iso_8601": "2024-06-12T15:40:14.077084Z",
            "url": "https://files.pythonhosted.org/packages/96/5d/1fad48f72d0a3c7d35990473516c09ba168e0dbb41f890377718eb170b58/python_ics-915.14-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd57565e2ef6e42c097b3e60f0becd4b6b2665413ffc37305d7b8272844e778b",
                "md5": "170e95006b9a78f92374331213f50dd1",
                "sha256": "62fa9b2ff60e716771bddc7f33742f4b60e5ccd310e2bd2eb0fb8e4836ab6f2b"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "170e95006b9a78f92374331213f50dd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2738712,
            "upload_time": "2024-06-12T15:39:16",
            "upload_time_iso_8601": "2024-06-12T15:39:16.672536Z",
            "url": "https://files.pythonhosted.org/packages/bd/57/565e2ef6e42c097b3e60f0becd4b6b2665413ffc37305d7b8272844e778b/python_ics-915.14-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a455195661fbc62d591bf67e3ff7a31f2d2df32e5a0423b3ea253a63d27380a6",
                "md5": "b1be427bfcbb3bbac28404be97216df4",
                "sha256": "fafd9cb6b9ffc96b43a747c2449c276bd48911c44de11dc7c0cdc92dcf73b9f0"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1be427bfcbb3bbac28404be97216df4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2799779,
            "upload_time": "2024-06-12T15:39:18",
            "upload_time_iso_8601": "2024-06-12T15:39:18.981813Z",
            "url": "https://files.pythonhosted.org/packages/a4/55/195661fbc62d591bf67e3ff7a31f2d2df32e5a0423b3ea253a63d27380a6/python_ics-915.14-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6f35109217ebe476e599754c45fef697f56ace3e51f32bc5917a6f7738b9c77",
                "md5": "e11fa7a814eea383b5edfa614c054a63",
                "sha256": "53dee78285bd683d775fc72c6151a05216b1900f0d7b56a64c8964693c9e12f2"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "e11fa7a814eea383b5edfa614c054a63",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 207833,
            "upload_time": "2024-06-12T15:39:49",
            "upload_time_iso_8601": "2024-06-12T15:39:49.777882Z",
            "url": "https://files.pythonhosted.org/packages/e6/f3/5109217ebe476e599754c45fef697f56ace3e51f32bc5917a6f7738b9c77/python_ics-915.14-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5037fd2e7db9ac352183181874fe914420ccba54f00a36014a1c3ec7edc6556",
                "md5": "bf2d1b7bdc9d0237a99e88d8fe3fa1d0",
                "sha256": "1445459de9a2c636896dade7cac850aaf8228fa3e2abd2645a734d8645a6e225"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bf2d1b7bdc9d0237a99e88d8fe3fa1d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 217466,
            "upload_time": "2024-06-12T15:39:51",
            "upload_time_iso_8601": "2024-06-12T15:39:51.445392Z",
            "url": "https://files.pythonhosted.org/packages/d5/03/7fd2e7db9ac352183181874fe914420ccba54f00a36014a1c3ec7edc6556/python_ics-915.14-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cf123a8a885a2b158475471f76b4f2552eab5fe4642f383356cacbf7b9d74ba",
                "md5": "7f677e573ee055ec953ed62ef4b65691",
                "sha256": "1d285678426a70ddeba4186fdf8a072c2397fa416544d0318a47e4950fe27db0"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp38-cp38-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "7f677e573ee055ec953ed62ef4b65691",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1767755,
            "upload_time": "2024-06-12T15:40:15",
            "upload_time_iso_8601": "2024-06-12T15:40:15.993083Z",
            "url": "https://files.pythonhosted.org/packages/6c/f1/23a8a885a2b158475471f76b4f2552eab5fe4642f383356cacbf7b9d74ba/python_ics-915.14-cp38-cp38-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcaf3809a0fcf0aa18bc3d0b6f3a059dd774c4017237e94bbc239e4aaf929f7f",
                "md5": "c30e2df05327450ddf88a460575dcf7e",
                "sha256": "e381937841226a381c2e3adc05a93fb5a295e9efc98694f7ab55b3963789b5d4"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c30e2df05327450ddf88a460575dcf7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2737841,
            "upload_time": "2024-06-12T15:39:21",
            "upload_time_iso_8601": "2024-06-12T15:39:21.581152Z",
            "url": "https://files.pythonhosted.org/packages/bc/af/3809a0fcf0aa18bc3d0b6f3a059dd774c4017237e94bbc239e4aaf929f7f/python_ics-915.14-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aad88d2d38eb39c7096692c4931080f73c9d7214365978a248ba50c8ee44a04b",
                "md5": "3061cb7baf70a41bf500b700c7f4beac",
                "sha256": "e04eabd4b387735081f08e652406b76eb5f6342dc4e18a89b43e15a53c1c3db8"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3061cb7baf70a41bf500b700c7f4beac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2798005,
            "upload_time": "2024-06-12T15:39:23",
            "upload_time_iso_8601": "2024-06-12T15:39:23.893370Z",
            "url": "https://files.pythonhosted.org/packages/aa/d8/8d2d38eb39c7096692c4931080f73c9d7214365978a248ba50c8ee44a04b/python_ics-915.14-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf0df95f340b76b519b8906a55f2e8f9f83e0196ca900de6e99dd9f841466690",
                "md5": "4e27c12b9f795e44ea53ec6efa198e48",
                "sha256": "e7a7f88b4813d637fece5a01ca916e334114312176c4cc935bb647c171ef430f"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "4e27c12b9f795e44ea53ec6efa198e48",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 207679,
            "upload_time": "2024-06-12T15:39:52",
            "upload_time_iso_8601": "2024-06-12T15:39:52.981643Z",
            "url": "https://files.pythonhosted.org/packages/cf/0d/f95f340b76b519b8906a55f2e8f9f83e0196ca900de6e99dd9f841466690/python_ics-915.14-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d53a50b718825a494930c8d05334eaaf891ddd92e6a554f3b5e80745e3413f33",
                "md5": "e492083571d5b0ed3a043d53163ab07c",
                "sha256": "ea3b69dd44788825d589db296899965bbb4efa42f402e48e4aa2725832f1b496"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e492083571d5b0ed3a043d53163ab07c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 217429,
            "upload_time": "2024-06-12T15:39:54",
            "upload_time_iso_8601": "2024-06-12T15:39:54.171549Z",
            "url": "https://files.pythonhosted.org/packages/d5/3a/50b718825a494930c8d05334eaaf891ddd92e6a554f3b5e80745e3413f33/python_ics-915.14-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6daed5e09e9c3700b8760d1c0a62e82e5d71d6b0030c17c8bc8fbc570d1c9fc6",
                "md5": "b44e75fa384122eef16f211ae844753e",
                "sha256": "e7a2de7b99c65fcbe3ef3661dae73696091b87d82e213568e7ea5cf53a0cf4d3"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp39-cp39-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "b44e75fa384122eef16f211ae844753e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1768538,
            "upload_time": "2024-06-12T15:40:18",
            "upload_time_iso_8601": "2024-06-12T15:40:18.309098Z",
            "url": "https://files.pythonhosted.org/packages/6d/ae/d5e09e9c3700b8760d1c0a62e82e5d71d6b0030c17c8bc8fbc570d1c9fc6/python_ics-915.14-cp39-cp39-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "477aea1c796e06b89147cbecac59f8c1e86caddf4571e6313d4bee3951f07cb9",
                "md5": "4b085898b8c2cd73f60a66d881f964e1",
                "sha256": "a3259ab0f5f471ba1982f3bc7ec922e824aabe579efd74cea87417568caa4038"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4b085898b8c2cd73f60a66d881f964e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2737111,
            "upload_time": "2024-06-12T15:39:26",
            "upload_time_iso_8601": "2024-06-12T15:39:26.000914Z",
            "url": "https://files.pythonhosted.org/packages/47/7a/ea1c796e06b89147cbecac59f8c1e86caddf4571e6313d4bee3951f07cb9/python_ics-915.14-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dc27e57e86090c73b1fcf5970353e5699c29d9fdf23a9fa1d7cc8f61ad71c6a",
                "md5": "3a8c9cdf3a55707ad2d4997a03d9a93c",
                "sha256": "1cf55008823e94a0916cae9b1c1bf36f6ac9e433f22f09a5104b62595048ef95"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a8c9cdf3a55707ad2d4997a03d9a93c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2797187,
            "upload_time": "2024-06-12T15:39:28",
            "upload_time_iso_8601": "2024-06-12T15:39:28.437472Z",
            "url": "https://files.pythonhosted.org/packages/1d/c2/7e57e86090c73b1fcf5970353e5699c29d9fdf23a9fa1d7cc8f61ad71c6a/python_ics-915.14-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77de968f7ba688b4ab23c529cd4f9e0567933e5b85862b6ab9a3603b0978bb3c",
                "md5": "fdf06e17cf2e811f15614e5d97cfc2d9",
                "sha256": "a1b788f9ea6fffb52cc06ad12294830793494a6e1a149a57675b5ed513916e74"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "fdf06e17cf2e811f15614e5d97cfc2d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 207678,
            "upload_time": "2024-06-12T15:39:55",
            "upload_time_iso_8601": "2024-06-12T15:39:55.881068Z",
            "url": "https://files.pythonhosted.org/packages/77/de/968f7ba688b4ab23c529cd4f9e0567933e5b85862b6ab9a3603b0978bb3c/python_ics-915.14-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5629fd5dff77d265a5e9523211ba0b1a134d455d53318befdcef71dbf24d488",
                "md5": "90b2120239e5537897444ea30cbc1c6f",
                "sha256": "c4596f965cc6bf0acb0d367a0ffffc3dd6a9ae4f77284743efb6127f9c518201"
            },
            "downloads": -1,
            "filename": "python_ics-915.14-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "90b2120239e5537897444ea30cbc1c6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 217420,
            "upload_time": "2024-06-12T15:39:57",
            "upload_time_iso_8601": "2024-06-12T15:39:57.396911Z",
            "url": "https://files.pythonhosted.org/packages/d5/62/9fd5dff77d265a5e9523211ba0b1a134d455d53318befdcef71dbf24d488/python_ics-915.14-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc0359aa905bc10de211277f4bf15385e02d9e4d5edfeadbe7f18b060a0e5d07",
                "md5": "ff6b0a01e7a97aa4b8b7119061ce31e8",
                "sha256": "e58fa5215abe6d6cc80124fc163deffab7a3ff46974bcd934eeed44f5b7840ac"
            },
            "downloads": -1,
            "filename": "python_ics-915.14.tar.gz",
            "has_sig": false,
            "md5_digest": "ff6b0a01e7a97aa4b8b7119061ce31e8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 139051,
            "upload_time": "2024-06-12T15:38:54",
            "upload_time_iso_8601": "2024-06-12T15:38:54.485823Z",
            "url": "https://files.pythonhosted.org/packages/dc/03/59aa905bc10de211277f4bf15385e02d9e4d5edfeadbe7f18b060a0e5d07/python_ics-915.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-12 15:38:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "intrepidcs",
    "github_project": "python_ics",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "python-ics"
}
        
Elapsed time: 0.28515s