ipctk


Nameipctk JSON
Version 1.2.0 PyPI version JSON
download
home_page
SummaryA set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation.
upload_time2023-12-12 03:37:27
maintainer
docs_urlNone
author
requires_python>=3.6
licenseMIT License Copyright (c) 2020 IPC-Sim 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.
keywords ipc simulation physics science reserch
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # IPC Toolkit

![PyPI](https://img.shields.io/pypi/v/ipctk?color=brightgreen&label=PyPI&logo=python&logoColor=white)
![PyPI - Downloads](https://img.shields.io/pypi/dm/ipctk?label=PyPI%20Downloads&logo=python&logoColor=white)
![GitHub Repo stars](https://img.shields.io/github/stars/ipc-sim/ipc-toolkit?label=Stars&logo=github)
[![codecov](https://codecov.io/github/ipc-sim/ipc-toolkit/graph/badge.svg?token=9BR6GPKRY8)](https://codecov.io/github/ipc-sim/ipc-toolkit)
[![License](https://img.shields.io/github/license/ipc-sim/ipc-toolkit.svg?color=blue&label=License)](https://github.com/ipc-sim/ipc-toolkit/blob/main/LICENSE)

## Description

IPC Toolkit is a set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation.

### Features

* IPC barrier function and its derivatives and adaptive barrier stiffness algorithm
* Broad-phase and narrow-phase continuous collision detection (CCD)
* Distance computation and derivatives between edges in 2D and triangles in 3D
* Distance barrier potential and its derivatives
* Smooth and lagged dissipative friction potential and its derivatives

### Limitations

This is not a full simulation library. As such it does not include any physics or solvers. For a full simulation implementation, we recommend [PolyFEM](https://polyfem.github.io/) (a finite element library) or [Rigid IPC](https://github.com/ipc-sim/rigid-ipc) (rigid-body dynamics) both of which utilize the IPC Toolkit.

## Installation

To install the latest release, you can use `pip`:

```
pip install ipctk
```

If you wish to install the current development code, you can compile the library from scratch. Either clone the [repo](https://github.com/ipc-sim/ipc-toolkit) manually or use `git+` with `pip`:

```
pip install git+https://github.com/ipc-sim/ipc-toolkit
```

## Help/Documentation

* A tutorial on how to use the toolkit can be found [here](https://ipctk.xyz/tutorial/getting_started.html).
* A function reference can be found [here](https://ipctk.xyz/python.html).

## Contributing

This project is open to contributors! Contributions can come in the form of feature requests, bug fixes, documentation, tutorials, and the like. We highly recommend filing an Issue first before submitting a Pull Request.

Simply fork this repository and make a Pull Request! We would appreciate:

* Implementation of new features
* Bug Reports
* Documentation
* Testing

## Citation

If you use the IPC Toolkit in your project, please consider citing our work:

```bibtex
@software{ipc_toolkit,
  author = {Zachary Ferguson and others},
  title = {{IPC Toolkit}},
  url = {https://github.com/ipc-sim/ipc-toolkit},
  year = {2020},
}
```

Additionally, you can cite the original IPC paper:

```bibtex
@article{Li2020IPC,
    author = {Minchen Li and Zachary Ferguson and Teseo Schneider and Timothy Langlois and
        Denis Zorin and Daniele Panozzo and Chenfanfu Jiang and Danny M. Kaufman},
    title = {Incremental Potential Contact: Intersection- and Inversion-free Large Deformation Dynamics},
    journal = {ACM Trans. Graph. (SIGGRAPH)},
    year = {2020},
    volume = {39},
    number = {4},
    articleno = {49}
}
```

## License

MIT License © 2020, the IPC-Sim organization (See <a href="https://github.com/ipc-sim/ipc-toolkit/blob/main/LICENSE"><code>LICENSE.txt</code></a> for details)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ipctk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "IPC,simulation,physics,science,reserch",
    "author": "",
    "author_email": "Zachary Ferguson <zfergus@nyu.edu>",
    "download_url": "https://files.pythonhosted.org/packages/ed/c4/ad08544bef004ef70c5545a5cee6087975f493bf5b714a4d81e7b2f63d16/ipctk-1.2.0.tar.gz",
    "platform": null,
    "description": "# IPC Toolkit\n\n![PyPI](https://img.shields.io/pypi/v/ipctk?color=brightgreen&label=PyPI&logo=python&logoColor=white)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/ipctk?label=PyPI%20Downloads&logo=python&logoColor=white)\n![GitHub Repo stars](https://img.shields.io/github/stars/ipc-sim/ipc-toolkit?label=Stars&logo=github)\n[![codecov](https://codecov.io/github/ipc-sim/ipc-toolkit/graph/badge.svg?token=9BR6GPKRY8)](https://codecov.io/github/ipc-sim/ipc-toolkit)\n[![License](https://img.shields.io/github/license/ipc-sim/ipc-toolkit.svg?color=blue&label=License)](https://github.com/ipc-sim/ipc-toolkit/blob/main/LICENSE)\n\n## Description\n\nIPC Toolkit is a set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation.\n\n### Features\n\n* IPC barrier function and its derivatives and adaptive barrier stiffness algorithm\n* Broad-phase and narrow-phase continuous collision detection (CCD)\n* Distance computation and derivatives between edges in 2D and triangles in 3D\n* Distance barrier potential and its derivatives\n* Smooth and lagged dissipative friction potential and its derivatives\n\n### Limitations\n\nThis is not a full simulation library. As such it does not include any physics or solvers. For a full simulation implementation, we recommend [PolyFEM](https://polyfem.github.io/) (a finite element library) or [Rigid IPC](https://github.com/ipc-sim/rigid-ipc) (rigid-body dynamics) both of which utilize the IPC Toolkit.\n\n## Installation\n\nTo install the latest release, you can use `pip`:\n\n```\npip install ipctk\n```\n\nIf you wish to install the current development code, you can compile the library from scratch. Either clone the [repo](https://github.com/ipc-sim/ipc-toolkit) manually or use `git+` with `pip`:\n\n```\npip install git+https://github.com/ipc-sim/ipc-toolkit\n```\n\n## Help/Documentation\n\n* A tutorial on how to use the toolkit can be found [here](https://ipctk.xyz/tutorial/getting_started.html).\n* A function reference can be found [here](https://ipctk.xyz/python.html).\n\n## Contributing\n\nThis project is open to contributors! Contributions can come in the form of feature requests, bug fixes, documentation, tutorials, and the like. We highly recommend filing an Issue first before submitting a Pull Request.\n\nSimply fork this repository and make a Pull Request! We would appreciate:\n\n* Implementation of new features\n* Bug Reports\n* Documentation\n* Testing\n\n## Citation\n\nIf you use the IPC Toolkit in your project, please consider citing our work:\n\n```bibtex\n@software{ipc_toolkit,\n  author = {Zachary Ferguson and others},\n  title = {{IPC Toolkit}},\n  url = {https://github.com/ipc-sim/ipc-toolkit},\n  year = {2020},\n}\n```\n\nAdditionally, you can cite the original IPC paper:\n\n```bibtex\n@article{Li2020IPC,\n    author = {Minchen Li and Zachary Ferguson and Teseo Schneider and Timothy Langlois and\n        Denis Zorin and Daniele Panozzo and Chenfanfu Jiang and Danny M. Kaufman},\n    title = {Incremental Potential Contact: Intersection- and Inversion-free Large Deformation Dynamics},\n    journal = {ACM Trans. Graph. (SIGGRAPH)},\n    year = {2020},\n    volume = {39},\n    number = {4},\n    articleno = {49}\n}\n```\n\n## License\n\nMIT License \u00a9 2020, the IPC-Sim organization (See <a href=\"https://github.com/ipc-sim/ipc-toolkit/blob/main/LICENSE\"><code>LICENSE.txt</code></a> for details)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2020 IPC-Sim  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. ",
    "summary": "A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation.",
    "version": "1.2.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/ipc-sim/ipc-toolkit/issues",
        "Homepage": "https://ipctk.xyz",
        "Source Code": "https://github.com/ipc-sim/ipc-toolkit"
    },
    "split_keywords": [
        "ipc",
        "simulation",
        "physics",
        "science",
        "reserch"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af82e882a888db29dacece2319aaed472eb242d4a7732f79031036c08c11c16e",
                "md5": "ca22b3785dbe190b9fea0b0e12337cfe",
                "sha256": "a3879d48c04789f95ce645030ddd104259cbc3f27fff980ae9e9180f85f35091"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca22b3785dbe190b9fea0b0e12337cfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1523302,
            "upload_time": "2023-12-12T03:36:57",
            "upload_time_iso_8601": "2023-12-12T03:36:57.317922Z",
            "url": "https://files.pythonhosted.org/packages/af/82/e882a888db29dacece2319aaed472eb242d4a7732f79031036c08c11c16e/ipctk-1.2.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0c02e082bfbfbf97fafee36494b8e378d93d85c1dab9d317c2bce85d610f5a4",
                "md5": "3c5306033c2c6293fd17e13434553965",
                "sha256": "329749227b8d316d1fd2bf503283e4444ffecd69c88083266a1b13079b119127"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3c5306033c2c6293fd17e13434553965",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1323394,
            "upload_time": "2023-12-12T03:36:58",
            "upload_time_iso_8601": "2023-12-12T03:36:58.808069Z",
            "url": "https://files.pythonhosted.org/packages/d0/c0/2e082bfbfbf97fafee36494b8e378d93d85c1dab9d317c2bce85d610f5a4/ipctk-1.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2cf83c83b2845465297c57998836d6ff100ae2cb99dbbbe6d811f8094932b9c",
                "md5": "b1383b8a4f2d217bbace9b86dc074a87",
                "sha256": "fb33898f34d73fdb48b1d67d8ba3b3b67d40f59d4b95113188cbff24887cffe6"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1383b8a4f2d217bbace9b86dc074a87",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1742668,
            "upload_time": "2023-12-12T03:37:00",
            "upload_time_iso_8601": "2023-12-12T03:37:00.085045Z",
            "url": "https://files.pythonhosted.org/packages/b2/cf/83c83b2845465297c57998836d6ff100ae2cb99dbbbe6d811f8094932b9c/ipctk-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "324ed0b63d7ca26d0c3c5a844cce7a645e3f33cca4ceabbadd0b823c7e8aae26",
                "md5": "81713465b995cb416ab88c2abb549b6b",
                "sha256": "47411cc72e24708d16745982541e596b6542f535cd131d6ac0b608125be74014"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "81713465b995cb416ab88c2abb549b6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1178439,
            "upload_time": "2023-12-12T03:37:01",
            "upload_time_iso_8601": "2023-12-12T03:37:01.709054Z",
            "url": "https://files.pythonhosted.org/packages/32/4e/d0b63d7ca26d0c3c5a844cce7a645e3f33cca4ceabbadd0b823c7e8aae26/ipctk-1.2.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3081499d406d4f68e178b6e5cfe1dc53cf9e0f96e8e227dac966584c9f11b78a",
                "md5": "1e786c37afbdf9484f6d0f16e1e8d6b4",
                "sha256": "b45f294be305681436aee8b2eb591dd357576eb657815c80b932eea54dd40156"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e786c37afbdf9484f6d0f16e1e8d6b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1524745,
            "upload_time": "2023-12-12T03:37:03",
            "upload_time_iso_8601": "2023-12-12T03:37:03.673207Z",
            "url": "https://files.pythonhosted.org/packages/30/81/499d406d4f68e178b6e5cfe1dc53cf9e0f96e8e227dac966584c9f11b78a/ipctk-1.2.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37a7f0965ba548bf384f2e874cf0b922e2327913b91a5e3332c111749a7795e9",
                "md5": "5b753430fc5f73cec5a7529ebcd3e5d9",
                "sha256": "487682b0b4b0f8ba19a3ad178b4f64d6df20408077953c88dc9aba433e2a4074"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b753430fc5f73cec5a7529ebcd3e5d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1325064,
            "upload_time": "2023-12-12T03:37:05",
            "upload_time_iso_8601": "2023-12-12T03:37:05.908635Z",
            "url": "https://files.pythonhosted.org/packages/37/a7/f0965ba548bf384f2e874cf0b922e2327913b91a5e3332c111749a7795e9/ipctk-1.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab80da115aa4439dbe374142b313bd1616bec861e40853e098d7e564b1c24b0f",
                "md5": "69bdc1723a02f66c2d1ddf95b0318299",
                "sha256": "ba205f5e85a0351ba04914151570a67dfb9fac1fbe63bbe4340303ebf93828b5"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69bdc1723a02f66c2d1ddf95b0318299",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1743627,
            "upload_time": "2023-12-12T03:37:07",
            "upload_time_iso_8601": "2023-12-12T03:37:07.811920Z",
            "url": "https://files.pythonhosted.org/packages/ab/80/da115aa4439dbe374142b313bd1616bec861e40853e098d7e564b1c24b0f/ipctk-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e680d91481b434c768b65487a96c4e34ba855a16fc9fdffd14deac5fa1ff710",
                "md5": "f82f8d4940c78e9c4aa9f14930345e20",
                "sha256": "54d301dc05bfb7d2c774504c188683413c0696ea63449675c61d0b06fcfda157"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f82f8d4940c78e9c4aa9f14930345e20",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1179574,
            "upload_time": "2023-12-12T03:37:09",
            "upload_time_iso_8601": "2023-12-12T03:37:09.138493Z",
            "url": "https://files.pythonhosted.org/packages/2e/68/0d91481b434c768b65487a96c4e34ba855a16fc9fdffd14deac5fa1ff710/ipctk-1.2.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83869149f53fa948da5d005b3ab9eb042b4801df23e71c2090a31d0093a71255",
                "md5": "3571b879d4d1f9b9c36b822b7d4ace70",
                "sha256": "0a5beaa94a41e41c1fb14a140f54743d2abecb1679e97a9226b7aa3ca196abdc"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3571b879d4d1f9b9c36b822b7d4ace70",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1547462,
            "upload_time": "2023-12-12T03:37:10",
            "upload_time_iso_8601": "2023-12-12T03:37:10.451006Z",
            "url": "https://files.pythonhosted.org/packages/83/86/9149f53fa948da5d005b3ab9eb042b4801df23e71c2090a31d0093a71255/ipctk-1.2.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f36fd3f96ebe4efe0d5a234fe2fc84bbfc037c0906e539ea7a8b83d32e03eea",
                "md5": "009886a36a3780ef6ea1d4e301b47e08",
                "sha256": "4d180e459deb836fc5c55a182af1430d1a86b21a4287f5297ecd4d23a0f3149b"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "009886a36a3780ef6ea1d4e301b47e08",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1332981,
            "upload_time": "2023-12-12T03:37:11",
            "upload_time_iso_8601": "2023-12-12T03:37:11.698772Z",
            "url": "https://files.pythonhosted.org/packages/8f/36/fd3f96ebe4efe0d5a234fe2fc84bbfc037c0906e539ea7a8b83d32e03eea/ipctk-1.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6334c54dcb89df82e097082749494509a641d499a9591bce3c97f829a28c1805",
                "md5": "41e7bc18f519725b4216cd4b24742237",
                "sha256": "27ce525b4d198212bafa979b9229c4c9a99e2f48b6960a9bde60509af2895339"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41e7bc18f519725b4216cd4b24742237",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1738121,
            "upload_time": "2023-12-12T03:37:13",
            "upload_time_iso_8601": "2023-12-12T03:37:13.239929Z",
            "url": "https://files.pythonhosted.org/packages/63/34/c54dcb89df82e097082749494509a641d499a9591bce3c97f829a28c1805/ipctk-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fefbb545c300dc9ebc8307d8f886fedf9281156874ce6dce8c1fceaa92ab4540",
                "md5": "f357af0a48c66eb0e76c7fda3753d2f4",
                "sha256": "cae9b6a0f66ae2b8ae329ccedd422b35061d511c925c516c69be1e3eaa3a2511"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f357af0a48c66eb0e76c7fda3753d2f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1180951,
            "upload_time": "2023-12-12T03:37:14",
            "upload_time_iso_8601": "2023-12-12T03:37:14.495226Z",
            "url": "https://files.pythonhosted.org/packages/fe/fb/b545c300dc9ebc8307d8f886fedf9281156874ce6dce8c1fceaa92ab4540/ipctk-1.2.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53cb994371406aa025a59adfaa9172174e621722692ee185a983311cf14cf011",
                "md5": "976e753adf036f8eb6ea561613b278e4",
                "sha256": "539faac85f7b11dc9cdeebc127b48afda7627f458b48eff40707876bb1aaf980"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp38-cp38-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "976e753adf036f8eb6ea561613b278e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1522964,
            "upload_time": "2023-12-12T03:37:15",
            "upload_time_iso_8601": "2023-12-12T03:37:15.785746Z",
            "url": "https://files.pythonhosted.org/packages/53/cb/994371406aa025a59adfaa9172174e621722692ee185a983311cf14cf011/ipctk-1.2.0-cp38-cp38-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "858d006afd51e04db75a3957920922c98c49effd89045ac927aaff629092c3a8",
                "md5": "0f828e7051ea9b3cef69218058c44484",
                "sha256": "79651a00046a8278959a9793326f3978819408aace205b299fd6997aab4c872c"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0f828e7051ea9b3cef69218058c44484",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1322558,
            "upload_time": "2023-12-12T03:37:16",
            "upload_time_iso_8601": "2023-12-12T03:37:16.976307Z",
            "url": "https://files.pythonhosted.org/packages/85/8d/006afd51e04db75a3957920922c98c49effd89045ac927aaff629092c3a8/ipctk-1.2.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d70505c9448a754d27b6703664f53500b9456b7d72d94c5bd5be81b73540b3e0",
                "md5": "7a890d7a10a0ecf3f2553d48162bcba2",
                "sha256": "009687d0c8379df193e96782086d1012ca1cb0cb4454909fdcd5b71970abd771"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a890d7a10a0ecf3f2553d48162bcba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1742569,
            "upload_time": "2023-12-12T03:37:18",
            "upload_time_iso_8601": "2023-12-12T03:37:18.389061Z",
            "url": "https://files.pythonhosted.org/packages/d7/05/05c9448a754d27b6703664f53500b9456b7d72d94c5bd5be81b73540b3e0/ipctk-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "356ea49218a1718b493e2b7880e6e19548c757cdf8f20197dec7ee815f3d87ce",
                "md5": "f00fb4f9ee72b95b02a88b702cef55e9",
                "sha256": "d649e406fc1358822e6c593fcc2bbaaa331f7ae7645fa0378fa6ae111844f44b"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f00fb4f9ee72b95b02a88b702cef55e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1178122,
            "upload_time": "2023-12-12T03:37:19",
            "upload_time_iso_8601": "2023-12-12T03:37:19.679480Z",
            "url": "https://files.pythonhosted.org/packages/35/6e/a49218a1718b493e2b7880e6e19548c757cdf8f20197dec7ee815f3d87ce/ipctk-1.2.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05cc61d162eaf8b8f5b82a43db04675313d92f7dd5bf3ad288ef41a0a55e242b",
                "md5": "47f4035dfb29b1ed41b1849a6f9f87f2",
                "sha256": "64c67e671ebcb54a7a9a97b4575f6a74fdbfaad63da9d6556f715eca27dbdade"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47f4035dfb29b1ed41b1849a6f9f87f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1523457,
            "upload_time": "2023-12-12T03:37:20",
            "upload_time_iso_8601": "2023-12-12T03:37:20.933241Z",
            "url": "https://files.pythonhosted.org/packages/05/cc/61d162eaf8b8f5b82a43db04675313d92f7dd5bf3ad288ef41a0a55e242b/ipctk-1.2.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b13535d680031f65b45b6fa54dc26f732a5c6001f985aa29500943c8556f246",
                "md5": "fa324d73a6935050014ca4faba9e47bb",
                "sha256": "be180a1fbed4c836c9d4cf81686e0943f8e1ee125e47c394fd3ff71424401512"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fa324d73a6935050014ca4faba9e47bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1323260,
            "upload_time": "2023-12-12T03:37:22",
            "upload_time_iso_8601": "2023-12-12T03:37:22.254284Z",
            "url": "https://files.pythonhosted.org/packages/7b/13/535d680031f65b45b6fa54dc26f732a5c6001f985aa29500943c8556f246/ipctk-1.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9059945a5aa140d210c66bdb5560ef00e82a4340db2b0b7bd7c893b41778b55c",
                "md5": "84d91f81e775dcacda869b4d9795f70b",
                "sha256": "73ad797cc19c9c12c1888da6000e0493c1b38012b5c428bc0f5813ba3cc27f6c"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84d91f81e775dcacda869b4d9795f70b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1742914,
            "upload_time": "2023-12-12T03:37:24",
            "upload_time_iso_8601": "2023-12-12T03:37:24.144827Z",
            "url": "https://files.pythonhosted.org/packages/90/59/945a5aa140d210c66bdb5560ef00e82a4340db2b0b7bd7c893b41778b55c/ipctk-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76ca0843650bb9e1da766b6fda6031effdac55a2328dbaa35a2e5815447b0435",
                "md5": "522bd60bb7c94f2179b47d47890ac7d4",
                "sha256": "51506e273141cf5b6978b182dbc48e922ced114be2143a60a5b4edd3795b9e2b"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "522bd60bb7c94f2179b47d47890ac7d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1226552,
            "upload_time": "2023-12-12T03:37:25",
            "upload_time_iso_8601": "2023-12-12T03:37:25.815653Z",
            "url": "https://files.pythonhosted.org/packages/76/ca/0843650bb9e1da766b6fda6031effdac55a2328dbaa35a2e5815447b0435/ipctk-1.2.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edc4ad08544bef004ef70c5545a5cee6087975f493bf5b714a4d81e7b2f63d16",
                "md5": "aa8f4c5b05499f293629be8e086ca182",
                "sha256": "c1759a234153b730a7819165f0f9d85502bf41b088ff87b4ebba5dbebd546435"
            },
            "downloads": -1,
            "filename": "ipctk-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "aa8f4c5b05499f293629be8e086ca182",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 164668,
            "upload_time": "2023-12-12T03:37:27",
            "upload_time_iso_8601": "2023-12-12T03:37:27.217719Z",
            "url": "https://files.pythonhosted.org/packages/ed/c4/ad08544bef004ef70c5545a5cee6087975f493bf5b714a4d81e7b2f63d16/ipctk-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-12 03:37:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ipc-sim",
    "github_project": "ipc-toolkit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ipctk"
}
        
Elapsed time: 0.15353s