Name | jellyfish JSON |
Version |
1.1.3
JSON |
| download |
home_page | None |
Summary | Approximate and phonetic matching of strings. |
upload_time | 2024-12-14 19:45:41 |
maintainer | None |
docs_url | None |
author | James Turk <dev@jamesturk.net> |
requires_python | >=3.8 |
license | MIT |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
# Overview
**jellyfish** is a library for approximate & phonetic matching of strings.
Source: [https://github.com/jamesturk/jellyfish](https://github.com/jamesturk/jellyfish)
Documentation: [https://jamesturk.github.io/jellyfish/](https://jamesturk.github.io/jellyfish/)
Issues: [https://github.com/jamesturk/jellyfish/issues](https://github.com/jamesturk/jellyfish/issues)
[![PyPI badge](https://badge.fury.io/py/jellyfish.svg)](https://badge.fury.io/py/jellyfish)
[![Test badge](https://github.com/jamesturk/jellyfish/workflows/Python%20package/badge.svg)](https://github.com/jamesturk/jellyfish/actions?query=workflow%3A%22Python+package)
[![Coveralls](https://coveralls.io/repos/jamesturk/jellyfish/badge.png?branch=master)](https://coveralls.io/r/jamesturk/jellyfish)
![Test Rust](https://github.com/jamesturk/rust-jellyfish/workflows/Test%20Rust/badge.svg)
## Included Algorithms
String comparison:
* Levenshtein Distance
* Damerau-Levenshtein Distance
* Jaccard Index
* Jaro Distance
* Jaro-Winkler Distance
* Match Rating Approach Comparison
* Hamming Distance
Phonetic encoding:
* American Soundex
* Metaphone
* NYSIIS (New York State Identification and Intelligence System)
* Match Rating Codex
## Example Usage
``` python
>>> import jellyfish
>>> jellyfish.levenshtein_distance('jellyfish', 'smellyfish')
2
>>> jellyfish.jaro_similarity('jellyfish', 'smellyfish')
0.89629629629629637
>>> jellyfish.damerau_levenshtein_distance('jellyfish', 'jellyfihs')
1
>>> jellyfish.metaphone('Jellyfish')
'JLFX'
>>> jellyfish.soundex('Jellyfish')
'J412'
>>> jellyfish.nysiis('Jellyfish')
'JALYF'
>>> jellyfish.match_rating_codex('Jellyfish')
'JLLFSH'
```
Raw data
{
"_id": null,
"home_page": null,
"name": "jellyfish",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "James Turk <dev@jamesturk.net>",
"author_email": "James Turk <dev@jamesturk.net>",
"download_url": "https://files.pythonhosted.org/packages/5b/3a/f607d7d44ee5cbad51ce8e2966bde112789eeb53633558f500bc4e44c053/jellyfish-1.1.3.tar.gz",
"platform": null,
"description": "# Overview\n\n**jellyfish** is a library for approximate & phonetic matching of strings.\n\nSource: [https://github.com/jamesturk/jellyfish](https://github.com/jamesturk/jellyfish)\n\nDocumentation: [https://jamesturk.github.io/jellyfish/](https://jamesturk.github.io/jellyfish/)\n\nIssues: [https://github.com/jamesturk/jellyfish/issues](https://github.com/jamesturk/jellyfish/issues)\n\n[![PyPI badge](https://badge.fury.io/py/jellyfish.svg)](https://badge.fury.io/py/jellyfish)\n[![Test badge](https://github.com/jamesturk/jellyfish/workflows/Python%20package/badge.svg)](https://github.com/jamesturk/jellyfish/actions?query=workflow%3A%22Python+package)\n[![Coveralls](https://coveralls.io/repos/jamesturk/jellyfish/badge.png?branch=master)](https://coveralls.io/r/jamesturk/jellyfish)\n![Test Rust](https://github.com/jamesturk/rust-jellyfish/workflows/Test%20Rust/badge.svg)\n\n## Included Algorithms\n\nString comparison:\n\n* Levenshtein Distance\n* Damerau-Levenshtein Distance\n* Jaccard Index\n* Jaro Distance\n* Jaro-Winkler Distance\n* Match Rating Approach Comparison\n* Hamming Distance\n\nPhonetic encoding:\n\n* American Soundex\n* Metaphone\n* NYSIIS (New York State Identification and Intelligence System)\n* Match Rating Codex\n\n## Example Usage\n\n``` python\n>>> import jellyfish\n>>> jellyfish.levenshtein_distance('jellyfish', 'smellyfish')\n2\n>>> jellyfish.jaro_similarity('jellyfish', 'smellyfish')\n0.89629629629629637\n>>> jellyfish.damerau_levenshtein_distance('jellyfish', 'jellyfihs')\n1\n\n>>> jellyfish.metaphone('Jellyfish')\n'JLFX'\n>>> jellyfish.soundex('Jellyfish')\n'J412'\n>>> jellyfish.nysiis('Jellyfish')\n'JALYF'\n>>> jellyfish.match_rating_codex('Jellyfish')\n'JLLFSH'\n```\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Approximate and phonetic matching of strings.",
"version": "1.1.3",
"project_urls": {
"documentation": "https://jamesturk.github.io/jellyfish/",
"homepage": "https://jamesturk.github.io/jellyfish/",
"repository": "https://github.com/jamesturk/jellyfish/"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "3d56bfb0d74eb31299a043b75a8eb8aa426bed02c6b851ea3cc4abddfaab0dcd",
"md5": "9e135bef6d030d72feb165971226ff5e",
"sha256": "e73a1905eddb66d9bd383531f0ae5f21b95c891ea5ecd6d9e056310ed76ce126"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9e135bef6d030d72feb165971226ff5e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 315423,
"upload_time": "2024-12-14T19:43:04",
"upload_time_iso_8601": "2024-12-14T19:43:04.781119Z",
"url": "https://files.pythonhosted.org/packages/3d/56/bfb0d74eb31299a043b75a8eb8aa426bed02c6b851ea3cc4abddfaab0dcd/jellyfish-1.1.3-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "255decca6b72b78eeeac5738fb824b1711fc8adc2d06f5d820bb27fd5dc79d73",
"md5": "3279249069e79e6fea8f3dc764b90ae2",
"sha256": "e49d34c7114c08def593da522ada324b1481d8baf02184a4c8e1a32604897a41"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3279249069e79e6fea8f3dc764b90ae2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 311191,
"upload_time": "2024-12-14T19:43:07",
"upload_time_iso_8601": "2024-12-14T19:43:07.592824Z",
"url": "https://files.pythonhosted.org/packages/25/5d/ecca6b72b78eeeac5738fb824b1711fc8adc2d06f5d820bb27fd5dc79d73/jellyfish-1.1.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e65e59139f25f665d12b2ce0ce159eb8aa8129e996b345d355951eee743a7fd8",
"md5": "86d29979105a59415bd09ee5ee11ab00",
"sha256": "c14c5f5f7e1f1248923498dcaaf2534b43044708b21128ac80f0cb862beaf780"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "86d29979105a59415bd09ee5ee11ab00",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 346722,
"upload_time": "2024-12-14T19:43:10",
"upload_time_iso_8601": "2024-12-14T19:43:10.183137Z",
"url": "https://files.pythonhosted.org/packages/e6/5e/59139f25f665d12b2ce0ce159eb8aa8129e996b345d355951eee743a7fd8/jellyfish-1.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d8ccfa3cd265ae7b1e7e0b84d1976201bacafd1a76798ff03234f098de8388e",
"md5": "8076b8ab3f7cf6c59b47b939cb93ed27",
"sha256": "f57af6adb802e7206c85c060597a72297eefcf60471107fbfe96b48dd1f7500b"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8076b8ab3f7cf6c59b47b939cb93ed27",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 353969,
"upload_time": "2024-12-14T19:43:11",
"upload_time_iso_8601": "2024-12-14T19:43:11.923789Z",
"url": "https://files.pythonhosted.org/packages/4d/8c/cfa3cd265ae7b1e7e0b84d1976201bacafd1a76798ff03234f098de8388e/jellyfish-1.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "391fa112ed3dd5d0fb1b2d93cad4be35a0907bc2990a5f0d585439892cc32688",
"md5": "3f0320c4242c2379523f13adf57097f3",
"sha256": "db429ecb0d2cd4e83c4082ec36cb2ae4aa251226d6c24948b6dc042aaf149888"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3f0320c4242c2379523f13adf57097f3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 347411,
"upload_time": "2024-12-14T19:43:15",
"upload_time_iso_8601": "2024-12-14T19:43:15.092481Z",
"url": "https://files.pythonhosted.org/packages/39/1f/a112ed3dd5d0fb1b2d93cad4be35a0907bc2990a5f0d585439892cc32688/jellyfish-1.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "319b86227e12865c4dd9f823e47a1e938f0c385645fa2ca4ec196906a3e02cbd",
"md5": "89fd5a81182d54650c3e00f61b9a5118",
"sha256": "38962cda1a71da0fea76350566b852062fedb06ca3a778eab9aa2a562231304a"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "89fd5a81182d54650c3e00f61b9a5118",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 525020,
"upload_time": "2024-12-14T19:43:17",
"upload_time_iso_8601": "2024-12-14T19:43:17.641349Z",
"url": "https://files.pythonhosted.org/packages/31/9b/86227e12865c4dd9f823e47a1e938f0c385645fa2ca4ec196906a3e02cbd/jellyfish-1.1.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe860d50027e55b91caa68c0444914be1b5778464eb37c2e9a7cd596b2842f6a",
"md5": "4f42482b9b957f30df37b608277de105",
"sha256": "39c889621269087e01bace9f844c164dc1637c437f1cda899f52720a560f7cc2"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4f42482b9b957f30df37b608277de105",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 544424,
"upload_time": "2024-12-14T19:43:20",
"upload_time_iso_8601": "2024-12-14T19:43:20.289565Z",
"url": "https://files.pythonhosted.org/packages/fe/86/0d50027e55b91caa68c0444914be1b5778464eb37c2e9a7cd596b2842f6a/jellyfish-1.1.3-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c53d519ac52893b482f7d7846dc63a3b805a8889169b4329c479a6aeca554b7",
"md5": "f8161a49fc9e69b14a29ad14038c14b7",
"sha256": "273bb289e9675e13bfd48db290e30f65582d6e6c3865e2b76d37d3fea40a1d2d"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f8161a49fc9e69b14a29ad14038c14b7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 518160,
"upload_time": "2024-12-14T19:43:21",
"upload_time_iso_8601": "2024-12-14T19:43:21.780958Z",
"url": "https://files.pythonhosted.org/packages/0c/53/d519ac52893b482f7d7846dc63a3b805a8889169b4329c479a6aeca554b7/jellyfish-1.1.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8736beb0bd3480b79592c1870ad3a71d621700ba33924195b3551547446e248b",
"md5": "468db37b052e156ed230aea8298ef4db",
"sha256": "21ae3d7b38e9fb76880c0cc24204db6f47e877624acc9d66a1456d7b6b6b6100"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "468db37b052e156ed230aea8298ef4db",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 206038,
"upload_time": "2024-12-14T19:43:24",
"upload_time_iso_8601": "2024-12-14T19:43:24.079375Z",
"url": "https://files.pythonhosted.org/packages/87/36/beb0bd3480b79592c1870ad3a71d621700ba33924195b3551547446e248b/jellyfish-1.1.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e6ad43e3b18521e3a66df060e8ef98913a5c6c8601ec7a06bb22872cdeaa80c",
"md5": "2be1b474f35de39c75475347e37ebca5",
"sha256": "ff04aaf51b1c8fc42d8f0bd30545f7af0b516f8890e61a8e8b31218a28fec2de"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "2be1b474f35de39c75475347e37ebca5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 212110,
"upload_time": "2024-12-14T19:43:25",
"upload_time_iso_8601": "2024-12-14T19:43:25.799798Z",
"url": "https://files.pythonhosted.org/packages/7e/6a/d43e3b18521e3a66df060e8ef98913a5c6c8601ec7a06bb22872cdeaa80c/jellyfish-1.1.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ce848ac146f4907c8a3180f86c2c0f21d65a811a1897a8903383a3bef39b761",
"md5": "e0c13281e6b5d875a2faec24f25fb1bd",
"sha256": "429e82b6527a0743358e69f10f7a913ec7c61d26bf21fe2cc2974b63dddb3384"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "e0c13281e6b5d875a2faec24f25fb1bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 315246,
"upload_time": "2024-12-14T19:43:27",
"upload_time_iso_8601": "2024-12-14T19:43:27.001364Z",
"url": "https://files.pythonhosted.org/packages/3c/e8/48ac146f4907c8a3180f86c2c0f21d65a811a1897a8903383a3bef39b761/jellyfish-1.1.3-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ade2824fb1c50bd9a1f620cf88142377b32f53001c7fb8487e4259b6f8ce54ae",
"md5": "1c6772e860ebd7754f445a19e49e4b86",
"sha256": "d2f1a39d2781713dea8e7402a2085c8a8f0f1b7872daf1ebfd84fde80130a20e"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1c6772e860ebd7754f445a19e49e4b86",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 310953,
"upload_time": "2024-12-14T19:43:30",
"upload_time_iso_8601": "2024-12-14T19:43:30.077348Z",
"url": "https://files.pythonhosted.org/packages/ad/e2/824fb1c50bd9a1f620cf88142377b32f53001c7fb8487e4259b6f8ce54ae/jellyfish-1.1.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf4ee38d1c5b54fee6b7d09ea1e685c883222371dcd6835855a22da7ad3842c0",
"md5": "965e3275962d43955c05136d3670d78f",
"sha256": "630618c5a36f40ef43b8e18cef98f40b2ec60661cb45308eb35a3950e1faaf58"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "965e3275962d43955c05136d3670d78f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 346544,
"upload_time": "2024-12-14T19:43:32",
"upload_time_iso_8601": "2024-12-14T19:43:32.552886Z",
"url": "https://files.pythonhosted.org/packages/bf/4e/e38d1c5b54fee6b7d09ea1e685c883222371dcd6835855a22da7ad3842c0/jellyfish-1.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "930129f71deca28546f59ef99bba08bdd06d320f7c717cc572525e9c8d88e8e0",
"md5": "35ccfffde7a9b57f3a9ba84329126db3",
"sha256": "7b1094274c11bfede3284e960027d2534145335e51795e043b0d8fd71c91736a"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "35ccfffde7a9b57f3a9ba84329126db3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 353749,
"upload_time": "2024-12-14T19:43:35",
"upload_time_iso_8601": "2024-12-14T19:43:35.064732Z",
"url": "https://files.pythonhosted.org/packages/93/01/29f71deca28546f59ef99bba08bdd06d320f7c717cc572525e9c8d88e8e0/jellyfish-1.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf2a837f39fceb7e2cd04d8ab73428e87194229bce1c8ca228479d31c638adda",
"md5": "de2dbdb6362659c9fdec81fa69f488e3",
"sha256": "5398d872fb1588ac0fbf03f4e2137aeac15798b8e7e0f6db38b791360d5e259c"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "de2dbdb6362659c9fdec81fa69f488e3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 347192,
"upload_time": "2024-12-14T19:43:37",
"upload_time_iso_8601": "2024-12-14T19:43:37.591363Z",
"url": "https://files.pythonhosted.org/packages/bf/2a/837f39fceb7e2cd04d8ab73428e87194229bce1c8ca228479d31c638adda/jellyfish-1.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1338a74c2c95b6f782e09e775c2b37e90ac56f77dfc1822d778faae351394cde",
"md5": "a8f98a9b49e12d564f1d2252e8531c83",
"sha256": "db18014834731d17490d8a27be19e75ae2e3ff7d5f40792b989e915b0c2bda9d"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "a8f98a9b49e12d564f1d2252e8531c83",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 524446,
"upload_time": "2024-12-14T19:43:40",
"upload_time_iso_8601": "2024-12-14T19:43:40.264579Z",
"url": "https://files.pythonhosted.org/packages/13/38/a74c2c95b6f782e09e775c2b37e90ac56f77dfc1822d778faae351394cde/jellyfish-1.1.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6157762ad2bbe3c5eaed5b61eb74b789b663a70e8b86c568788cdef3ed24f9a4",
"md5": "9d50d03ab059114f5738376f57bf2823",
"sha256": "08b6be37d5e99ba6e82cb45ca6e90d1fc10a6f3d7df7d3c481d1fedae8057c39"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "9d50d03ab059114f5738376f57bf2823",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 544372,
"upload_time": "2024-12-14T19:43:43",
"upload_time_iso_8601": "2024-12-14T19:43:43.110329Z",
"url": "https://files.pythonhosted.org/packages/61/57/762ad2bbe3c5eaed5b61eb74b789b663a70e8b86c568788cdef3ed24f9a4/jellyfish-1.1.3-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b66facf505cefb9dd95409c24ede2c8ff75e6787a52c349efb5db11ae19d1c23",
"md5": "97cc2033bf604e080f62522065767de2",
"sha256": "bcd4ada313160333f5a7e482baa3645fd44894db8034396c46e13f729cce327f"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "97cc2033bf604e080f62522065767de2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 517905,
"upload_time": "2024-12-14T19:43:47",
"upload_time_iso_8601": "2024-12-14T19:43:47.525238Z",
"url": "https://files.pythonhosted.org/packages/b6/6f/acf505cefb9dd95409c24ede2c8ff75e6787a52c349efb5db11ae19d1c23/jellyfish-1.1.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27df35775eb6c51ba1308db17688e5de56cecfac1e956b844eb3881d8ebcec85",
"md5": "0d93a1c139d940f4711c68faabe3bff4",
"sha256": "388abeebce8e85a2671b14d3e6fd257db470c058a446e54273495f04ac3d8b8e"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "0d93a1c139d940f4711c68faabe3bff4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 205906,
"upload_time": "2024-12-14T19:43:50",
"upload_time_iso_8601": "2024-12-14T19:43:50.129739Z",
"url": "https://files.pythonhosted.org/packages/27/df/35775eb6c51ba1308db17688e5de56cecfac1e956b844eb3881d8ebcec85/jellyfish-1.1.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a72f01604a77a368bb03401fb2e010dae7c506da440d7f552bd16b259eda0eef",
"md5": "05f9da56f370ee8b25588d54f35d0287",
"sha256": "41410d38726eac341943ff9b7505d58dbf341b50d1de5f6067323fa72b8fc13d"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "05f9da56f370ee8b25588d54f35d0287",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 212094,
"upload_time": "2024-12-14T19:43:51",
"upload_time_iso_8601": "2024-12-14T19:43:51.408513Z",
"url": "https://files.pythonhosted.org/packages/a7/2f/01604a77a368bb03401fb2e010dae7c506da440d7f552bd16b259eda0eef/jellyfish-1.1.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e05eb1c25ab1bb9cdc5e898ea7f3a39ae60e1cb6ffc8d6d43d23dfaede75d7c3",
"md5": "16c3e373f28948838e4697aee0dc6cd2",
"sha256": "89d5ccaf5adade69a4f80859f0fa13810064fe35aed57f42b210f2b30c3fbb6a"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "16c3e373f28948838e4697aee0dc6cd2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 315234,
"upload_time": "2024-12-14T19:43:52",
"upload_time_iso_8601": "2024-12-14T19:43:52.613218Z",
"url": "https://files.pythonhosted.org/packages/e0/5e/b1c25ab1bb9cdc5e898ea7f3a39ae60e1cb6ffc8d6d43d23dfaede75d7c3/jellyfish-1.1.3-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0c133651fc0e8eb33731909e56aa5495bc4d01b4032bbaafa98886872a299e6",
"md5": "66a23249022f948ec31b15d1d020e99c",
"sha256": "29aa2be83c3346e1cc8d84b765ac4f2d4e7830e8ddb8369caf7c8e7d4c2c58fe"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "66a23249022f948ec31b15d1d020e99c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 311731,
"upload_time": "2024-12-14T19:43:53",
"upload_time_iso_8601": "2024-12-14T19:43:53.817411Z",
"url": "https://files.pythonhosted.org/packages/e0/c1/33651fc0e8eb33731909e56aa5495bc4d01b4032bbaafa98886872a299e6/jellyfish-1.1.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc1277d2d044257a991df055c426d396884f7d94e61e113c9e6f649b069ce713",
"md5": "f47f2e29331540b11353a1ca0d45dd98",
"sha256": "38902e5b5a5015a5add877b9317bc8aeccee4590fbd955016a43f9147d9a1afd"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f47f2e29331540b11353a1ca0d45dd98",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 347390,
"upload_time": "2024-12-14T19:43:56",
"upload_time_iso_8601": "2024-12-14T19:43:56.505435Z",
"url": "https://files.pythonhosted.org/packages/cc/12/77d2d044257a991df055c426d396884f7d94e61e113c9e6f649b069ce713/jellyfish-1.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dcd2224528770705c84e5d2b260f792c4a76483b5874be80560b75ab495e02a",
"md5": "9e2db77dabfe68e45c3ae8e35042dc40",
"sha256": "b1c2c11ba786d1dbf5670994ba2aa0cef09a61955e298a5acb1ab3ef9e7a88d3"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9e2db77dabfe68e45c3ae8e35042dc40",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 353315,
"upload_time": "2024-12-14T19:43:59",
"upload_time_iso_8601": "2024-12-14T19:43:59.262617Z",
"url": "https://files.pythonhosted.org/packages/9d/cd/2224528770705c84e5d2b260f792c4a76483b5874be80560b75ab495e02a/jellyfish-1.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06b65742656ee7e5571a20fd2af14b8f0fd3b4ad511ace90254d0e91fc9c50ed",
"md5": "b092af37ef6f2e861d2773fa6a397a4d",
"sha256": "b098603b3883cc9f38f121c872ba0cc4600d9f92020c5ddcb8f4fe84d941aa5f"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b092af37ef6f2e861d2773fa6a397a4d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 347697,
"upload_time": "2024-12-14T19:44:00",
"upload_time_iso_8601": "2024-12-14T19:44:00.630450Z",
"url": "https://files.pythonhosted.org/packages/06/b6/5742656ee7e5571a20fd2af14b8f0fd3b4ad511ace90254d0e91fc9c50ed/jellyfish-1.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "000c929d300acd0ca600f1f9c3f99b3cdb8c4d8b2e9bd774f27728696ce39908",
"md5": "061df88796b01f77286858fdcd3a4b17",
"sha256": "cc3460dc0470ba277c87e6fdd3febcf052219253de748b27150884574e7179ec"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "061df88796b01f77286858fdcd3a4b17",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 525590,
"upload_time": "2024-12-14T19:44:01",
"upload_time_iso_8601": "2024-12-14T19:44:01.846419Z",
"url": "https://files.pythonhosted.org/packages/00/0c/929d300acd0ca600f1f9c3f99b3cdb8c4d8b2e9bd774f27728696ce39908/jellyfish-1.1.3-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e9aa9cf8a975d2b47727ec863e05c2ce7b1174981f216a0a49d673978301466",
"md5": "cd2d5c94710e7b59d1c3df6a667a83b4",
"sha256": "7847238733fe9b62894270a8adeb50b0f28f79bef2ff78f8d39cfc161507d584"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "cd2d5c94710e7b59d1c3df6a667a83b4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 543842,
"upload_time": "2024-12-14T19:44:04",
"upload_time_iso_8601": "2024-12-14T19:44:04.320115Z",
"url": "https://files.pythonhosted.org/packages/7e/9a/a9cf8a975d2b47727ec863e05c2ce7b1174981f216a0a49d673978301466/jellyfish-1.1.3-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a86f451a175f362962e5c6af68cdc9ad8873c01130b30e897f340f38df2da7e8",
"md5": "b135bad8ef2197a5edaccae7562a41ba",
"sha256": "9d07f99fa95624049390eac38604edfe48aa2da7fbec96ce74a7dfaa97faf2bd"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b135bad8ef2197a5edaccae7562a41ba",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 518282,
"upload_time": "2024-12-14T19:44:06",
"upload_time_iso_8601": "2024-12-14T19:44:06.927649Z",
"url": "https://files.pythonhosted.org/packages/a8/6f/451a175f362962e5c6af68cdc9ad8873c01130b30e897f340f38df2da7e8/jellyfish-1.1.3-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "906a6bb02bbcd611e27a7b4d3a77c6ac5cfadaeff39f6108b82e62e3b1ccf9ae",
"md5": "f7756589b091cbd5e0ee9dd81e664635",
"sha256": "c98eec90d704c34f5309f65793d84edd029bc2b641dd03c3b90c2cfe00c22a4e"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "f7756589b091cbd5e0ee9dd81e664635",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 206069,
"upload_time": "2024-12-14T19:44:08",
"upload_time_iso_8601": "2024-12-14T19:44:08.269223Z",
"url": "https://files.pythonhosted.org/packages/90/6a/6bb02bbcd611e27a7b4d3a77c6ac5cfadaeff39f6108b82e62e3b1ccf9ae/jellyfish-1.1.3-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce3c5f007820356627332a6cf957ec1233a4845cb9ce9e9026fd62bbd037ceb0",
"md5": "f9c4242c9c17791d7ec37a2d75dae5ce",
"sha256": "c8c70b1cc92ee15031db16db0d2ca7d5841744f5f626a35c29c3dd7b4ea7002b"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f9c4242c9c17791d7ec37a2d75dae5ce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 212067,
"upload_time": "2024-12-14T19:44:09",
"upload_time_iso_8601": "2024-12-14T19:44:09.382766Z",
"url": "https://files.pythonhosted.org/packages/ce/3c/5f007820356627332a6cf957ec1233a4845cb9ce9e9026fd62bbd037ceb0/jellyfish-1.1.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad33bfcd66ed6554cf571c86a71c2fa90948e27209a1f9f61459899716b8af11",
"md5": "ceccfcedc490614aa005408f10228a07",
"sha256": "a1907b0382b45650a221fd6cc85afed9f75f08063e9b5c3a7a616bf95fef91be"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ceccfcedc490614aa005408f10228a07",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 314647,
"upload_time": "2024-12-14T19:44:10",
"upload_time_iso_8601": "2024-12-14T19:44:10.660447Z",
"url": "https://files.pythonhosted.org/packages/ad/33/bfcd66ed6554cf571c86a71c2fa90948e27209a1f9f61459899716b8af11/jellyfish-1.1.3-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dcdaa25ee60dc4318fbd7d4f9671a6f02af484bb341e3e98973580e6928409df",
"md5": "ac2f2459626c916424dab9d864c59dc7",
"sha256": "7c0946909f84a1059d241fcee01032840e862746547390bfb0a4cf2f59a387ee"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ac2f2459626c916424dab9d864c59dc7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 311050,
"upload_time": "2024-12-14T19:44:13",
"upload_time_iso_8601": "2024-12-14T19:44:13.248391Z",
"url": "https://files.pythonhosted.org/packages/dc/da/a25ee60dc4318fbd7d4f9671a6f02af484bb341e3e98973580e6928409df/jellyfish-1.1.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87ec8975be953ddbd1c730b982a097d716a3efcb46f8e06cb371e041d6dc2742",
"md5": "229c0fb94616f91688baff2173119f62",
"sha256": "2105dfb2387a203f77a49cf12d38b4157809377c3a069d8c419c3d331c181816"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "229c0fb94616f91688baff2173119f62",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 346781,
"upload_time": "2024-12-14T19:44:14",
"upload_time_iso_8601": "2024-12-14T19:44:14.588504Z",
"url": "https://files.pythonhosted.org/packages/87/ec/8975be953ddbd1c730b982a097d716a3efcb46f8e06cb371e041d6dc2742/jellyfish-1.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0022226d1a0a70596dcb51287122b51eadd892009cebf36e4d5e4aaa3468f0bc",
"md5": "201073a77434f65e7c457a562f2702dc",
"sha256": "f852aa6753f5fbc6044e7d961df8015adbe68a5dd0d65ebef8c2ed24c0c35d13"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "201073a77434f65e7c457a562f2702dc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 352912,
"upload_time": "2024-12-14T19:44:15",
"upload_time_iso_8601": "2024-12-14T19:44:15.840371Z",
"url": "https://files.pythonhosted.org/packages/00/22/226d1a0a70596dcb51287122b51eadd892009cebf36e4d5e4aaa3468f0bc/jellyfish-1.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8bfa8bebfdc7a7ab628e80b4aec70d609188a79162cdf65a0e4f5abc2f76437c",
"md5": "d14a681f6787ae24c0badc2525043637",
"sha256": "3afb5e8f327675be57f2121fb7442305c919a07317dc35fa74f6d05fe6f221e7"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d14a681f6787ae24c0badc2525043637",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 347218,
"upload_time": "2024-12-14T19:44:18",
"upload_time_iso_8601": "2024-12-14T19:44:18.258329Z",
"url": "https://files.pythonhosted.org/packages/8b/fa/8bebfdc7a7ab628e80b4aec70d609188a79162cdf65a0e4f5abc2f76437c/jellyfish-1.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d073c62d7e870187491d8d3b0028cc9fb0d18402a0a025fddc2c42cbfe73940",
"md5": "c6904bd393fd8033f11a1c90c53b7944",
"sha256": "93c16994e01b772d3d8049c68c5c937f7a810b39a851c15b528379f0258c54d9"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "c6904bd393fd8033f11a1c90c53b7944",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 524720,
"upload_time": "2024-12-14T19:44:20",
"upload_time_iso_8601": "2024-12-14T19:44:20.724872Z",
"url": "https://files.pythonhosted.org/packages/5d/07/3c62d7e870187491d8d3b0028cc9fb0d18402a0a025fddc2c42cbfe73940/jellyfish-1.1.3-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "66bb71e7e3ba70f91b3c3b447d8762c8143ccf6a846a31a5fc17dd3f18c8aa06",
"md5": "da5569e63d5045a9afb30a0998004eee",
"sha256": "e6d61f1dac3d3b2121b70159a4b2cbcff92834d006e69961cf9bbb1841461d00"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "da5569e63d5045a9afb30a0998004eee",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 543269,
"upload_time": "2024-12-14T19:44:22",
"upload_time_iso_8601": "2024-12-14T19:44:22.213753Z",
"url": "https://files.pythonhosted.org/packages/66/bb/71e7e3ba70f91b3c3b447d8762c8143ccf6a846a31a5fc17dd3f18c8aa06/jellyfish-1.1.3-cp313-cp313-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e86741f727e207a6b57889e4b83af0ee5aa58a31359f60e977d03dbf3b2eba8",
"md5": "21abc735bf7baa144404c650a34f3732",
"sha256": "5ad5e8156b58caf2e80020ac54a84eb4066ff082362b27cd7af7fa732a7181d6"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "21abc735bf7baa144404c650a34f3732",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 517836,
"upload_time": "2024-12-14T19:44:24",
"upload_time_iso_8601": "2024-12-14T19:44:24.777758Z",
"url": "https://files.pythonhosted.org/packages/5e/86/741f727e207a6b57889e4b83af0ee5aa58a31359f60e977d03dbf3b2eba8/jellyfish-1.1.3-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cc273b67a1a9444c5804ed4e2e4d55df3e94035efc279fe7426d2dbd2bca5c5",
"md5": "4de697a67947eb0e71449746de77c971",
"sha256": "2113195a48ce8cb99d2bb2c6d9b119f58025dde1d727101518e7150c093a66da"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "4de697a67947eb0e71449746de77c971",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 211678,
"upload_time": "2024-12-14T19:44:26",
"upload_time_iso_8601": "2024-12-14T19:44:26.098336Z",
"url": "https://files.pythonhosted.org/packages/0c/c2/73b67a1a9444c5804ed4e2e4d55df3e94035efc279fe7426d2dbd2bca5c5/jellyfish-1.1.3-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "decfd4d449ba8ceb04fb2d673c31624047283c5a1841edff5ad124ece99d11b2",
"md5": "e85bd37e586a6e8ab4a4a7cc5448bd8a",
"sha256": "54eaa16afed12ab166719638b285b3713ce4d039de5d1a69b5a068f845f0aa45"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "e85bd37e586a6e8ab4a4a7cc5448bd8a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 315472,
"upload_time": "2024-12-14T19:44:27",
"upload_time_iso_8601": "2024-12-14T19:44:27.311345Z",
"url": "https://files.pythonhosted.org/packages/de/cf/d4d449ba8ceb04fb2d673c31624047283c5a1841edff5ad124ece99d11b2/jellyfish-1.1.3-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "afef712f7cee50ac52a222b957bc39844513d1fecb4617e7f1730058151be949",
"md5": "525e5ff8fec0a295af4f4213e3375ce8",
"sha256": "8eeb078582b56f458cccf66fc195287adec3957c62e669c8d0a17346218c3e67"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "525e5ff8fec0a295af4f4213e3375ce8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 311241,
"upload_time": "2024-12-14T19:44:28",
"upload_time_iso_8601": "2024-12-14T19:44:28.713160Z",
"url": "https://files.pythonhosted.org/packages/af/ef/712f7cee50ac52a222b957bc39844513d1fecb4617e7f1730058151be949/jellyfish-1.1.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3081afe422a3290b379c9d9ae0671aeccaeecb5282e60484bd1dd9131f53546d",
"md5": "02002eda1945dd5abc3f5d2513553d27",
"sha256": "287c12adfcf75e86c83aed3a1aeef4c17b251bb3767fb2167163652beb88b5a1"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "02002eda1945dd5abc3f5d2513553d27",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 346800,
"upload_time": "2024-12-14T19:44:30",
"upload_time_iso_8601": "2024-12-14T19:44:30.042368Z",
"url": "https://files.pythonhosted.org/packages/30/81/afe422a3290b379c9d9ae0671aeccaeecb5282e60484bd1dd9131f53546d/jellyfish-1.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5b99d33f025ef072df2a962236b9b9107351e83b7173b75e9582fe1797b5141",
"md5": "7f4608bedee6e7fa5df86b914b1e8abc",
"sha256": "aa8be98de027f9b1cd72e8aee7801e340e2603efd03f509ec2fe084ad9df20b4"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7f4608bedee6e7fa5df86b914b1e8abc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 353426,
"upload_time": "2024-12-14T19:44:31",
"upload_time_iso_8601": "2024-12-14T19:44:31.822517Z",
"url": "https://files.pythonhosted.org/packages/c5/b9/9d33f025ef072df2a962236b9b9107351e83b7173b75e9582fe1797b5141/jellyfish-1.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6a7bcf030bdba0b4d4973a726b13c2b893def31ca125223a723092eef2232ae",
"md5": "14b35cacc6e954a32a9e47e651eb314e",
"sha256": "2746ee8dfb4f9dcf24a30cfdf9f392e32bf579b8e3fc3e1e38fd5ac5be421897"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "14b35cacc6e954a32a9e47e651eb314e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 347466,
"upload_time": "2024-12-14T19:44:34",
"upload_time_iso_8601": "2024-12-14T19:44:34.369609Z",
"url": "https://files.pythonhosted.org/packages/b6/a7/bcf030bdba0b4d4973a726b13c2b893def31ca125223a723092eef2232ae/jellyfish-1.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36809223f0ec2c93f6fc0953c168fe58f9f53b864124529f719e31689f3622c9",
"md5": "beac4d8e7ede937df5abcecb63e7c9ba",
"sha256": "b15b60a8b6386c00bbd22e9253d046949c7803d8410c7b194a779f18d8ee6e34"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "beac4d8e7ede937df5abcecb63e7c9ba",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 525218,
"upload_time": "2024-12-14T19:44:35",
"upload_time_iso_8601": "2024-12-14T19:44:35.761098Z",
"url": "https://files.pythonhosted.org/packages/36/80/9223f0ec2c93f6fc0953c168fe58f9f53b864124529f719e31689f3622c9/jellyfish-1.1.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "340fd5ab37706de4cfbdf652d9ce4ab9caec3abef994fa7224a5c78abd0ca628",
"md5": "e2b5b18743ec4bc4bb7a78447e26bc39",
"sha256": "196d08e0ecf903904e7b043bc7192e4533976a1c1bc3b50d44e0fb09291e52e2"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e2b5b18743ec4bc4bb7a78447e26bc39",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 544232,
"upload_time": "2024-12-14T19:44:37",
"upload_time_iso_8601": "2024-12-14T19:44:37.102898Z",
"url": "https://files.pythonhosted.org/packages/34/0f/d5ab37706de4cfbdf652d9ce4ab9caec3abef994fa7224a5c78abd0ca628/jellyfish-1.1.3-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1bbc846714e6c7a260f8917527be40d9addb6a4fa29c3c77ad8764fc639b21d",
"md5": "5e65b401b154b1631fe91f85175aa1cc",
"sha256": "f6497cb2e976c0336860e865e61d0ca0f37651dcc72509326783dbcaddfb6f2c"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5e65b401b154b1631fe91f85175aa1cc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 518222,
"upload_time": "2024-12-14T19:44:39",
"upload_time_iso_8601": "2024-12-14T19:44:39.804974Z",
"url": "https://files.pythonhosted.org/packages/d1/bb/c846714e6c7a260f8917527be40d9addb6a4fa29c3c77ad8764fc639b21d/jellyfish-1.1.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22698563c11cf383adbf448b84d9d534c64612773c8757300bf7b4d0cb76779e",
"md5": "e231072caf543c08b387fe4c6c5af8d1",
"sha256": "aec12e181aefcfe0c6e634e26bdde05b22c47c99b042dd49432c9346c17f316e"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "e231072caf543c08b387fe4c6c5af8d1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 205887,
"upload_time": "2024-12-14T19:44:41",
"upload_time_iso_8601": "2024-12-14T19:44:41.074500Z",
"url": "https://files.pythonhosted.org/packages/22/69/8563c11cf383adbf448b84d9d534c64612773c8757300bf7b4d0cb76779e/jellyfish-1.1.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ebfb85e83e46dfde2a54a8054b0b109f749d9139906f42ca43c1451a7931a43",
"md5": "cdd244bdf244d3c4d6b7c7aed729becb",
"sha256": "ed6e8237ac7987daf8df5db6ad6b72b3fe00c38beb291f03122328d9fcf2eccc"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "cdd244bdf244d3c4d6b7c7aed729becb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 211871,
"upload_time": "2024-12-14T19:44:42",
"upload_time_iso_8601": "2024-12-14T19:44:42.361144Z",
"url": "https://files.pythonhosted.org/packages/2e/bf/b85e83e46dfde2a54a8054b0b109f749d9139906f42ca43c1451a7931a43/jellyfish-1.1.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a789358aac5387c155188dd9e029cbe743669b220d8fb747e83502bb21e25042",
"md5": "eb40f91b01588d7f25ae889a5ffe7e7b",
"sha256": "2382a385e47e214beacd63049d7cc197472b0b3c9011e4a49410c2a843c6e2c7"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "eb40f91b01588d7f25ae889a5ffe7e7b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 315743,
"upload_time": "2024-12-14T19:44:43",
"upload_time_iso_8601": "2024-12-14T19:44:43.586859Z",
"url": "https://files.pythonhosted.org/packages/a7/89/358aac5387c155188dd9e029cbe743669b220d8fb747e83502bb21e25042/jellyfish-1.1.3-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4893d2db626c795a5e4b2b71939d2687460408733e551ab977b0384fe715039",
"md5": "b527ebe75b405fb0bd94e8afa845b28a",
"sha256": "e87d7f3db29b5893c7db869196837b39ab096f9a27bb382a56f9b8fb604d2f1f"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b527ebe75b405fb0bd94e8afa845b28a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 311592,
"upload_time": "2024-12-14T19:44:44",
"upload_time_iso_8601": "2024-12-14T19:44:44.897393Z",
"url": "https://files.pythonhosted.org/packages/a4/89/3d2db626c795a5e4b2b71939d2687460408733e551ab977b0384fe715039/jellyfish-1.1.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d264cca283559ed73f67aa4dd46eb01c20da78259da5fec1410e219ea6a5d555",
"md5": "1777369c7eb315af9a3ec2cc2df80c93",
"sha256": "a7d73bcd96b15550603517ac0ad11475fc21cb431582b6698464247f0dfba666"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1777369c7eb315af9a3ec2cc2df80c93",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 347336,
"upload_time": "2024-12-14T19:44:46",
"upload_time_iso_8601": "2024-12-14T19:44:46.225349Z",
"url": "https://files.pythonhosted.org/packages/d2/64/cca283559ed73f67aa4dd46eb01c20da78259da5fec1410e219ea6a5d555/jellyfish-1.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acf7534dac0e9a31ac4995d6b4a65d3d863992323adb6c603a08695cae5551bf",
"md5": "364a77bed047575d2ee9aab4a078883e",
"sha256": "3335c7b7ff947f24f6cd7bc60b40ca9e93f9a2308b7f90c390ca75a6da081b97"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "364a77bed047575d2ee9aab4a078883e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 353791,
"upload_time": "2024-12-14T19:44:48",
"upload_time_iso_8601": "2024-12-14T19:44:48.817607Z",
"url": "https://files.pythonhosted.org/packages/ac/f7/534dac0e9a31ac4995d6b4a65d3d863992323adb6c603a08695cae5551bf/jellyfish-1.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "906c6a139217f886f79221c31821b21b3b47c726105775242b652ff77a79ddb1",
"md5": "bc6ffb8f2ee76fb2ab16eee38637c4ff",
"sha256": "76d09f407e0f88142167b45e2ffff386b6c7d8bf8ad34ec30c14cb33cce26535"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bc6ffb8f2ee76fb2ab16eee38637c4ff",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 347863,
"upload_time": "2024-12-14T19:44:51",
"upload_time_iso_8601": "2024-12-14T19:44:51.885347Z",
"url": "https://files.pythonhosted.org/packages/90/6c/6a139217f886f79221c31821b21b3b47c726105775242b652ff77a79ddb1/jellyfish-1.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "607ddaf6016c7b2f9d9f096fd8030b9b5cbbe500935ed701f0016ca2c579ad67",
"md5": "024e0c998e4bdfc520615ceaf6b0447f",
"sha256": "065e60adae1bfb6a0706015892585d37a26bf5708076d19216888aeca1a7e43d"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "024e0c998e4bdfc520615ceaf6b0447f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 525638,
"upload_time": "2024-12-14T19:44:53",
"upload_time_iso_8601": "2024-12-14T19:44:53.138828Z",
"url": "https://files.pythonhosted.org/packages/60/7d/daf6016c7b2f9d9f096fd8030b9b5cbbe500935ed701f0016ca2c579ad67/jellyfish-1.1.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6916c8e5ea17b3cb81364282de46dbd9b4ecf55fd8e18bbf1632427685c5e596",
"md5": "69c56f3b326dfbf134b62824d897c3ec",
"sha256": "8743490c0c1dc00d3b7d211ce3b2150ac4568e891bfdeb61b0a91c5dc5765826"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "69c56f3b326dfbf134b62824d897c3ec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 544912,
"upload_time": "2024-12-14T19:44:54",
"upload_time_iso_8601": "2024-12-14T19:44:54.444670Z",
"url": "https://files.pythonhosted.org/packages/69/16/c8e5ea17b3cb81364282de46dbd9b4ecf55fd8e18bbf1632427685c5e596/jellyfish-1.1.3-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a12759b1c44ffa4216850efd76908b3d9b9a51e33ab517ffd74ca90d9d993fbe",
"md5": "fea75ec20392a7ee2b52ef827ff5bb5f",
"sha256": "aaa05ba1650d84316f42a7347b2afd6959c804728f5c2b7c90496827e10f705f"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "fea75ec20392a7ee2b52ef827ff5bb5f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 518517,
"upload_time": "2024-12-14T19:44:55",
"upload_time_iso_8601": "2024-12-14T19:44:55.839779Z",
"url": "https://files.pythonhosted.org/packages/a1/27/59b1c44ffa4216850efd76908b3d9b9a51e33ab517ffd74ca90d9d993fbe/jellyfish-1.1.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b5963ed79f5d418c8e87faa54e910aae2f73b519a512bc7d3cae978ba2b34ef",
"md5": "5670eba92fc01678555d098634f4c5ad",
"sha256": "44fe82f01fe26bf7663d1169af9d28aa04d63e9c497da302aa22e2faef65a588"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "5670eba92fc01678555d098634f4c5ad",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 206087,
"upload_time": "2024-12-14T19:44:57",
"upload_time_iso_8601": "2024-12-14T19:44:57.152774Z",
"url": "https://files.pythonhosted.org/packages/0b/59/63ed79f5d418c8e87faa54e910aae2f73b519a512bc7d3cae978ba2b34ef/jellyfish-1.1.3-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8faba566439cd8fe4d8b6acd4f05a748853073d161155b18fbf2f06049cae271",
"md5": "7fc037559ddbc7b8693950b9d2ab83e2",
"sha256": "66114f9f58e9b2827716a7e004ee9816de60fa00f6cfc906d187de03570f4726"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "7fc037559ddbc7b8693950b9d2ab83e2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 212164,
"upload_time": "2024-12-14T19:44:58",
"upload_time_iso_8601": "2024-12-14T19:44:58.425432Z",
"url": "https://files.pythonhosted.org/packages/8f/ab/a566439cd8fe4d8b6acd4f05a748853073d161155b18fbf2f06049cae271/jellyfish-1.1.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e1c4148523b140a85e1ea6791ddcd44cea467a485da7bb7769354c91fe55e33",
"md5": "26c859e57d75108b47e880eaf952e7b0",
"sha256": "1bd107e94bb1dfafabe6d03ba7a3e471acfa2786eb7d4fd3eaf402d7dc9bd755"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "26c859e57d75108b47e880eaf952e7b0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 348495,
"upload_time": "2024-12-14T19:45:01",
"upload_time_iso_8601": "2024-12-14T19:45:01.020850Z",
"url": "https://files.pythonhosted.org/packages/6e/1c/4148523b140a85e1ea6791ddcd44cea467a485da7bb7769354c91fe55e33/jellyfish-1.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ec7cc8ef542bb2ce6d60c196086dab501ff95173944448669a358fec9a14384",
"md5": "2f385ab381c5198c2f94065fc12f9dbb",
"sha256": "975cfec3ee2b9e1753aea336f7f65ab609e73a2df36e0f5f30c99b54670ebd9f"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2f385ab381c5198c2f94065fc12f9dbb",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 354955,
"upload_time": "2024-12-14T19:45:02",
"upload_time_iso_8601": "2024-12-14T19:45:02.283000Z",
"url": "https://files.pythonhosted.org/packages/5e/c7/cc8ef542bb2ce6d60c196086dab501ff95173944448669a358fec9a14384/jellyfish-1.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e90311d809f39d5af235f759d01cb233b3d9c5f5361044bfba72aa37bcc0a22",
"md5": "d2a7e84c54dacf2da3859ca057e2f918",
"sha256": "58623f0f1e65deca98b1ddd380d33d5f56202fa2d9f136bcc26951705bd61aac"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d2a7e84c54dacf2da3859ca057e2f918",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 348829,
"upload_time": "2024-12-14T19:45:03",
"upload_time_iso_8601": "2024-12-14T19:45:03.570042Z",
"url": "https://files.pythonhosted.org/packages/0e/90/311d809f39d5af235f759d01cb233b3d9c5f5361044bfba72aa37bcc0a22/jellyfish-1.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a77ef0fb70b5ef11e336f5c743afee08144da10d423dfdf7d24d05d5f66ed17a",
"md5": "b503b3a965995c0eb549977c1e07e2ce",
"sha256": "0d724aa11b4625e7cd36958c20dd716723da9e8a11548f59f6e771f298dd79ff"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "b503b3a965995c0eb549977c1e07e2ce",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 526845,
"upload_time": "2024-12-14T19:45:06",
"upload_time_iso_8601": "2024-12-14T19:45:06.213191Z",
"url": "https://files.pythonhosted.org/packages/a7/7e/f0fb70b5ef11e336f5c743afee08144da10d423dfdf7d24d05d5f66ed17a/jellyfish-1.1.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "323e683e49293169285b652763de7b398eda08e85f6a6fc95684b8ecc2e7d384",
"md5": "6c38f6e0098f1092359428f0787514e9",
"sha256": "fe486886f61bc8539276efaf06687dcefd5a768674eba74e4254304ce1222360"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "6c38f6e0098f1092359428f0787514e9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 545514,
"upload_time": "2024-12-14T19:45:09",
"upload_time_iso_8601": "2024-12-14T19:45:09.282231Z",
"url": "https://files.pythonhosted.org/packages/32/3e/683e49293169285b652763de7b398eda08e85f6a6fc95684b8ecc2e7d384/jellyfish-1.1.3-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e689b5829ddd71fc071251506d6fb80e672387871bb8e241dde345e9d5020d48",
"md5": "cfe68e2b6ccb5ddcfa3e55cbd54a845a",
"sha256": "8ccb2ac6f0ab98f2f41b08757bc9f90110ccf2cc327a08d8859f2541f45d08d4"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "cfe68e2b6ccb5ddcfa3e55cbd54a845a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 519545,
"upload_time": "2024-12-14T19:45:10",
"upload_time_iso_8601": "2024-12-14T19:45:10.657713Z",
"url": "https://files.pythonhosted.org/packages/e6/89/b5829ddd71fc071251506d6fb80e672387871bb8e241dde345e9d5020d48/jellyfish-1.1.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebb71fd7fd64d4cc69cea1d9d2570a10f2acf9958cb466cb1759289568409d51",
"md5": "b35a59a0c18b26df24df097c0dfa9511",
"sha256": "36e865f0ddf5cda43fc49fc4a61fecb1c6aeb8699c9e52fd6e1f6321ed564b62"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b35a59a0c18b26df24df097c0dfa9511",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 316682,
"upload_time": "2024-12-14T19:45:12",
"upload_time_iso_8601": "2024-12-14T19:45:12.223543Z",
"url": "https://files.pythonhosted.org/packages/eb/b7/1fd7fd64d4cc69cea1d9d2570a10f2acf9958cb466cb1759289568409d51/jellyfish-1.1.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48135b56d3c70e523ef96130bc5fddd8fba14ec6536dd47b6375fb0250e1cd23",
"md5": "d914931298e07a91375be694fa875065",
"sha256": "7dc349fe799c02a4c9b0fe19204886afb83b563cd7157c7e9f44173607fd8984"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d914931298e07a91375be694fa875065",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 312940,
"upload_time": "2024-12-14T19:45:13",
"upload_time_iso_8601": "2024-12-14T19:45:13.958910Z",
"url": "https://files.pythonhosted.org/packages/48/13/5b56d3c70e523ef96130bc5fddd8fba14ec6536dd47b6375fb0250e1cd23/jellyfish-1.1.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5b67aa1c46d8a9084bf0a3dbead762e672b4274e9dfa085b2c13a1ae85b5b3e",
"md5": "d39d629c7474273e8d5fdb106bccbcad",
"sha256": "670d0f84bfde3469053eac53db999ca7b3a900fecf712919d7f9645d58d1becf"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d39d629c7474273e8d5fdb106bccbcad",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 348771,
"upload_time": "2024-12-14T19:45:16",
"upload_time_iso_8601": "2024-12-14T19:45:16.532189Z",
"url": "https://files.pythonhosted.org/packages/a5/b6/7aa1c46d8a9084bf0a3dbead762e672b4274e9dfa085b2c13a1ae85b5b3e/jellyfish-1.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca032fce10f15043edadc3c6b82883827df6c1611c966d6677b854b8d5533fd2",
"md5": "5ac985d17624806058e6a3a375551e06",
"sha256": "538a76ed655a7fdf6e6b8b3f64712193a563970a0e8b7c6488adfb8959bd434e"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "5ac985d17624806058e6a3a375551e06",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 355348,
"upload_time": "2024-12-14T19:45:17",
"upload_time_iso_8601": "2024-12-14T19:45:17.970492Z",
"url": "https://files.pythonhosted.org/packages/ca/03/2fce10f15043edadc3c6b82883827df6c1611c966d6677b854b8d5533fd2/jellyfish-1.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84b664a3f5b11f840551b58a41722beed05e30a3cf9263e101aa21d6a480ad0a",
"md5": "6f93e14ff1e964ec6cf2ca22c9654bcc",
"sha256": "46ad439689206953f2d490a66bf5145bd3b910836e8dd22c380f584b9ef910da"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6f93e14ff1e964ec6cf2ca22c9654bcc",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 348942,
"upload_time": "2024-12-14T19:45:19",
"upload_time_iso_8601": "2024-12-14T19:45:19.425063Z",
"url": "https://files.pythonhosted.org/packages/84/b6/64a3f5b11f840551b58a41722beed05e30a3cf9263e101aa21d6a480ad0a/jellyfish-1.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4f7743cba2beb4a919050e8c45b6b21a94f22985be746194a90172e68df6c08",
"md5": "c61bc806b1cf7e6afe2394b14586d7a6",
"sha256": "c159b8360c2fce373b9fdcec6c3cb3fa29e1d01ef02f5476fae714ef34ace6ac"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "c61bc806b1cf7e6afe2394b14586d7a6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 527134,
"upload_time": "2024-12-14T19:45:20",
"upload_time_iso_8601": "2024-12-14T19:45:20.955545Z",
"url": "https://files.pythonhosted.org/packages/a4/f7/743cba2beb4a919050e8c45b6b21a94f22985be746194a90172e68df6c08/jellyfish-1.1.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2be87971af5630ba0674db7a6f2eaf542f016cea6b4ca4ca3895c02dbf183ec4",
"md5": "c0b1773f8b6bee637c038a4ccf2159e2",
"sha256": "bedf3414ab15f743450689d0c065e4898091a5763241de7b25a3f1ed0827c833"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c0b1773f8b6bee637c038a4ccf2159e2",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 546052,
"upload_time": "2024-12-14T19:45:22",
"upload_time_iso_8601": "2024-12-14T19:45:22.454356Z",
"url": "https://files.pythonhosted.org/packages/2b/e8/7971af5630ba0674db7a6f2eaf542f016cea6b4ca4ca3895c02dbf183ec4/jellyfish-1.1.3-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6f42f15cba1327ae30d96396a2eb69df181d445739d67096af90dbfe1cd936e",
"md5": "eaa11a7e81970de82faf25f53464a889",
"sha256": "60d51008f36285bc592373e639386296a3e7fbd2d634e1c6f972983cbbd243af"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "eaa11a7e81970de82faf25f53464a889",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 519726,
"upload_time": "2024-12-14T19:45:23",
"upload_time_iso_8601": "2024-12-14T19:45:23.878705Z",
"url": "https://files.pythonhosted.org/packages/a6/f4/2f15cba1327ae30d96396a2eb69df181d445739d67096af90dbfe1cd936e/jellyfish-1.1.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65c51807d96c5fb1adfef4651d5c3f74c90f22b3fd7fb5a9123bf9c1aa85b0c5",
"md5": "87abc392b681735dd1d8f7c40a7eb1d5",
"sha256": "75bef7edada9fe367bbaf05fc5989bcb95f28fb80cca45fe28dcddc3762cb770"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "87abc392b681735dd1d8f7c40a7eb1d5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 316674,
"upload_time": "2024-12-14T19:45:27",
"upload_time_iso_8601": "2024-12-14T19:45:27.655678Z",
"url": "https://files.pythonhosted.org/packages/65/c5/1807d96c5fb1adfef4651d5c3f74c90f22b3fd7fb5a9123bf9c1aa85b0c5/jellyfish-1.1.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfe3e7e16cfcbe52a72421a1839a9c2be5b13b124565b2a41d941b1abcc04158",
"md5": "bd8bff87d1628b8002425767b9a4e197",
"sha256": "368041ec16ed4fed0c1f30bfaca4bf8041ee688fd2f22ee0d7e6a3b37a2ef8bf"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bd8bff87d1628b8002425767b9a4e197",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 312954,
"upload_time": "2024-12-14T19:45:30",
"upload_time_iso_8601": "2024-12-14T19:45:30.435149Z",
"url": "https://files.pythonhosted.org/packages/bf/e3/e7e16cfcbe52a72421a1839a9c2be5b13b124565b2a41d941b1abcc04158/jellyfish-1.1.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f7c368e285fc59668d6353294dea6f4b4aaf9f2001ce8a9646d324c5639a0f8",
"md5": "1db31a5d5b5caaaf77d7b36da3affaca",
"sha256": "0cf1d3c6eab17d59d01b9210fc7fa96da2543726a83053d76b9af6655b4da3e7"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1db31a5d5b5caaaf77d7b36da3affaca",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 348804,
"upload_time": "2024-12-14T19:45:31",
"upload_time_iso_8601": "2024-12-14T19:45:31.700882Z",
"url": "https://files.pythonhosted.org/packages/2f/7c/368e285fc59668d6353294dea6f4b4aaf9f2001ce8a9646d324c5639a0f8/jellyfish-1.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3f1f1ae3c2d62e7bd7160c5075dc750f7a659c42e13da7c224e32c1aa1d100c",
"md5": "f24bdb0bbf0d4728270b8f22c5841ec4",
"sha256": "7c08ee4267db2f90779d0ca5e2f89fd1b49730e622446dc9479edaf218d1261c"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f24bdb0bbf0d4728270b8f22c5841ec4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 355241,
"upload_time": "2024-12-14T19:45:34",
"upload_time_iso_8601": "2024-12-14T19:45:34.170513Z",
"url": "https://files.pythonhosted.org/packages/b3/f1/f1ae3c2d62e7bd7160c5075dc750f7a659c42e13da7c224e32c1aa1d100c/jellyfish-1.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51a7f9b7c36807069f1dab8f8cc42feea2e461e5dbc0a8135e30fad42ef927a5",
"md5": "0ff174b16ff6705e5ead5daea146b426",
"sha256": "cce030c8a8b6db05ec3be662fd06a813fb3eeee4f568c63d6ed18e1d96667578"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0ff174b16ff6705e5ead5daea146b426",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 348982,
"upload_time": "2024-12-14T19:45:35",
"upload_time_iso_8601": "2024-12-14T19:45:35.481368Z",
"url": "https://files.pythonhosted.org/packages/51/a7/f9b7c36807069f1dab8f8cc42feea2e461e5dbc0a8135e30fad42ef927a5/jellyfish-1.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b418c10b040a09a492b7c1f29aceb474e2f31c1c0670c33d0dc445504823f16a",
"md5": "4b38f1780038d5bb583c69e143dc14f6",
"sha256": "cca438727233786f314fc0739aae153cbad592755920c96dcc1a965cf1047016"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4b38f1780038d5bb583c69e143dc14f6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 527191,
"upload_time": "2024-12-14T19:45:36",
"upload_time_iso_8601": "2024-12-14T19:45:36.818774Z",
"url": "https://files.pythonhosted.org/packages/b4/18/c10b040a09a492b7c1f29aceb474e2f31c1c0670c33d0dc445504823f16a/jellyfish-1.1.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eed09d4dd9ec6a4da70c0ac1e59d1fbea850bb89f1fab6bfbd8c7c0b15f5fad6",
"md5": "f42c84b77a1ebd5eaac30c96870ae21c",
"sha256": "a03c6891bc909d9cc2802d5677dfbc39a8c730b50591395fdf7e408612a1845b"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "f42c84b77a1ebd5eaac30c96870ae21c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 546024,
"upload_time": "2024-12-14T19:45:38",
"upload_time_iso_8601": "2024-12-14T19:45:38.388285Z",
"url": "https://files.pythonhosted.org/packages/ee/d0/9d4dd9ec6a4da70c0ac1e59d1fbea850bb89f1fab6bfbd8c7c0b15f5fad6/jellyfish-1.1.3-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e9725a35c6744019e28be6d247b860e9b875af4667220148221775a71a51b9d",
"md5": "a5a300011365beee29d26d8367386176",
"sha256": "35cad0b7e914c2da4f1204f3f7e016784bdfc1952cd630e000e20641238f71e7"
},
"downloads": -1,
"filename": "jellyfish-1.1.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a5a300011365beee29d26d8367386176",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 519662,
"upload_time": "2024-12-14T19:45:39",
"upload_time_iso_8601": "2024-12-14T19:45:39.927775Z",
"url": "https://files.pythonhosted.org/packages/5e/97/25a35c6744019e28be6d247b860e9b875af4667220148221775a71a51b9d/jellyfish-1.1.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b3af607d7d44ee5cbad51ce8e2966bde112789eeb53633558f500bc4e44c053",
"md5": "f2a0ff7a1861cfcbd949d6f31a2653f0",
"sha256": "650ba1ddabd716499f85fae0e1f3fa3e6532a69b68985d9294e86a1e04f08f9f"
},
"downloads": -1,
"filename": "jellyfish-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "f2a0ff7a1861cfcbd949d6f31a2653f0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 364473,
"upload_time": "2024-12-14T19:45:41",
"upload_time_iso_8601": "2024-12-14T19:45:41.328590Z",
"url": "https://files.pythonhosted.org/packages/5b/3a/f607d7d44ee5cbad51ce8e2966bde112789eeb53633558f500bc4e44c053/jellyfish-1.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-14 19:45:41",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jamesturk",
"github_project": "jellyfish",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "jellyfish"
}