Name | jellyfish JSON |
Version |
1.1.0
JSON |
| download |
home_page | None |
Summary | Approximate and phonetic matching of strings. |
upload_time | 2024-07-28 08:20:50 |
maintainer | None |
docs_url | None |
author | James Turk <dev@jamesturk.net> |
requires_python | >=3.7 |
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.7",
"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/c9/2f/cda51a742a873ae4b0b52620cd282a885195612edaa2a7ec4b68cf968b2d/jellyfish-1.1.0.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.0",
"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": "ce60364265ea5ac6fab5a6f6645c2ad3a0d5c41b1b0ce2b0e5f98ce2cfc67ac2",
"md5": "52d62272e35ba91e1860fd1e2de989ed",
"sha256": "feb1fa5838f2bb6dbc9f6d07dabf4b9d91e130b289d72bd70dc33b651667688f"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "52d62272e35ba91e1860fd1e2de989ed",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 306835,
"upload_time": "2024-07-28T08:19:05",
"upload_time_iso_8601": "2024-07-28T08:19:05.263907Z",
"url": "https://files.pythonhosted.org/packages/ce/60/364265ea5ac6fab5a6f6645c2ad3a0d5c41b1b0ce2b0e5f98ce2cfc67ac2/jellyfish-1.1.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4716fafbbb45fca910df4df2bceea6f99265f59667348230b8775cfdbf1d0415",
"md5": "0b5977245e1dd5715bea082fa65a2925",
"sha256": "623fa58cca9b8e594a46e7b9cf3af629588a202439d97580a153d6af24736a1b"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0b5977245e1dd5715bea082fa65a2925",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 303195,
"upload_time": "2024-07-28T08:19:07",
"upload_time_iso_8601": "2024-07-28T08:19:07.215466Z",
"url": "https://files.pythonhosted.org/packages/47/16/fafbbb45fca910df4df2bceea6f99265f59667348230b8775cfdbf1d0415/jellyfish-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3bfba3807e42dd3622523c719cd7fc03576e905a5dc9937c4c7efb04a809724",
"md5": "7a4a6cbbf4aac15680a4f71f2542f05f",
"sha256": "a87e4a17006f7cdd7027a053aeeaacfb0b3366955e242cd5b74bbf882bafe022"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7a4a6cbbf4aac15680a4f71f2542f05f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 346571,
"upload_time": "2024-07-28T08:19:08",
"upload_time_iso_8601": "2024-07-28T08:19:08.973792Z",
"url": "https://files.pythonhosted.org/packages/f3/bf/ba3807e42dd3622523c719cd7fc03576e905a5dc9937c4c7efb04a809724/jellyfish-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e35fb85a71bcca1bced0751e9a132604792b73e33b2d51c7b5506b74db1720c5",
"md5": "82be534216d7d0fc6066a9a796452d9c",
"sha256": "f10fa36491840bda29f2164cc49e61244ea27c5db5a66aaa437724f5626f5610"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "82be534216d7d0fc6066a9a796452d9c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 343856,
"upload_time": "2024-07-28T08:19:10",
"upload_time_iso_8601": "2024-07-28T08:19:10.191817Z",
"url": "https://files.pythonhosted.org/packages/e3/5f/b85a71bcca1bced0751e9a132604792b73e33b2d51c7b5506b74db1720c5/jellyfish-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8100861186a78604c03bcd7846e4c3f1eed1af9072769f4a60997adccb846e00",
"md5": "88b7e42e620c2878d7cbcc58905f0bc5",
"sha256": "24f91daaa515284cdb691b1e01b0f91f9c9e51e685420725a1ded4f54d5376ff"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "88b7e42e620c2878d7cbcc58905f0bc5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 335971,
"upload_time": "2024-07-28T08:19:11",
"upload_time_iso_8601": "2024-07-28T08:19:11.934435Z",
"url": "https://files.pythonhosted.org/packages/81/00/861186a78604c03bcd7846e4c3f1eed1af9072769f4a60997adccb846e00/jellyfish-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06028a21858097971c0779952cdf1a5ea1e65585d123c4d00977b6bebc4305d0",
"md5": "2b25902c7305563fcc00e67f13e0ed8b",
"sha256": "65e58350618ebb1488246998a7356a8c9a7c839ec3ecfe936df55be6776fc173"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2b25902c7305563fcc00e67f13e0ed8b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 525166,
"upload_time": "2024-07-28T08:19:13",
"upload_time_iso_8601": "2024-07-28T08:19:13.645257Z",
"url": "https://files.pythonhosted.org/packages/06/02/8a21858097971c0779952cdf1a5ea1e65585d123c4d00977b6bebc4305d0/jellyfish-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c411ca9fd25ba78e29c3610e01b2e4ac7218aa41de64f6d3d205dba9b1c530d1",
"md5": "3966b7b799007b98c76c664429573a9e",
"sha256": "5c5ed62b23093b11de130c3fe1b381a2d3bfaf086757fa21341ac6f30a353e92"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "3966b7b799007b98c76c664429573a9e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 529630,
"upload_time": "2024-07-28T08:19:14",
"upload_time_iso_8601": "2024-07-28T08:19:14.854424Z",
"url": "https://files.pythonhosted.org/packages/c4/11/ca9fd25ba78e29c3610e01b2e4ac7218aa41de64f6d3d205dba9b1c530d1/jellyfish-1.1.0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6fcb978a74aa3ae100c63baaaaab32ffc2ef7328c8af024ccc938f3225a65bf0",
"md5": "821b4f097b3d0ec27ade3f4caa517838",
"sha256": "c42aa02e791d3e5a8fc6a96bec9f64ebbb2afef27b01eca201b56132e3d0c64e"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "821b4f097b3d0ec27ade3f4caa517838",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 506763,
"upload_time": "2024-07-28T08:19:16",
"upload_time_iso_8601": "2024-07-28T08:19:16.168457Z",
"url": "https://files.pythonhosted.org/packages/6f/cb/978a74aa3ae100c63baaaaab32ffc2ef7328c8af024ccc938f3225a65bf0/jellyfish-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae23dd2eba6f8a5724bc651db0bd47ac6f69fd996fa77afbb5e7d6babaaf64fc",
"md5": "d2a7c6b6fb9070e800f58db793dad0ba",
"sha256": "84680353261161c627cbdd622ea4243e3d3da75894bfacc2f3fcbbe56e8e59d4"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "d2a7c6b6fb9070e800f58db793dad0ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 201398,
"upload_time": "2024-07-28T08:19:17",
"upload_time_iso_8601": "2024-07-28T08:19:17.582339Z",
"url": "https://files.pythonhosted.org/packages/ae/23/dd2eba6f8a5724bc651db0bd47ac6f69fd996fa77afbb5e7d6babaaf64fc/jellyfish-1.1.0-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e101b41958cfef740dfda441e04e725381c7c234a37c1b7da0e768f0d896969",
"md5": "ab5337781f7f02048fa54b024415292c",
"sha256": "017c794b89d827d0306cb056fc5fbd040ff558a90ff0e68a6b60d6e6ba661fe3"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "ab5337781f7f02048fa54b024415292c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 207275,
"upload_time": "2024-07-28T08:19:18",
"upload_time_iso_8601": "2024-07-28T08:19:18.972159Z",
"url": "https://files.pythonhosted.org/packages/7e/10/1b41958cfef740dfda441e04e725381c7c234a37c1b7da0e768f0d896969/jellyfish-1.1.0-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89e1d80963467a1b4edd79b46f305bbc060dcffbcb7b138e308ecba86d99ffd1",
"md5": "5ea9816f155b5ee55b0ab1bae3cbbffd",
"sha256": "fed2e4ecf9b4995d2aa771453d0a0fdf47a5e1b13dbd74b98a30cb0070ede30c"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5ea9816f155b5ee55b0ab1bae3cbbffd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 306851,
"upload_time": "2024-07-28T08:19:20",
"upload_time_iso_8601": "2024-07-28T08:19:20.480465Z",
"url": "https://files.pythonhosted.org/packages/89/e1/d80963467a1b4edd79b46f305bbc060dcffbcb7b138e308ecba86d99ffd1/jellyfish-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b0c3df520c610785a83411237eeefbb9ba283eabbee80d2b87b1b93abe5d158",
"md5": "727e7d184f785c09070459e018cf1a81",
"sha256": "61a382ba8a3d3cd0bd50029062d54d3a0726679be248789fef6a3901eee47a60"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "727e7d184f785c09070459e018cf1a81",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 303132,
"upload_time": "2024-07-28T08:19:21",
"upload_time_iso_8601": "2024-07-28T08:19:21.839616Z",
"url": "https://files.pythonhosted.org/packages/3b/0c/3df520c610785a83411237eeefbb9ba283eabbee80d2b87b1b93abe5d158/jellyfish-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a23889f737cfa3c9716c583a5aac018b136d69322706cb34d3fca2c741e90533",
"md5": "b615606c7fcac250c79ef68270519f59",
"sha256": "0a4b526ed2080b97431454075c46c19baddc944e95cc605248e32a2a07be231e"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b615606c7fcac250c79ef68270519f59",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 346485,
"upload_time": "2024-07-28T08:19:23",
"upload_time_iso_8601": "2024-07-28T08:19:23.566634Z",
"url": "https://files.pythonhosted.org/packages/a2/38/89f737cfa3c9716c583a5aac018b136d69322706cb34d3fca2c741e90533/jellyfish-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "82feff9dcf224c4fbb12cf7b6c6ec6f4fc2975f1dcf49a605ef4edd334e170c8",
"md5": "8d86d24292ea9a20acf59b03f12e74f8",
"sha256": "0fa7450c3217724b73099cb18ee594926fcbc1cc4d9964350f31a4c1dc267b35"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8d86d24292ea9a20acf59b03f12e74f8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 343871,
"upload_time": "2024-07-28T08:19:24",
"upload_time_iso_8601": "2024-07-28T08:19:24.944447Z",
"url": "https://files.pythonhosted.org/packages/82/fe/ff9dcf224c4fbb12cf7b6c6ec6f4fc2975f1dcf49a605ef4edd334e170c8/jellyfish-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ed22055b8b6d1f4e432e40cfa44ae3e315e36e4eddb989eed4db7a53bff51e3",
"md5": "7982b828f1ede6c9f432b171cf01eb78",
"sha256": "33ebb6e9647d5d52f4d461a163449f6d1c73f1a80ccbe98bb17efac0062a6423"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7982b828f1ede6c9f432b171cf01eb78",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 335967,
"upload_time": "2024-07-28T08:19:27",
"upload_time_iso_8601": "2024-07-28T08:19:27.339759Z",
"url": "https://files.pythonhosted.org/packages/6e/d2/2055b8b6d1f4e432e40cfa44ae3e315e36e4eddb989eed4db7a53bff51e3/jellyfish-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae49a94610285aa756f80844c926ccd51cf0d1b83a7ea00cb56efeb3b96f0606",
"md5": "83b54912ef94e22bc9c70fe963a5f196",
"sha256": "759172602343115f910d7c63b39239051e32425115bc31ab4dafdaf6177f880c"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "83b54912ef94e22bc9c70fe963a5f196",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 525034,
"upload_time": "2024-07-28T08:19:28",
"upload_time_iso_8601": "2024-07-28T08:19:28.769743Z",
"url": "https://files.pythonhosted.org/packages/ae/49/a94610285aa756f80844c926ccd51cf0d1b83a7ea00cb56efeb3b96f0606/jellyfish-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e708f4472b5f7c2063b63904b95ccc57b5213ca1cfeab4ec7ec7dd3f556a0c7f",
"md5": "743a3c4d02e83cea686b7127661bcf87",
"sha256": "273fdc362ccdb09259eec9bc4abdc2467d9a54bd94d05ae22e71423dd1357255"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "743a3c4d02e83cea686b7127661bcf87",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 529613,
"upload_time": "2024-07-28T08:19:30",
"upload_time_iso_8601": "2024-07-28T08:19:30.331328Z",
"url": "https://files.pythonhosted.org/packages/e7/08/f4472b5f7c2063b63904b95ccc57b5213ca1cfeab4ec7ec7dd3f556a0c7f/jellyfish-1.1.0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e2a3dd192bb8b731c7618797a1abb24f485f341f4d5d13441a01ddd028d2c33",
"md5": "63ea7198395324bd08b1757ccb90983a",
"sha256": "bd5c335f8d762447691dc0572f4eaf0cfdfbfffb6dce740341425ab1b32134ff"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "63ea7198395324bd08b1757ccb90983a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 506597,
"upload_time": "2024-07-28T08:19:31",
"upload_time_iso_8601": "2024-07-28T08:19:31.798562Z",
"url": "https://files.pythonhosted.org/packages/7e/2a/3dd192bb8b731c7618797a1abb24f485f341f4d5d13441a01ddd028d2c33/jellyfish-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd9b556bb5aff966e003441b15b66fe3638a85d70ff66b0be777852d6b71613f",
"md5": "6e1bed498eac17525afa211898464502",
"sha256": "cc16a60a42f1541ad9c13c72c797107388227f01189aa3c0ec7ee9b939e57ea8"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "6e1bed498eac17525afa211898464502",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 201447,
"upload_time": "2024-07-28T08:19:33",
"upload_time_iso_8601": "2024-07-28T08:19:33.433124Z",
"url": "https://files.pythonhosted.org/packages/dd/9b/556bb5aff966e003441b15b66fe3638a85d70ff66b0be777852d6b71613f/jellyfish-1.1.0-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd76a077eee8a50c522121ba74b6a6dff6987f1a7333992219251987fe0db850",
"md5": "9a2db12760ab7d84ce3af211ebd2d30f",
"sha256": "95dfe61eabf360a92e6d76d1c4dbafa29bcb3f70e2ad7354de2661141fcce038"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "9a2db12760ab7d84ce3af211ebd2d30f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 207305,
"upload_time": "2024-07-28T08:19:34",
"upload_time_iso_8601": "2024-07-28T08:19:34.664781Z",
"url": "https://files.pythonhosted.org/packages/cd/76/a077eee8a50c522121ba74b6a6dff6987f1a7333992219251987fe0db850/jellyfish-1.1.0-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db6b5d66bf5be9ed7b6cb030d111cc4bc4d6d61f19ea6ca4d90c4c6e5bc65382",
"md5": "eba5c8b327be687687abbada391199d0",
"sha256": "828a7000d369cbd4d812b88510c01fdab20b73dc54c63cdbe03bdff67ab362d0"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "eba5c8b327be687687abbada391199d0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 306412,
"upload_time": "2024-07-28T08:19:36",
"upload_time_iso_8601": "2024-07-28T08:19:36.185888Z",
"url": "https://files.pythonhosted.org/packages/db/6b/5d66bf5be9ed7b6cb030d111cc4bc4d6d61f19ea6ca4d90c4c6e5bc65382/jellyfish-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccb0cb8bfd5e1a19ff73826971a7656ca59b88e6ae2e5b1d07b7e458a3290c88",
"md5": "e7a5033cd6014ac0068d334e88704a46",
"sha256": "e250dc1074d730a03c96ac9dfce44716cf45e0e2825cbddaf32a015cdf9cf594"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e7a5033cd6014ac0068d334e88704a46",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 302950,
"upload_time": "2024-07-28T08:19:37",
"upload_time_iso_8601": "2024-07-28T08:19:37.386614Z",
"url": "https://files.pythonhosted.org/packages/cc/b0/cb8bfd5e1a19ff73826971a7656ca59b88e6ae2e5b1d07b7e458a3290c88/jellyfish-1.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "575133fcb48d9a6415838305e2fd787935e086c5bca732987f79c94ba8c696ce",
"md5": "b0c8ca2a119e7aea6c1f2f6053af592a",
"sha256": "87dc2a82c45b773a579fb695a5956a54106c1187f27c9ccee8508726d2e59cfc"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b0c8ca2a119e7aea6c1f2f6053af592a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 346287,
"upload_time": "2024-07-28T08:19:38",
"upload_time_iso_8601": "2024-07-28T08:19:38.646337Z",
"url": "https://files.pythonhosted.org/packages/57/51/33fcb48d9a6415838305e2fd787935e086c5bca732987f79c94ba8c696ce/jellyfish-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ef3ae1d6e474e2ab6a04abf244450424b62c196eb3597885cb7b90d858b3b06",
"md5": "f89550b44eab4b0e85fc678a4f61a41f",
"sha256": "e41677ec860454da5977c698fc64fed73b4054a92c5c62ba7d1af535f8082ac7"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f89550b44eab4b0e85fc678a4f61a41f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 343892,
"upload_time": "2024-07-28T08:19:40",
"upload_time_iso_8601": "2024-07-28T08:19:40.243301Z",
"url": "https://files.pythonhosted.org/packages/4e/f3/ae1d6e474e2ab6a04abf244450424b62c196eb3597885cb7b90d858b3b06/jellyfish-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c4191ff9bbf83389fba009de3896ae5f44292242990e53bdbece106eceb33ad",
"md5": "44934bead82ad02b785dbc4066f48636",
"sha256": "e9d4002d01252f18eb26f28b66f6c9ce0696221804d8769553c5912b2f221a18"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "44934bead82ad02b785dbc4066f48636",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 335763,
"upload_time": "2024-07-28T08:19:41",
"upload_time_iso_8601": "2024-07-28T08:19:41.673262Z",
"url": "https://files.pythonhosted.org/packages/1c/41/91ff9bbf83389fba009de3896ae5f44292242990e53bdbece106eceb33ad/jellyfish-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33dd6a0e7023e0c0aaa1b5a55665062f35bc204cf8dba33816787f383416d23d",
"md5": "0e6fd693aff71600e804dae5e3fe485c",
"sha256": "936df26c10ca6cd6b4f0fb97753087354c568e2129c197cbb4e0f0172db7511f"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "0e6fd693aff71600e804dae5e3fe485c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 525046,
"upload_time": "2024-07-28T08:19:43",
"upload_time_iso_8601": "2024-07-28T08:19:43.101790Z",
"url": "https://files.pythonhosted.org/packages/33/dd/6a0e7023e0c0aaa1b5a55665062f35bc204cf8dba33816787f383416d23d/jellyfish-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "965de37ff36554871d02c9248d3f7837479b0c8f6e92cdeee4e6b017f10e39de",
"md5": "21db08a7581b6fc1f1fe013cd2d5dc2c",
"sha256": "684c2093fa0d68a91146e15a1e9ca859259b19d3bc36ec4d60948d86751f744e"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "21db08a7581b6fc1f1fe013cd2d5dc2c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 529581,
"upload_time": "2024-07-28T08:19:44",
"upload_time_iso_8601": "2024-07-28T08:19:44.571266Z",
"url": "https://files.pythonhosted.org/packages/96/5d/e37ff36554871d02c9248d3f7837479b0c8f6e92cdeee4e6b017f10e39de/jellyfish-1.1.0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "70253a3a39df1c3b28d1e6c0f1693047dec7450d5406ec2c516ac93e35883af5",
"md5": "99b4729223fc7d63162533c0512108bd",
"sha256": "2fcaefebe9d67f282d89d3a66646b77184a42b3eca2771636789b2dc1288c003"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "99b4729223fc7d63162533c0512108bd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 506686,
"upload_time": "2024-07-28T08:19:46",
"upload_time_iso_8601": "2024-07-28T08:19:46.341331Z",
"url": "https://files.pythonhosted.org/packages/70/25/3a3a39df1c3b28d1e6c0f1693047dec7450d5406ec2c516ac93e35883af5/jellyfish-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e9c37c1701ac56c978043239430b69845900632b485573259eac6de015a2ea7",
"md5": "00cefed1bc92f8154fd101427efc2add",
"sha256": "e512c99941a257541ffd9f75c7a5c4689de0206841b72f1eb015599d17fed2c3"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "00cefed1bc92f8154fd101427efc2add",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 201172,
"upload_time": "2024-07-28T08:19:47",
"upload_time_iso_8601": "2024-07-28T08:19:47.562281Z",
"url": "https://files.pythonhosted.org/packages/4e/9c/37c1701ac56c978043239430b69845900632b485573259eac6de015a2ea7/jellyfish-1.1.0-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dea507ee2c08dcf970284e6412c9b8cb7f79222fc9e2aaf9b3c45837d8e2173b",
"md5": "270ba0c6189826e356315709ffdb10ed",
"sha256": "2b928bad2887c662783a4d9b5828ed1fa0e943f680589f7fc002c456fc02e184"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "270ba0c6189826e356315709ffdb10ed",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 206918,
"upload_time": "2024-07-28T08:19:48",
"upload_time_iso_8601": "2024-07-28T08:19:48.762477Z",
"url": "https://files.pythonhosted.org/packages/de/a5/07ee2c08dcf970284e6412c9b8cb7f79222fc9e2aaf9b3c45837d8e2173b/jellyfish-1.1.0-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53695bce4146e309d8ffc6cfd02fb222490f40aed9792722914724864f04e630",
"md5": "aaef3e52a5ae42a4a9d68be1f849a5e2",
"sha256": "7cd4b706cb6c4739846d78a398c67996cb451b09a732a625793cfe8d4f37af1b"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "aaef3e52a5ae42a4a9d68be1f849a5e2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 307033,
"upload_time": "2024-07-28T08:19:49",
"upload_time_iso_8601": "2024-07-28T08:19:49.881083Z",
"url": "https://files.pythonhosted.org/packages/53/69/5bce4146e309d8ffc6cfd02fb222490f40aed9792722914724864f04e630/jellyfish-1.1.0-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0c21941f06c8cd97528ab219dcd88a308801ffb391d76dc49057103298bc0df",
"md5": "fddae8b4a4b7577971ab6bf7b5f57813",
"sha256": "61cded25b47fe6b4c2ea9478c0a5a7531845218525a1b2627c67907ee9fe9b15"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fddae8b4a4b7577971ab6bf7b5f57813",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 303207,
"upload_time": "2024-07-28T08:19:51",
"upload_time_iso_8601": "2024-07-28T08:19:51.399449Z",
"url": "https://files.pythonhosted.org/packages/e0/c2/1941f06c8cd97528ab219dcd88a308801ffb391d76dc49057103298bc0df/jellyfish-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a868bc7cc3701ed7c81017622d46e5c5ce774c02ba41523591f76015318f52e",
"md5": "58022389275e0831c0d0c8af01b9fa14",
"sha256": "04bf33577059afba33227977e4a2c08ccb954eb77c849fde564af3e31ee509d9"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "58022389275e0831c0d0c8af01b9fa14",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 346658,
"upload_time": "2024-07-28T08:19:52",
"upload_time_iso_8601": "2024-07-28T08:19:52.729437Z",
"url": "https://files.pythonhosted.org/packages/1a/86/8bc7cc3701ed7c81017622d46e5c5ce774c02ba41523591f76015318f52e/jellyfish-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d12dde15d42deecff81ae8bb49592ee7da4d935a2e20956c5491a14f6a4594d",
"md5": "b58ae31a308a5fd53cd4e1f701aa7eb4",
"sha256": "327496501a44fbdfe0602fdc6a7d4317a7598202f1f652c9c4f0a49529a385cd"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b58ae31a308a5fd53cd4e1f701aa7eb4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 343642,
"upload_time": "2024-07-28T08:19:54",
"upload_time_iso_8601": "2024-07-28T08:19:54.331080Z",
"url": "https://files.pythonhosted.org/packages/0d/12/dde15d42deecff81ae8bb49592ee7da4d935a2e20956c5491a14f6a4594d/jellyfish-1.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6357823509d37edaa4adaf23990e86ebd3d09dcd6abc309f82cf6235998c3449",
"md5": "86a033c2f4fffc5adcf20979bb9a4132",
"sha256": "c0d1e6bac549cc2919b83d0ebe26566404ae3dfef5ef86229d1d826e3aeaba4b"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "86a033c2f4fffc5adcf20979bb9a4132",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 336232,
"upload_time": "2024-07-28T08:19:55",
"upload_time_iso_8601": "2024-07-28T08:19:55.560093Z",
"url": "https://files.pythonhosted.org/packages/63/57/823509d37edaa4adaf23990e86ebd3d09dcd6abc309f82cf6235998c3449/jellyfish-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1cb885f174e007830a6c51021917952ebb937a961a6f5dab95ebfb93cac21b91",
"md5": "156f94cd89625510efca27a31c65b31c",
"sha256": "b5fec525f15b39687dbfd75589333df4e6f6d15d3b1e0ada02bf206363dfd2af"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "156f94cd89625510efca27a31c65b31c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 525255,
"upload_time": "2024-07-28T08:19:56",
"upload_time_iso_8601": "2024-07-28T08:19:56.812109Z",
"url": "https://files.pythonhosted.org/packages/1c/b8/85f174e007830a6c51021917952ebb937a961a6f5dab95ebfb93cac21b91/jellyfish-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c1e59dadabeed3cfc3091da653ba9fc0930896652e7455f7b1c94876e8f0f4a",
"md5": "4dc924d3eae0994ca9f5cda8cebd1a11",
"sha256": "8b2faf015e86a9efd5679b3abde83cbd8f3104b9e89445aa76b8481b206b3e67"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4dc924d3eae0994ca9f5cda8cebd1a11",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 529545,
"upload_time": "2024-07-28T08:19:58",
"upload_time_iso_8601": "2024-07-28T08:19:58.248744Z",
"url": "https://files.pythonhosted.org/packages/1c/1e/59dadabeed3cfc3091da653ba9fc0930896652e7455f7b1c94876e8f0f4a/jellyfish-1.1.0-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1abc5422729a26d84a0a0d34d98381121454eb3083f5d34838702470b22c7ca",
"md5": "099bd4237c967ad8dd538da2a564639f",
"sha256": "b73efda07d52a1583afb8915a5f9feb017d0b60ae6d03071b21cc4f0a8a08ec1"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "099bd4237c967ad8dd538da2a564639f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 507008,
"upload_time": "2024-07-28T08:19:59",
"upload_time_iso_8601": "2024-07-28T08:19:59.938331Z",
"url": "https://files.pythonhosted.org/packages/d1/ab/c5422729a26d84a0a0d34d98381121454eb3083f5d34838702470b22c7ca/jellyfish-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "978d16d2dde3e9663b702072a6282bb89dab2d84fef5cca71448472478df26d5",
"md5": "a32331b07ec0e334848ddb5659a6a460",
"sha256": "4a5199583a956d313be825972d7c14a0d9e455884acd12c03d05e4272c6c3bb8"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "a32331b07ec0e334848ddb5659a6a460",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 201214,
"upload_time": "2024-07-28T08:20:02",
"upload_time_iso_8601": "2024-07-28T08:20:02.081053Z",
"url": "https://files.pythonhosted.org/packages/97/8d/16d2dde3e9663b702072a6282bb89dab2d84fef5cca71448472478df26d5/jellyfish-1.1.0-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "336c55b46eec37e6f6eae85d36909b7942efb1f53bd3093ca49533836b390afd",
"md5": "99d35819fbceb050cd4be35dbd7a8092",
"sha256": "755b68920a839f9e2b4813f0990a8dadcc9a24980bb29839f636ab5e36aaa256"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "99d35819fbceb050cd4be35dbd7a8092",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 206966,
"upload_time": "2024-07-28T08:20:03",
"upload_time_iso_8601": "2024-07-28T08:20:03.445863Z",
"url": "https://files.pythonhosted.org/packages/33/6c/55b46eec37e6f6eae85d36909b7942efb1f53bd3093ca49533836b390afd/jellyfish-1.1.0-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1072fc8d6c159d7fad7f8563bdd2a4ba5c24839940f5d6480ae3f1416d40b69b",
"md5": "c65f01d27fd1c1101196114ec286ec49",
"sha256": "e965241e54f9cb9be6fe8f7a1376b6cc61ff831de017bde9150156771820f669"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c65f01d27fd1c1101196114ec286ec49",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 307135,
"upload_time": "2024-07-28T08:20:04",
"upload_time_iso_8601": "2024-07-28T08:20:04.628968Z",
"url": "https://files.pythonhosted.org/packages/10/72/fc8d6c159d7fad7f8563bdd2a4ba5c24839940f5d6480ae3f1416d40b69b/jellyfish-1.1.0-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2bbdd01a1a005b2d71a82d4c709a9a335410e9f91d67ed4e3bdbca4b8ee9cef",
"md5": "28f4ca71233278a09cb376ae1d78156d",
"sha256": "3e59a4c3bf0847dfff44195a4c250bc9e281b1c403f6212534ee36fc7c913dc1"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "28f4ca71233278a09cb376ae1d78156d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 303435,
"upload_time": "2024-07-28T08:20:05",
"upload_time_iso_8601": "2024-07-28T08:20:05.765084Z",
"url": "https://files.pythonhosted.org/packages/d2/bb/dd01a1a005b2d71a82d4c709a9a335410e9f91d67ed4e3bdbca4b8ee9cef/jellyfish-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ab441cb968baaf411386e18280ff87059c1c0ea11defa4e51a05dc343968f44",
"md5": "938ca6da3410d27c2b1402c626d8bfdb",
"sha256": "84fa4e72b7754060d352604e07ea89af98403b0436caad443276ae46135b7fd7"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "938ca6da3410d27c2b1402c626d8bfdb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 346527,
"upload_time": "2024-07-28T08:20:07",
"upload_time_iso_8601": "2024-07-28T08:20:07.004723Z",
"url": "https://files.pythonhosted.org/packages/9a/b4/41cb968baaf411386e18280ff87059c1c0ea11defa4e51a05dc343968f44/jellyfish-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73e5b137559228ba3d83f1af14e60f8348dab8a7e01df759708288cd16070394",
"md5": "6c019758e0cece5d4e18a8784d935fca",
"sha256": "125e9bfd1cc2c053eae3afa04fa142bbc8b3c1290a40a3416271b221f7e6bc87"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6c019758e0cece5d4e18a8784d935fca",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 344091,
"upload_time": "2024-07-28T08:20:08",
"upload_time_iso_8601": "2024-07-28T08:20:08.305714Z",
"url": "https://files.pythonhosted.org/packages/73/e5/b137559228ba3d83f1af14e60f8348dab8a7e01df759708288cd16070394/jellyfish-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "137a90d4a938a0a914c4d0a84fa9e0d60dc909c375ea6a3b879817b483099d8e",
"md5": "46dbed6d239159987db896785a37bcef",
"sha256": "e4a8fff36462bf1bdaa339d58fadd7e79a63690902e6d7ddd65a84efc3a4cc6d"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "46dbed6d239159987db896785a37bcef",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 336373,
"upload_time": "2024-07-28T08:20:09",
"upload_time_iso_8601": "2024-07-28T08:20:09.572268Z",
"url": "https://files.pythonhosted.org/packages/13/7a/90d4a938a0a914c4d0a84fa9e0d60dc909c375ea6a3b879817b483099d8e/jellyfish-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3553a7a1a2f9bd82ca451d15875ea350e4fa232b7215c9350aa139b1c55038d5",
"md5": "74465358b6b2369aca35edf883c0840e",
"sha256": "6b438b3d7f970cfd8f77b30b05694537a54c08f3775b35debae45ff5a469f1a5"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "74465358b6b2369aca35edf883c0840e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 525508,
"upload_time": "2024-07-28T08:20:11",
"upload_time_iso_8601": "2024-07-28T08:20:11.345103Z",
"url": "https://files.pythonhosted.org/packages/35/53/a7a1a2f9bd82ca451d15875ea350e4fa232b7215c9350aa139b1c55038d5/jellyfish-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "85108c4899b695f246c549079b19855d644bc78648b0a16d9f7e87684571c36e",
"md5": "04077c15c92193029c860885cb546479",
"sha256": "cf8d26c3735b5c2764cc53482dec14bb9b794ba829db3cd4c9a29d194a61cada"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "04077c15c92193029c860885cb546479",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 529746,
"upload_time": "2024-07-28T08:20:12",
"upload_time_iso_8601": "2024-07-28T08:20:12.669276Z",
"url": "https://files.pythonhosted.org/packages/85/10/8c4899b695f246c549079b19855d644bc78648b0a16d9f7e87684571c36e/jellyfish-1.1.0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7673a975850734327f0a0caeaf079f0b26d16ca65f72302615a7dd25453d4767",
"md5": "97f8d4046f43ea7dd04a75b008b8611b",
"sha256": "f341d0582ecac0aa73f380056dc8d25d8a60104f94debe8bf3f924a32a11588d"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "97f8d4046f43ea7dd04a75b008b8611b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 507328,
"upload_time": "2024-07-28T08:20:13",
"upload_time_iso_8601": "2024-07-28T08:20:13.993442Z",
"url": "https://files.pythonhosted.org/packages/76/73/a975850734327f0a0caeaf079f0b26d16ca65f72302615a7dd25453d4767/jellyfish-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38078f6cedf852907500baf6dee4eb51497bf0ef1dcb3612852417e03052cce8",
"md5": "7aadc0882608eac7f547c3bef8408c95",
"sha256": "49f2be59573b22d0adb615585ff66ca050198ec1f9f6784eec168bcd8137caf5"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "7aadc0882608eac7f547c3bef8408c95",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 201525,
"upload_time": "2024-07-28T08:20:15",
"upload_time_iso_8601": "2024-07-28T08:20:15.412534Z",
"url": "https://files.pythonhosted.org/packages/38/07/8f6cedf852907500baf6dee4eb51497bf0ef1dcb3612852417e03052cce8/jellyfish-1.1.0-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef683c3c1d3ab7e7277fb6316e69009477396a0db574feb82b12e6640b14243e",
"md5": "0d04ccd647feebad330f2d29311eaf00",
"sha256": "c58988138666b1cd860004c1afc7a09bb402e71e16e1f324be5c5d2b85fdfa3e"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "0d04ccd647feebad330f2d29311eaf00",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 207278,
"upload_time": "2024-07-28T08:20:16",
"upload_time_iso_8601": "2024-07-28T08:20:16.721381Z",
"url": "https://files.pythonhosted.org/packages/ef/68/3c3c1d3ab7e7277fb6316e69009477396a0db574feb82b12e6640b14243e/jellyfish-1.1.0-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ee44d87b377af913633c45a3b65ea2a2113d0acf4194748f8d16c20a4989fb1",
"md5": "0712fea272e89bbe21d28979891a75ee",
"sha256": "54effec80c7a5013bea8e2ea6cd87fdd35a2c5b35f86ccf69ec33f4212245f25"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0712fea272e89bbe21d28979891a75ee",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 348149,
"upload_time": "2024-07-28T08:20:17",
"upload_time_iso_8601": "2024-07-28T08:20:17.943447Z",
"url": "https://files.pythonhosted.org/packages/2e/e4/4d87b377af913633c45a3b65ea2a2113d0acf4194748f8d16c20a4989fb1/jellyfish-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67dbd166a55444bfea3460bc477af96defcdf84b2b045a225c90fa379bcdf0e9",
"md5": "4947e7821110a1e1cf12239b1b7e9e63",
"sha256": "12ae67e9016c9a173453023fd7b400ec002bbc106c12722d914c53951acfa190"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4947e7821110a1e1cf12239b1b7e9e63",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 345503,
"upload_time": "2024-07-28T08:20:19",
"upload_time_iso_8601": "2024-07-28T08:20:19.618660Z",
"url": "https://files.pythonhosted.org/packages/67/db/d166a55444bfea3460bc477af96defcdf84b2b045a225c90fa379bcdf0e9/jellyfish-1.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c166a9fce02be03110e6259ee07acd4f6b89b6914c9904089c7f2c3d524bf455",
"md5": "da68897e67823b2709b9f3f28950c758",
"sha256": "efd342f9d4fb0ead8a3c30fe26e442308fb665ca37f4aa97baf448d814469bf1"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "da68897e67823b2709b9f3f28950c758",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 337608,
"upload_time": "2024-07-28T08:20:20",
"upload_time_iso_8601": "2024-07-28T08:20:20.970923Z",
"url": "https://files.pythonhosted.org/packages/c1/66/a9fce02be03110e6259ee07acd4f6b89b6914c9904089c7f2c3d524bf455/jellyfish-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da6bf392fbd61db0649bb67b66edc3b3fc5defcb944cd1c18f0e7bb784cb5223",
"md5": "953be3cc24604f971f531f72263e193f",
"sha256": "b0dc9f1bb335b6caa412c3d27028e25d315ef2bc993d425db93e451d7bc28056"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "953be3cc24604f971f531f72263e193f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 527251,
"upload_time": "2024-07-28T08:20:22",
"upload_time_iso_8601": "2024-07-28T08:20:22.234745Z",
"url": "https://files.pythonhosted.org/packages/da/6b/f392fbd61db0649bb67b66edc3b3fc5defcb944cd1c18f0e7bb784cb5223/jellyfish-1.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9e5c0662901217afca989b6f6263a6b728a46d213eadbae756d050e0beef7ba",
"md5": "b433ae38011c1b5a4067eb5c0a857440",
"sha256": "3f12cb59b3266e37ec47bd7c2c37faadc74ae8ccdc0190444daeafda3bd93da2"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "b433ae38011c1b5a4067eb5c0a857440",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 531325,
"upload_time": "2024-07-28T08:20:23",
"upload_time_iso_8601": "2024-07-28T08:20:23.843178Z",
"url": "https://files.pythonhosted.org/packages/d9/e5/c0662901217afca989b6f6263a6b728a46d213eadbae756d050e0beef7ba/jellyfish-1.1.0-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e1093ab864ba8c59b4436d5a2260058995b5da22a864d969860b1ade0a7743f",
"md5": "8f83c09ba675b3e1bae921925a3ea43c",
"sha256": "c7ea99734b7767243b5b98eca953f0d719b48b0d630af3965638699728ef7523"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "8f83c09ba675b3e1bae921925a3ea43c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 508647,
"upload_time": "2024-07-28T08:20:25",
"upload_time_iso_8601": "2024-07-28T08:20:25.252785Z",
"url": "https://files.pythonhosted.org/packages/9e/10/93ab864ba8c59b4436d5a2260058995b5da22a864d969860b1ade0a7743f/jellyfish-1.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee463e0eadc8fda56befff46a71fbc89ddd65d97c2865b8489ca082901b78b77",
"md5": "c88de72e9ac737684ec657312d4368f6",
"sha256": "1a90889fdb96ca27fc176e19a472c736e044d7190c924d9b7cfb0444881f921c"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c88de72e9ac737684ec657312d4368f6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 308945,
"upload_time": "2024-07-28T08:20:26",
"upload_time_iso_8601": "2024-07-28T08:20:26.619762Z",
"url": "https://files.pythonhosted.org/packages/ee/46/3e0eadc8fda56befff46a71fbc89ddd65d97c2865b8489ca082901b78b77/jellyfish-1.1.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "320420d2014fe1dcdbda01ef16f91e2158511773976fcafb6e8a3f7d24b53efb",
"md5": "18432f12d4e3659372d961cbdec29c29",
"sha256": "c01cdf0d52d07e07fb0dfa2b3c03ca3b5a07088f08b38b06376ed228d842e501"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "18432f12d4e3659372d961cbdec29c29",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 305977,
"upload_time": "2024-07-28T08:20:27",
"upload_time_iso_8601": "2024-07-28T08:20:27.990173Z",
"url": "https://files.pythonhosted.org/packages/32/04/20d2014fe1dcdbda01ef16f91e2158511773976fcafb6e8a3f7d24b53efb/jellyfish-1.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8483d8ca22d3707eda1ccf5dd60ef1878d850448744522692eb74016ff25781d",
"md5": "720f77669b4b2fae9a5d3f9e045c47f7",
"sha256": "1a4678a2623cc83fde7ff683ba78d308edf7e54a1c81dd295cdf525761b9fcc1"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "720f77669b4b2fae9a5d3f9e045c47f7",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 349185,
"upload_time": "2024-07-28T08:20:29",
"upload_time_iso_8601": "2024-07-28T08:20:29.279835Z",
"url": "https://files.pythonhosted.org/packages/84/83/d8ca22d3707eda1ccf5dd60ef1878d850448744522692eb74016ff25781d/jellyfish-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a133446b70b5e2f1bea7e792b2fb586f16ee23323a4449a89a08c9ba7e133ddb",
"md5": "4621c99a222eff0e7688c86f5036713f",
"sha256": "b557b8e1fdad4a36f467ee44f5532a4a13e5300b93b2b5e70ff75d0d16458132"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4621c99a222eff0e7688c86f5036713f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 346516,
"upload_time": "2024-07-28T08:20:31",
"upload_time_iso_8601": "2024-07-28T08:20:31.070449Z",
"url": "https://files.pythonhosted.org/packages/a1/33/446b70b5e2f1bea7e792b2fb586f16ee23323a4449a89a08c9ba7e133ddb/jellyfish-1.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b4ed03fc4823e3745f30b7e8f98a1d0c3dbad623baff6fae4423793c9c4138f",
"md5": "a58d28945f0542aa2ce3cd41d06ba5b5",
"sha256": "b5c34d12730d912bafab9f6daaa7fb2c6fa6afc0a8fc2c4cdc017df485d8d843"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a58d28945f0542aa2ce3cd41d06ba5b5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 338867,
"upload_time": "2024-07-28T08:20:32",
"upload_time_iso_8601": "2024-07-28T08:20:32.294891Z",
"url": "https://files.pythonhosted.org/packages/9b/4e/d03fc4823e3745f30b7e8f98a1d0c3dbad623baff6fae4423793c9c4138f/jellyfish-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81ece6a3df3aa748d40ef689dd7e9a60d4011342e0054041325f3239f2e9a784",
"md5": "45bdbc127d9dcf9ba98fd5fa1901fd22",
"sha256": "d977a1e0fa3814d517b16d58a39a16e449bbd900b966dd921e770d0fd67bfa45"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "45bdbc127d9dcf9ba98fd5fa1901fd22",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 527966,
"upload_time": "2024-07-28T08:20:34",
"upload_time_iso_8601": "2024-07-28T08:20:34.060563Z",
"url": "https://files.pythonhosted.org/packages/81/ec/e6a3df3aa748d40ef689dd7e9a60d4011342e0054041325f3239f2e9a784/jellyfish-1.1.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50b7ba4421923edda0f8ba1f0668eb2319490e8d912e5befbd7d0b00ceabf057",
"md5": "47d2d36df58719425f64c79421e330d6",
"sha256": "6662152bf510cc7daef18965dd80cfa98710b479bda87a3170c86c4e0a6dc1ab"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "47d2d36df58719425f64c79421e330d6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 532433,
"upload_time": "2024-07-28T08:20:35",
"upload_time_iso_8601": "2024-07-28T08:20:35.447340Z",
"url": "https://files.pythonhosted.org/packages/50/b7/ba4421923edda0f8ba1f0668eb2319490e8d912e5befbd7d0b00ceabf057/jellyfish-1.1.0-pp38-pypy38_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d576aedb9d7d1f7c74b30a728db6392cff3fc477cfd54b15b3d2754108e4114a",
"md5": "d6e5b7030bbada864b16af2de07d1837",
"sha256": "e447e3807c73aeda7b592919c105bf98ce0297a228aff68aafe4fe70a39b9a78"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d6e5b7030bbada864b16af2de07d1837",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 509755,
"upload_time": "2024-07-28T08:20:37",
"upload_time_iso_8601": "2024-07-28T08:20:37.825172Z",
"url": "https://files.pythonhosted.org/packages/d5/76/aedb9d7d1f7c74b30a728db6392cff3fc477cfd54b15b3d2754108e4114a/jellyfish-1.1.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08b67347ddc9d1d54a24bf28279b19bfa601f2ae04bdf3fffd1342b443c4c52e",
"md5": "4302fb2498a0749954ffa668573738e3",
"sha256": "ca252e6088c6afe5f8138ce9f557157ad0329f0610914ba50729c641d57cd662"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4302fb2498a0749954ffa668573738e3",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 308958,
"upload_time": "2024-07-28T08:20:39",
"upload_time_iso_8601": "2024-07-28T08:20:39.062860Z",
"url": "https://files.pythonhosted.org/packages/08/b6/7347ddc9d1d54a24bf28279b19bfa601f2ae04bdf3fffd1342b443c4c52e/jellyfish-1.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9bf0d610dbc026f0899899022087d698b0e156df349d5ae239de97b37788499",
"md5": "83af399cb2503d7c638a0a77d732bb68",
"sha256": "b2512ab6a1625a168796faaa159e1d1b8847cb3d0cc2b1b09ae77ff0623e7d10"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "83af399cb2503d7c638a0a77d732bb68",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 305858,
"upload_time": "2024-07-28T08:20:40",
"upload_time_iso_8601": "2024-07-28T08:20:40.776902Z",
"url": "https://files.pythonhosted.org/packages/a9/bf/0d610dbc026f0899899022087d698b0e156df349d5ae239de97b37788499/jellyfish-1.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29cd447370d4ae1f7c5c80729a7f1e25dcac6a9a30eec0ac1ec7a6e2085391bf",
"md5": "e8600d420aa01d28659a76ed5a313a44",
"sha256": "b868da3186306efb48fbd8a8dee0a742a5c8bc9c4c74aa5003914a8600435ba8"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e8600d420aa01d28659a76ed5a313a44",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 349194,
"upload_time": "2024-07-28T08:20:42",
"upload_time_iso_8601": "2024-07-28T08:20:42.426037Z",
"url": "https://files.pythonhosted.org/packages/29/cd/447370d4ae1f7c5c80729a7f1e25dcac6a9a30eec0ac1ec7a6e2085391bf/jellyfish-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea635baf9b46e212659ddba605cdcb61adb6a1934701e0f7805344a844122fc6",
"md5": "52beefa6605f4ea47cd9d435ed4d726b",
"sha256": "bcc2cb1f007ddfad2f9175a8c1f934a8a0a6cc73187e2339fe1a4b3fd90b263e"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "52beefa6605f4ea47cd9d435ed4d726b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 346517,
"upload_time": "2024-07-28T08:20:43",
"upload_time_iso_8601": "2024-07-28T08:20:43.705547Z",
"url": "https://files.pythonhosted.org/packages/ea/63/5baf9b46e212659ddba605cdcb61adb6a1934701e0f7805344a844122fc6/jellyfish-1.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4647c211ff62b8bcd28059403867b6c7280d1cbf8e949f455ad05cd08870196a",
"md5": "d5bae8ac556c31392de286a47530a2e0",
"sha256": "4e17885647f3a0faf1518cf6b319865b2e84439cfc16a3ea14468513c0fba227"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d5bae8ac556c31392de286a47530a2e0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 339035,
"upload_time": "2024-07-28T08:20:45",
"upload_time_iso_8601": "2024-07-28T08:20:45.392113Z",
"url": "https://files.pythonhosted.org/packages/46/47/c211ff62b8bcd28059403867b6c7280d1cbf8e949f455ad05cd08870196a/jellyfish-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5924a946bbb94da71a141daf9c15080a4e5227ec7040820f516f91c5d5dc387",
"md5": "e2e9bf64932124e9f9ca7cee0a350945",
"sha256": "84ea543d05e6b7a7a704d45ebd9c753e2425da01fc5000ddc149031be541c4d5"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "e2e9bf64932124e9f9ca7cee0a350945",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 528001,
"upload_time": "2024-07-28T08:20:47",
"upload_time_iso_8601": "2024-07-28T08:20:47.049343Z",
"url": "https://files.pythonhosted.org/packages/f5/92/4a946bbb94da71a141daf9c15080a4e5227ec7040820f516f91c5d5dc387/jellyfish-1.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f401627ccddd0695bf539ddd559fb78d40551482f5c8b9cc952571313c864812",
"md5": "f9942208f6ecfefc02503206e0cbc1fc",
"sha256": "065a59ab0d02969d45e5ab4b0315ed6f5977a4eb8eaef24f2589e25b85822d18"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "f9942208f6ecfefc02503206e0cbc1fc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 532444,
"upload_time": "2024-07-28T08:20:48",
"upload_time_iso_8601": "2024-07-28T08:20:48.336174Z",
"url": "https://files.pythonhosted.org/packages/f4/01/627ccddd0695bf539ddd559fb78d40551482f5c8b9cc952571313c864812/jellyfish-1.1.0-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58fb27100ab65aa426cdf5af04ca129f884ee36f8051c61c0909c1b06516c8f4",
"md5": "cee9da290c577b3d7a273f1d2904bf0b",
"sha256": "f747f34071e1558151b342a2bf96b813e04b5384024ba7c50f3c907fbaab484f"
},
"downloads": -1,
"filename": "jellyfish-1.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "cee9da290c577b3d7a273f1d2904bf0b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 509631,
"upload_time": "2024-07-28T08:20:49",
"upload_time_iso_8601": "2024-07-28T08:20:49.609027Z",
"url": "https://files.pythonhosted.org/packages/58/fb/27100ab65aa426cdf5af04ca129f884ee36f8051c61c0909c1b06516c8f4/jellyfish-1.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c92fcda51a742a873ae4b0b52620cd282a885195612edaa2a7ec4b68cf968b2d",
"md5": "40022ca4173441d95665568adb5f277b",
"sha256": "2a2eec494c81dc1eb23dfef543110dad1873538eccaffabea8520bdac8aecbc1"
},
"downloads": -1,
"filename": "jellyfish-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "40022ca4173441d95665568adb5f277b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 364391,
"upload_time": "2024-07-28T08:20:50",
"upload_time_iso_8601": "2024-07-28T08:20:50.882155Z",
"url": "https://files.pythonhosted.org/packages/c9/2f/cda51a742a873ae4b0b52620cd282a885195612edaa2a7ec4b68cf968b2d/jellyfish-1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-07-28 08:20:50",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jamesturk",
"github_project": "jellyfish",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "jellyfish"
}