Name | ipctk JSON |
Version |
1.4.0
JSON |
| download |
home_page | None |
Summary | A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation. |
upload_time | 2025-07-22 12:24:33 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.6 |
license | None |
keywords |
ipc
simulation
physics
science
research
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# IPC Toolkit



[](https://codecov.io/github/ipc-sim/ipc-toolkit)
[](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
* Tutorials on how to use the toolkit can be found [here](https://ipctk.xyz/tutorials/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": null,
"name": "ipctk",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "IPC, simulation, physics, science, research",
"author": null,
"author_email": "Zachary Ferguson <zy.fergus@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/88/92/d675a03e41387c8143bbf38ed3def90579062f55c197151f5102bd37dd03/ipctk-1.4.0.tar.gz",
"platform": null,
"description": "# IPC Toolkit\n\n\n\n\n[](https://codecov.io/github/ipc-sim/ipc-toolkit)\n[](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* Tutorials on how to use the toolkit can be found [here](https://ipctk.xyz/tutorials/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": null,
"summary": "A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation.",
"version": "1.4.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",
" research"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "429142ee6bd4d18af6a2b193f15e8e280e58b7fa58572d033a50f089f8731398",
"md5": "531f0a595cb3a08951438b241ae12562",
"sha256": "395be0444dd3d43949cfa81f0f440023f500b9ef7de7a5f830d88861beb457c3"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "531f0a595cb3a08951438b241ae12562",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1409894,
"upload_time": "2025-07-22T12:24:06",
"upload_time_iso_8601": "2025-07-22T12:24:06.856142Z",
"url": "https://files.pythonhosted.org/packages/42/91/42ee6bd4d18af6a2b193f15e8e280e58b7fa58572d033a50f089f8731398/ipctk-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc59e5cd15623884aa79c7a1317d9664e65c43d368525edfd6a18e39862060ca",
"md5": "af62ecf3716e6aa2ed1c74bfa7fad0d3",
"sha256": "6ac7054940d8209a5b82cc88d0b8756cad3f73e951acf2cb357cf18c8b0cf2f3"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "af62ecf3716e6aa2ed1c74bfa7fad0d3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1606228,
"upload_time": "2025-07-22T12:24:08",
"upload_time_iso_8601": "2025-07-22T12:24:08.623415Z",
"url": "https://files.pythonhosted.org/packages/bc/59/e5cd15623884aa79c7a1317d9664e65c43d368525edfd6a18e39862060ca/ipctk-1.4.0-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a408c126c9c94476e060207454df3a55f4a1b8d3463a0308d5e6877f9dcd07e0",
"md5": "281e624b9242b183061826e88f8f6e89",
"sha256": "5ee5382ba85d111aff9909d206d0f29670c5f2270453847b1d539fe3f60fcf7f"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "281e624b9242b183061826e88f8f6e89",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1938568,
"upload_time": "2025-07-22T12:24:10",
"upload_time_iso_8601": "2025-07-22T12:24:10.363677Z",
"url": "https://files.pythonhosted.org/packages/a4/08/c126c9c94476e060207454df3a55f4a1b8d3463a0308d5e6877f9dcd07e0/ipctk-1.4.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21fc95622016ba4fdd9b5bafebaacd7f009b94b19153587e77057f2a35afd219",
"md5": "f176376847ff1121334d91ced957b981",
"sha256": "996868e6f63147fcbd07ed4b55c9f0f9e12014477f0049f7b038661472345339"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "f176376847ff1121334d91ced957b981",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1334365,
"upload_time": "2025-07-22T12:24:11",
"upload_time_iso_8601": "2025-07-22T12:24:11.661363Z",
"url": "https://files.pythonhosted.org/packages/21/fc/95622016ba4fdd9b5bafebaacd7f009b94b19153587e77057f2a35afd219/ipctk-1.4.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f66ceeb8fa02b18c92e365aac55ab6c94db0b24ab4680da975fbb8225e593f3d",
"md5": "d78f46976c4b2dea0a812d40bffee827",
"sha256": "0918b173fffae6877d0cafc44b629bd11ea04e2d5cd9293276b7e7b39e3f4053"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d78f46976c4b2dea0a812d40bffee827",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1411185,
"upload_time": "2025-07-22T12:24:12",
"upload_time_iso_8601": "2025-07-22T12:24:12.722826Z",
"url": "https://files.pythonhosted.org/packages/f6/6c/eeb8fa02b18c92e365aac55ab6c94db0b24ab4680da975fbb8225e593f3d/ipctk-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53b9f3c1f8630b76d940163d13b9178a4c0b9e65dca8a3f29749c095769e538f",
"md5": "3184ef5ab020f55be84eb86882e72cf6",
"sha256": "c08981ce8e86bede6e535cba864d750c4cbed7fb46fad38727f55cc0365c713b"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "3184ef5ab020f55be84eb86882e72cf6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1607043,
"upload_time": "2025-07-22T12:24:14",
"upload_time_iso_8601": "2025-07-22T12:24:14.166383Z",
"url": "https://files.pythonhosted.org/packages/53/b9/f3c1f8630b76d940163d13b9178a4c0b9e65dca8a3f29749c095769e538f/ipctk-1.4.0-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51ae83e355f3b4aa081f5ca76d2c4b38fd2e3dabbad05b71337099e6caf93304",
"md5": "71d34b05931e7ada4ac4102a65cf8d89",
"sha256": "dddc2b1254daa080aa0e097b5fafa63a00d4e67088ffdd324021c9873984947d"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "71d34b05931e7ada4ac4102a65cf8d89",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1941695,
"upload_time": "2025-07-22T12:24:15",
"upload_time_iso_8601": "2025-07-22T12:24:15.823167Z",
"url": "https://files.pythonhosted.org/packages/51/ae/83e355f3b4aa081f5ca76d2c4b38fd2e3dabbad05b71337099e6caf93304/ipctk-1.4.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea834e266b719e9db664964d94d67a08f854d12f86132d898e12586c655a5754",
"md5": "002e5d02cf17d9155d0c204341451ae8",
"sha256": "48e3251f1e8b092b6d8fafc693e4f0326920562a068534ed9d2c7cde3e430a90"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "002e5d02cf17d9155d0c204341451ae8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1335234,
"upload_time": "2025-07-22T12:24:17",
"upload_time_iso_8601": "2025-07-22T12:24:17.058284Z",
"url": "https://files.pythonhosted.org/packages/ea/83/4e266b719e9db664964d94d67a08f854d12f86132d898e12586c655a5754/ipctk-1.4.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fd247ccb7f8e37717d57156ca284461535a79b80db3ef843e7d7f7f140c905d",
"md5": "33146fd12e383c991a208bd48060262f",
"sha256": "ee5ce9d671041c671b7358a6d37580af17d7154a1464a43baba49e6ac13734f1"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "33146fd12e383c991a208bd48060262f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 1418791,
"upload_time": "2025-07-22T12:24:18",
"upload_time_iso_8601": "2025-07-22T12:24:18.497510Z",
"url": "https://files.pythonhosted.org/packages/3f/d2/47ccb7f8e37717d57156ca284461535a79b80db3ef843e7d7f7f140c905d/ipctk-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c7a99d6e5b882339a91ff4b45d26559e012145925a094ef55cd7c6834af13ab",
"md5": "fa5ac391dbb1f4f3d4a57da3a562e000",
"sha256": "55b273d31be7fcf986ce448fdd319572c3f0cddf3847a47b79290281eefb1af9"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "fa5ac391dbb1f4f3d4a57da3a562e000",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 1628771,
"upload_time": "2025-07-22T12:24:19",
"upload_time_iso_8601": "2025-07-22T12:24:19.923524Z",
"url": "https://files.pythonhosted.org/packages/1c/7a/99d6e5b882339a91ff4b45d26559e012145925a094ef55cd7c6834af13ab/ipctk-1.4.0-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f7b429fe4fa5faf49d83b013698ed2ef1075e0e5384755b9dc743bf856891c97",
"md5": "53c17066336503243ec73ddd225cbc7c",
"sha256": "ab7e9906aa45785ef21f4a9f33c41eaa156dbec31d8cd1c1f02271718da7decd"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "53c17066336503243ec73ddd225cbc7c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 1948054,
"upload_time": "2025-07-22T12:24:21",
"upload_time_iso_8601": "2025-07-22T12:24:21.076611Z",
"url": "https://files.pythonhosted.org/packages/f7/b4/29fe4fa5faf49d83b013698ed2ef1075e0e5384755b9dc743bf856891c97/ipctk-1.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0f5e01f1c387fcbcc1ac63a2597ddf4bbfaf7ac62df0452bb74ae58f104597a",
"md5": "f2eef7cd6e3e9f868994a02154b3e960",
"sha256": "79a46453982bbffbaa7126433af0621f2524238b5a2fa10e3167b00c47ecacc8"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f2eef7cd6e3e9f868994a02154b3e960",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.6",
"size": 1338250,
"upload_time": "2025-07-22T12:24:22",
"upload_time_iso_8601": "2025-07-22T12:24:22.368225Z",
"url": "https://files.pythonhosted.org/packages/c0/f5/e01f1c387fcbcc1ac63a2597ddf4bbfaf7ac62df0452bb74ae58f104597a/ipctk-1.4.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64d00379c708f4a09c87a0d4e60446e31a7e22f76b7a972d3ae127de4ab65b5d",
"md5": "40abd9352b6d490c66053cfa37f280c6",
"sha256": "552d43517e3348f76f3fa317520b0ff1c825c01980f7e9abd2667fc31033d4d3"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "40abd9352b6d490c66053cfa37f280c6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 1418729,
"upload_time": "2025-07-22T12:24:23",
"upload_time_iso_8601": "2025-07-22T12:24:23.455275Z",
"url": "https://files.pythonhosted.org/packages/64/d0/0379c708f4a09c87a0d4e60446e31a7e22f76b7a972d3ae127de4ab65b5d/ipctk-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5db2941b6d9bd16d8aa72a334b4950eeded996bb4d1165abb3f1f0bede1c3a4",
"md5": "a8be96a896ef2164891a616f0a7bd07a",
"sha256": "745fa2cf4d317bb4bd2f4de4f1d01de3a94b663e902ffa34e4a465e9dad97329"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp313-cp313-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "a8be96a896ef2164891a616f0a7bd07a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 1628944,
"upload_time": "2025-07-22T12:24:24",
"upload_time_iso_8601": "2025-07-22T12:24:24.930245Z",
"url": "https://files.pythonhosted.org/packages/d5/db/2941b6d9bd16d8aa72a334b4950eeded996bb4d1165abb3f1f0bede1c3a4/ipctk-1.4.0-cp313-cp313-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ca1b4fcaf75bbe4733bf2c65338458a96da953066f2bf9d8ce27637d7cde89b",
"md5": "8f99d42bf5b3452a4a64d87f5b03c5f2",
"sha256": "e8b07db8d6cc8addc21f712f9183f98450785880906d4da60b0ef87ff8e9d468"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8f99d42bf5b3452a4a64d87f5b03c5f2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 1947849,
"upload_time": "2025-07-22T12:24:26",
"upload_time_iso_8601": "2025-07-22T12:24:26.041053Z",
"url": "https://files.pythonhosted.org/packages/5c/a1/b4fcaf75bbe4733bf2c65338458a96da953066f2bf9d8ce27637d7cde89b/ipctk-1.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61f5b690ad5d4e0ed5367e85c57d38279288f7d77a3d1cadabf3b368c95f5194",
"md5": "f3f0cdb1c898012341753f9c3c50a11a",
"sha256": "2d36fcfb8530eff0c4743787b35d65c19dab121b32fd239b0c53e1a0eff58292"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "f3f0cdb1c898012341753f9c3c50a11a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.6",
"size": 1338168,
"upload_time": "2025-07-22T12:24:27",
"upload_time_iso_8601": "2025-07-22T12:24:27.254494Z",
"url": "https://files.pythonhosted.org/packages/61/f5/b690ad5d4e0ed5367e85c57d38279288f7d77a3d1cadabf3b368c95f5194/ipctk-1.4.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04d30c90c27ff8021fe067d54749b86cc23abca738eae3baeb84b0fddbb58f62",
"md5": "d7b8348cbe0e44e4d9df3eccf1f8dad0",
"sha256": "8325088e88b858fd65423193b16e56d160e7ce1cd6d9b77d399f999872c3c554"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d7b8348cbe0e44e4d9df3eccf1f8dad0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1409949,
"upload_time": "2025-07-22T12:24:28",
"upload_time_iso_8601": "2025-07-22T12:24:28.414414Z",
"url": "https://files.pythonhosted.org/packages/04/d3/0c90c27ff8021fe067d54749b86cc23abca738eae3baeb84b0fddbb58f62/ipctk-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "347ac8e520fd888f5e7d93bc7ad4f2205f8406356f989560139bb40d2210844f",
"md5": "9e837d613058784028459f866f51d3a9",
"sha256": "39057b5f11b9a3c770ecc06e2f97ed190612e964f5509c2f654d77b5d6fef2f3"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "9e837d613058784028459f866f51d3a9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1606221,
"upload_time": "2025-07-22T12:24:29",
"upload_time_iso_8601": "2025-07-22T12:24:29.845832Z",
"url": "https://files.pythonhosted.org/packages/34/7a/c8e520fd888f5e7d93bc7ad4f2205f8406356f989560139bb40d2210844f/ipctk-1.4.0-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e404d3d7450f3cf62ece435bb2eab9f919111ad68565365f9c73f6444314ffb6",
"md5": "37182eaf10947e8a17713a1cb0b37a89",
"sha256": "f3f67eed67ca9b61bacb093ec64f8c8ae1b5ec60b73718727b6034b45385d3ba"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "37182eaf10947e8a17713a1cb0b37a89",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1940778,
"upload_time": "2025-07-22T12:24:31",
"upload_time_iso_8601": "2025-07-22T12:24:31.331962Z",
"url": "https://files.pythonhosted.org/packages/e4/04/d3d7450f3cf62ece435bb2eab9f919111ad68565365f9c73f6444314ffb6/ipctk-1.4.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b186c95791b27ff6e46127bf873ce891f4dea9c69adddc734678c2c69b4b99f0",
"md5": "4fa38262ade4a31e12384175ddd57df6",
"sha256": "ba7c169f95b7d099e49ad147f80488d2a5f08640decc032496bdf463157ddd9c"
},
"downloads": -1,
"filename": "ipctk-1.4.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "4fa38262ade4a31e12384175ddd57df6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1400117,
"upload_time": "2025-07-22T12:24:32",
"upload_time_iso_8601": "2025-07-22T12:24:32.440314Z",
"url": "https://files.pythonhosted.org/packages/b1/86/c95791b27ff6e46127bf873ce891f4dea9c69adddc734678c2c69b4b99f0/ipctk-1.4.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8892d675a03e41387c8143bbf38ed3def90579062f55c197151f5102bd37dd03",
"md5": "54e97ba2b2e37cc731c7d2aec6592281",
"sha256": "ee011ea418066beada3820c7d2fb54fdd43140a09715d7e7bc231825eb2a1314"
},
"downloads": -1,
"filename": "ipctk-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "54e97ba2b2e37cc731c7d2aec6592281",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 191623,
"upload_time": "2025-07-22T12:24:33",
"upload_time_iso_8601": "2025-07-22T12:24:33.803871Z",
"url": "https://files.pythonhosted.org/packages/88/92/d675a03e41387c8143bbf38ed3def90579062f55c197151f5102bd37dd03/ipctk-1.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-22 12:24:33",
"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"
}