liftover


Nameliftover JSON
Version 1.3.2 PyPI version JSON
download
home_pagehttps://github.com/jeremymcrae/liftover
SummaryPackage for converting between genome build coordinates
upload_time2024-12-03 17:54:25
maintainerNone
docs_urlNone
authorJeremy McRae
requires_pythonNone
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![liftover](https://github.com/jeremymcrae/liftover/workflows/liftover/badge.svg)

### python liftover utility

Converts point coordinates between genome assemblies.
Inspired by [pyliftover](https://github.com/konstantint/pyliftover), this
offers a few advantages:
 - ~5X faster, and lower memory requirements, as loading the chain file and
   converting coordinates is implemented in c++.
 - dictionary style conversion, as in access converted coordinates via
   `converter[chrom][pos]`

### Installation
Install via pip: `pip install liftover`

### Usage

```python
from liftover import get_lifter

converter = get_lifter('hg19', 'hg38', one_based=True)
chrom = '1'
pos = 103786442
converter[chrom][pos]

# other synonyms for the lift call
converter.convert_coordinate(chrom, pos)
converter.query(chrom, pos)

# alternatively create a converter directly from a chainfile
from liftover import ChainFile
converter = ChainFile('/home/user/hg18ToHg38.over.chain.gz', one_based=True)
converter[chrom][pos]

# you can also specify an alternative website to load chain files from
converter = get_lifter('hg19', 'hg38', chain_server='https://www.example.com')
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jeremymcrae/liftover",
    "name": "liftover",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Jeremy McRae",
    "author_email": "jmcrae@illumina.com",
    "download_url": "https://files.pythonhosted.org/packages/74/76/3414da52d1302ec9fc21daa73cf2529e226af9008146fae2a6a3bf34352a/liftover-1.3.2.tar.gz",
    "platform": null,
    "description": "![liftover](https://github.com/jeremymcrae/liftover/workflows/liftover/badge.svg)\n\n### python liftover utility\n\nConverts point coordinates between genome assemblies.\nInspired by [pyliftover](https://github.com/konstantint/pyliftover), this\noffers a few advantages:\n - ~5X faster, and lower memory requirements, as loading the chain file and\n   converting coordinates is implemented in c++.\n - dictionary style conversion, as in access converted coordinates via\n   `converter[chrom][pos]`\n\n### Installation\nInstall via pip: `pip install liftover`\n\n### Usage\n\n```python\nfrom liftover import get_lifter\n\nconverter = get_lifter('hg19', 'hg38', one_based=True)\nchrom = '1'\npos = 103786442\nconverter[chrom][pos]\n\n# other synonyms for the lift call\nconverter.convert_coordinate(chrom, pos)\nconverter.query(chrom, pos)\n\n# alternatively create a converter directly from a chainfile\nfrom liftover import ChainFile\nconverter = ChainFile('/home/user/hg18ToHg38.over.chain.gz', one_based=True)\nconverter[chrom][pos]\n\n# you can also specify an alternative website to load chain files from\nconverter = get_lifter('hg19', 'hg38', chain_server='https://www.example.com')\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Package for converting between genome build coordinates",
    "version": "1.3.2",
    "project_urls": {
        "Homepage": "https://github.com/jeremymcrae/liftover"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c99adb9c1796b270d07596799e7577198161da1b220d723eec299a21568cb141",
                "md5": "50c8227a722e8cfb5f1c3afc245be8f7",
                "sha256": "cee56c7545fe45bf63eb39d22c769480cac2db8d38a2299c3b95f28325b678a1"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "50c8227a722e8cfb5f1c3afc245be8f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 70487,
            "upload_time": "2024-12-03T17:53:21",
            "upload_time_iso_8601": "2024-12-03T17:53:21.363785Z",
            "url": "https://files.pythonhosted.org/packages/c9/9a/db9c1796b270d07596799e7577198161da1b220d723eec299a21568cb141/liftover-1.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f62562bf143cf92a666786828ef603f63020cb443df24a4a1283ef7018e85542",
                "md5": "016c09c3556e29b15440966099b83643",
                "sha256": "fa869bd8ceea616cc1c558e56cf796644b49f3430b69b1fafaefe87a8174bca8"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "016c09c3556e29b15440966099b83643",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1023711,
            "upload_time": "2024-12-03T17:53:22",
            "upload_time_iso_8601": "2024-12-03T17:53:22.686292Z",
            "url": "https://files.pythonhosted.org/packages/f6/25/62bf143cf92a666786828ef603f63020cb443df24a4a1283ef7018e85542/liftover-1.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f132f97c814a31b97e7475d4306527a349a83ef73faf0590518cee15448bb72",
                "md5": "fc049017f95ab039ee4f510163f13c0e",
                "sha256": "4fe42cd0feae4f84b3678f14e7aabb7bbc628beea302093de330790f4a44e949"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc049017f95ab039ee4f510163f13c0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1042001,
            "upload_time": "2024-12-03T17:53:24",
            "upload_time_iso_8601": "2024-12-03T17:53:24.544477Z",
            "url": "https://files.pythonhosted.org/packages/3f/13/2f97c814a31b97e7475d4306527a349a83ef73faf0590518cee15448bb72/liftover-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a629d9f8aea4d7669117204f767f1cdc0407726a436fb5b7452f39097926183a",
                "md5": "abced05e1536cbc1bf3ba8aaf583133c",
                "sha256": "aa689b4d48b6b20c16990a321f42036502d4b37ebea0159aa7450f51062f9267"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "abced05e1536cbc1bf3ba8aaf583133c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2277249,
            "upload_time": "2024-12-03T17:53:26",
            "upload_time_iso_8601": "2024-12-03T17:53:26.908192Z",
            "url": "https://files.pythonhosted.org/packages/a6/29/d9f8aea4d7669117204f767f1cdc0407726a436fb5b7452f39097926183a/liftover-1.3.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f096673e9785abf7b687ff7cf07cc8efbe75e76de788811f8800755454977477",
                "md5": "42e36b34f924ba4207035dabacf45f8e",
                "sha256": "1ff33b46d1cfcec2d8e81d8bc9b050b99c5a10dba57f1d9adc816828f56ee5cc"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42e36b34f924ba4207035dabacf45f8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2216225,
            "upload_time": "2024-12-03T17:53:28",
            "upload_time_iso_8601": "2024-12-03T17:53:28.133951Z",
            "url": "https://files.pythonhosted.org/packages/f0/96/673e9785abf7b687ff7cf07cc8efbe75e76de788811f8800755454977477/liftover-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69581fdc784a6e1a5a06918e1c778f54b2dbe3a47f946137aee634b65c48cf09",
                "md5": "bf6e5f797a2e9325d252b96adb5352fe",
                "sha256": "f41468ee675854d3a6c6ef821ffda763d79e1933a3e6ab5720e4f8fcabe7c40c"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "bf6e5f797a2e9325d252b96adb5352fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 90945,
            "upload_time": "2024-12-03T17:53:29",
            "upload_time_iso_8601": "2024-12-03T17:53:29.935552Z",
            "url": "https://files.pythonhosted.org/packages/69/58/1fdc784a6e1a5a06918e1c778f54b2dbe3a47f946137aee634b65c48cf09/liftover-1.3.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b593299c01cb83bb56986f768d5a0cc64f0c6175469bcfcec9dd06a53913b813",
                "md5": "43fde7317f42d3b1a85bf3065e6981ff",
                "sha256": "ea5fd1ea03c09584f5f3ff78d4da54f929823f3232f0b8553db8bd0951e4ccd8"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "43fde7317f42d3b1a85bf3065e6981ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 99933,
            "upload_time": "2024-12-03T17:53:31",
            "upload_time_iso_8601": "2024-12-03T17:53:31.443592Z",
            "url": "https://files.pythonhosted.org/packages/b5/93/299c01cb83bb56986f768d5a0cc64f0c6175469bcfcec9dd06a53913b813/liftover-1.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad95dca7653fa93f1563eccc5f10d9b3a98f3163df665e28adc67ced8591eee8",
                "md5": "c1939b36f1a18ddc2eb6e8d5a6a39fac",
                "sha256": "a1d87c522949579557decf086bff714fc3e7b801f8797258f8cf2e090df69f43"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c1939b36f1a18ddc2eb6e8d5a6a39fac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 70520,
            "upload_time": "2024-12-03T17:53:32",
            "upload_time_iso_8601": "2024-12-03T17:53:32.974929Z",
            "url": "https://files.pythonhosted.org/packages/ad/95/dca7653fa93f1563eccc5f10d9b3a98f3163df665e28adc67ced8591eee8/liftover-1.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df3c9f8b67654f43518a17675994115db7afc4f8c57d9c9a6be9f6b2bc707707",
                "md5": "cb4c2c12fcc80641a9cb0f410d28b988",
                "sha256": "b9ab1ebd07ac1a47b867ccb72a54c026311f7b8b80c3f560f81986e7a5b8fc27"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cb4c2c12fcc80641a9cb0f410d28b988",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1028101,
            "upload_time": "2024-12-03T17:53:33",
            "upload_time_iso_8601": "2024-12-03T17:53:33.960297Z",
            "url": "https://files.pythonhosted.org/packages/df/3c/9f8b67654f43518a17675994115db7afc4f8c57d9c9a6be9f6b2bc707707/liftover-1.3.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be10a6760b4a38ed81eb1da5dc1fea9a99ac9f6bdf21513542b45d8417fb6cb6",
                "md5": "0c9c747148496f6ed09a2e84d3cb8542",
                "sha256": "cf8780c78b9925d2684e4ff705db70a60c72104f92efe0fff8249fe90c18a953"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c9c747148496f6ed09a2e84d3cb8542",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1049868,
            "upload_time": "2024-12-03T17:53:35",
            "upload_time_iso_8601": "2024-12-03T17:53:35.815197Z",
            "url": "https://files.pythonhosted.org/packages/be/10/a6760b4a38ed81eb1da5dc1fea9a99ac9f6bdf21513542b45d8417fb6cb6/liftover-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea168e26cd6af64478b47925830aa4468ae60df930f65109726fb66733652e41",
                "md5": "8aa80e638bc0b69eac7f499724b083a7",
                "sha256": "de217c7cfd4f05c3584a0904083226558acc0746d1666336238192194932d589"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8aa80e638bc0b69eac7f499724b083a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2288517,
            "upload_time": "2024-12-03T17:53:37",
            "upload_time_iso_8601": "2024-12-03T17:53:37.897470Z",
            "url": "https://files.pythonhosted.org/packages/ea/16/8e26cd6af64478b47925830aa4468ae60df930f65109726fb66733652e41/liftover-1.3.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ecd9c37a5f0ad712797780f8531c532ea2e1beec82d2d936b30f27b9e394de0",
                "md5": "a1a08d94868c7f468a30062d2c547f47",
                "sha256": "3447c60eb01695b455a4ac88f475ba41e6dd5f62ef2f0d3a93197942beb62282"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1a08d94868c7f468a30062d2c547f47",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2231494,
            "upload_time": "2024-12-03T17:53:39",
            "upload_time_iso_8601": "2024-12-03T17:53:39.874121Z",
            "url": "https://files.pythonhosted.org/packages/0e/cd/9c37a5f0ad712797780f8531c532ea2e1beec82d2d936b30f27b9e394de0/liftover-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92c31913b87ed57d03ad9fdd2621bf52ce240c1576cbdb8e172df3a9c718cce6",
                "md5": "0be462ad8470c72c101715e7721f82ab",
                "sha256": "4419f72c2ddbbd9ac67d507fc34b4716b12ed687e334b1cf04a7daff78c07ece"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0be462ad8470c72c101715e7721f82ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 91160,
            "upload_time": "2024-12-03T17:53:41",
            "upload_time_iso_8601": "2024-12-03T17:53:41.549437Z",
            "url": "https://files.pythonhosted.org/packages/92/c3/1913b87ed57d03ad9fdd2621bf52ce240c1576cbdb8e172df3a9c718cce6/liftover-1.3.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2ac234f71a5b83bf75574fcadc83ababcc2fed23c2d8c62e9cdd64302aee792",
                "md5": "320be3eba99367811efef1e1707d8c28",
                "sha256": "2875126f03a289b49936e73376d4e43348e286f8bb8302018673f6787dea2320"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "320be3eba99367811efef1e1707d8c28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 100174,
            "upload_time": "2024-12-03T17:53:43",
            "upload_time_iso_8601": "2024-12-03T17:53:43.477383Z",
            "url": "https://files.pythonhosted.org/packages/e2/ac/234f71a5b83bf75574fcadc83ababcc2fed23c2d8c62e9cdd64302aee792/liftover-1.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb78954ded41c84acb51d59f36ff0b7036fecfa350e57af37a2971b0c1723be1",
                "md5": "ec6c028a26ab90695a426982c318f749",
                "sha256": "5a491ecdbb6f13afd8a5762ef08dff89dc8d7c84bb463dde70533d7c36533148"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ec6c028a26ab90695a426982c318f749",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 70917,
            "upload_time": "2024-12-03T17:53:44",
            "upload_time_iso_8601": "2024-12-03T17:53:44.606641Z",
            "url": "https://files.pythonhosted.org/packages/eb/78/954ded41c84acb51d59f36ff0b7036fecfa350e57af37a2971b0c1723be1/liftover-1.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fd0cc226a301863828cf14429607c8d3b35f0776e4f29835b3506890579d1c1",
                "md5": "7f24f3c379c1fafa34bc0510f289c37b",
                "sha256": "6ba9aa46c662e122b8a94ecb25d7c2a41beec7b249ce5d6086c2aa51507cd582"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7f24f3c379c1fafa34bc0510f289c37b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1030860,
            "upload_time": "2024-12-03T17:53:45",
            "upload_time_iso_8601": "2024-12-03T17:53:45.600027Z",
            "url": "https://files.pythonhosted.org/packages/6f/d0/cc226a301863828cf14429607c8d3b35f0776e4f29835b3506890579d1c1/liftover-1.3.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08de7f5b8ca9dea8a2ce712b905f17022cab10f1d19a60913029e9992dd2dbb2",
                "md5": "d78a8caa91b0a203cacdd89afad4bd82",
                "sha256": "92916988d2e61315ca70e62c8e2f81d69f36ad9bdb9c1ac7c2c289fb200c5625"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d78a8caa91b0a203cacdd89afad4bd82",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1055862,
            "upload_time": "2024-12-03T17:53:46",
            "upload_time_iso_8601": "2024-12-03T17:53:46.784987Z",
            "url": "https://files.pythonhosted.org/packages/08/de/7f5b8ca9dea8a2ce712b905f17022cab10f1d19a60913029e9992dd2dbb2/liftover-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec7695e699fd685347537237033c56f77cc31c1c58689edc8d6805509ae8ad91",
                "md5": "9a5f06b1c89d8a45ca282728204c771e",
                "sha256": "1554459bce017e18bdf4a3a7fd7953898f468155118cfef6754c24d393e96344"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9a5f06b1c89d8a45ca282728204c771e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2288403,
            "upload_time": "2024-12-03T17:53:48",
            "upload_time_iso_8601": "2024-12-03T17:53:48.455709Z",
            "url": "https://files.pythonhosted.org/packages/ec/76/95e699fd685347537237033c56f77cc31c1c58689edc8d6805509ae8ad91/liftover-1.3.2-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6cb48e9eb3f2f47388cc7c695606ee3316cf4435e6de2ec470951fd48334751",
                "md5": "900e8521bfaaaeb3e4aaae8b157a9541",
                "sha256": "83d3d2edfe1b1ce0ef3a19cb8a722feb9a6b5afa1a08a3fa5d5a423e13dc64d1"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "900e8521bfaaaeb3e4aaae8b157a9541",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2233753,
            "upload_time": "2024-12-03T17:53:50",
            "upload_time_iso_8601": "2024-12-03T17:53:50.436422Z",
            "url": "https://files.pythonhosted.org/packages/f6/cb/48e9eb3f2f47388cc7c695606ee3316cf4435e6de2ec470951fd48334751/liftover-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb013eecf303eb1a1bd660d1b0f1b30f9828c2ce679c3ef9756216dce4376c00",
                "md5": "2647bc0d023c06599a4c704b3ada6246",
                "sha256": "90eb587d0fbf4b342b8bd2b3f0b9b187501db66ac58adcc75d0ec4e9ceb997b8"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "2647bc0d023c06599a4c704b3ada6246",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 91639,
            "upload_time": "2024-12-03T17:53:51",
            "upload_time_iso_8601": "2024-12-03T17:53:51.863058Z",
            "url": "https://files.pythonhosted.org/packages/fb/01/3eecf303eb1a1bd660d1b0f1b30f9828c2ce679c3ef9756216dce4376c00/liftover-1.3.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1006e8229e1c664918dd021ea9c97092020ecce360bffc008f188771ebff8ab",
                "md5": "e1e123cca80a1552fdc6869fd26f0f0c",
                "sha256": "4ade54f3aca053ae1b4646fb8a3fd78a67bbd586c23b7afc75c50242a27dec8e"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e1e123cca80a1552fdc6869fd26f0f0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 100498,
            "upload_time": "2024-12-03T17:53:53",
            "upload_time_iso_8601": "2024-12-03T17:53:53.570939Z",
            "url": "https://files.pythonhosted.org/packages/f1/00/6e8229e1c664918dd021ea9c97092020ecce360bffc008f188771ebff8ab/liftover-1.3.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "913000a5adbf295017fe55dc655a476aae27eb3e69e9a8ce070709dde0cc1a87",
                "md5": "33a650319e449dc693671ce8ff974ba7",
                "sha256": "5237b623a2c2f9786748b49bb7f7eb7db2f6acfc5164ec263e0889cf6b9d27a9"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "33a650319e449dc693671ce8ff974ba7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 70364,
            "upload_time": "2024-12-03T17:53:54",
            "upload_time_iso_8601": "2024-12-03T17:53:54.610916Z",
            "url": "https://files.pythonhosted.org/packages/91/30/00a5adbf295017fe55dc655a476aae27eb3e69e9a8ce070709dde0cc1a87/liftover-1.3.2-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b463346853aba51cbb85d70718a6d14a517001792abd5d8345f0451779e2cb5",
                "md5": "e0ef2c63ebf6be6620ee1fef5833f23a",
                "sha256": "84ce57e853e7045c751ecc46ce8e93087d2436a09452861610ff22afb4cf04c4"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e0ef2c63ebf6be6620ee1fef5833f23a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1029376,
            "upload_time": "2024-12-03T17:53:56",
            "upload_time_iso_8601": "2024-12-03T17:53:56.522432Z",
            "url": "https://files.pythonhosted.org/packages/3b/46/3346853aba51cbb85d70718a6d14a517001792abd5d8345f0451779e2cb5/liftover-1.3.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "282624aba0f7a498e484e19b75ffc3b757c815a4a73f9b5803b4d9acc82f4f12",
                "md5": "b6c5d2baabcf9efd045c47cd58ae5db8",
                "sha256": "4d68688da466d23b08fb1ea32a4a7274e6bb4499a2404cd3c1313737fd85923f"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6c5d2baabcf9efd045c47cd58ae5db8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1052662,
            "upload_time": "2024-12-03T17:53:59",
            "upload_time_iso_8601": "2024-12-03T17:53:59.087888Z",
            "url": "https://files.pythonhosted.org/packages/28/26/24aba0f7a498e484e19b75ffc3b757c815a4a73f9b5803b4d9acc82f4f12/liftover-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27731f0b4142ab434ca0b6aa8b9721aff74052328c34e71d37b5c3caba32c676",
                "md5": "48b3eeb3c0f2d311092757a75be1f249",
                "sha256": "92bb954e19cc88d5eef718be945d185ea742a0b3b4138dbc0cf98d274ff5c302"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "48b3eeb3c0f2d311092757a75be1f249",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 2287925,
            "upload_time": "2024-12-03T17:54:01",
            "upload_time_iso_8601": "2024-12-03T17:54:01.024078Z",
            "url": "https://files.pythonhosted.org/packages/27/73/1f0b4142ab434ca0b6aa8b9721aff74052328c34e71d37b5c3caba32c676/liftover-1.3.2-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d215dd7c468bbc35cc37e3870864a1e0d437acacdf30685bd923f7965af57394",
                "md5": "c0a6b1fa478926fb628baa2e2f678ff7",
                "sha256": "8ab91d1c42f22e24ee0351aa50ab8bb51432e9c6755deacf35406fee7d2e84d6"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0a6b1fa478926fb628baa2e2f678ff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 2234103,
            "upload_time": "2024-12-03T17:54:02",
            "upload_time_iso_8601": "2024-12-03T17:54:02.217973Z",
            "url": "https://files.pythonhosted.org/packages/d2/15/dd7c468bbc35cc37e3870864a1e0d437acacdf30685bd923f7965af57394/liftover-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4c20ecf6a65adc86c8be7b62c2f9b7f410f0351b0526e45b77fe8433953d510",
                "md5": "5172e38642ceb6d81bdadeb99bbd292f",
                "sha256": "e30a6c97d4e6e25db2bb4614567d75a71cb3e5105ac5605766680a56e68d741b"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "5172e38642ceb6d81bdadeb99bbd292f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 91532,
            "upload_time": "2024-12-03T17:54:03",
            "upload_time_iso_8601": "2024-12-03T17:54:03.581726Z",
            "url": "https://files.pythonhosted.org/packages/b4/c2/0ecf6a65adc86c8be7b62c2f9b7f410f0351b0526e45b77fe8433953d510/liftover-1.3.2-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f30b4c16528f30518eeea0abeaab05d7bca8dabbed6b3231cd5c8df789e6c6c0",
                "md5": "8f5d4b0eb69b792d7de770c8b31c0b40",
                "sha256": "0ff640c4b800c0a3442661e553c189d2bc2ae8eb1c45c64defa045f5176e6b10"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8f5d4b0eb69b792d7de770c8b31c0b40",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 100515,
            "upload_time": "2024-12-03T17:54:05",
            "upload_time_iso_8601": "2024-12-03T17:54:05.264972Z",
            "url": "https://files.pythonhosted.org/packages/f3/0b/4c16528f30518eeea0abeaab05d7bca8dabbed6b3231cd5c8df789e6c6c0/liftover-1.3.2-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a472abc71e4740f16bc1f8a3d137f9b3d618b08cc6ab42308986c8abe9262f8b",
                "md5": "a7843815843fc5da7f1ca0bac4dc6491",
                "sha256": "4c098ef5ac3e84d9666fe4c85bcbbf29e2c69be1e10429e30437200bfa78c3b7"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a7843815843fc5da7f1ca0bac4dc6491",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 71555,
            "upload_time": "2024-12-03T17:54:06",
            "upload_time_iso_8601": "2024-12-03T17:54:06.228202Z",
            "url": "https://files.pythonhosted.org/packages/a4/72/abc71e4740f16bc1f8a3d137f9b3d618b08cc6ab42308986c8abe9262f8b/liftover-1.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "782c5c8312583cfe8765cef3f91e3d6ae675aeb5620d98ab7e033a26f7d38dac",
                "md5": "c21ccff397b9fff8065cc94f09c73c44",
                "sha256": "517553777aff45741e1732225fc51c20d6e76499dd53fa343710e13ec950864b"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c21ccff397b9fff8065cc94f09c73c44",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1034046,
            "upload_time": "2024-12-03T17:54:07",
            "upload_time_iso_8601": "2024-12-03T17:54:07.272768Z",
            "url": "https://files.pythonhosted.org/packages/78/2c/5c8312583cfe8765cef3f91e3d6ae675aeb5620d98ab7e033a26f7d38dac/liftover-1.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bc8c187a3d1375b3aef4ee05a97fdb49c373b6ec6fbeb6a6bae244239c7406c",
                "md5": "3ccd1ec9c4258ba78446543e0f89d052",
                "sha256": "fe1cace48c74df845f2acc8c70f9c98ae56779d2dc0ceb5cae27ea6f1eb51e55"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ccd1ec9c4258ba78446543e0f89d052",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1045434,
            "upload_time": "2024-12-03T17:54:08",
            "upload_time_iso_8601": "2024-12-03T17:54:08.621978Z",
            "url": "https://files.pythonhosted.org/packages/4b/c8/c187a3d1375b3aef4ee05a97fdb49c373b6ec6fbeb6a6bae244239c7406c/liftover-1.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baecdaee795734d5ab095158fcd03d8d3f35fdc32c971cf34ab453b19fced0ca",
                "md5": "1ddfe3f6dc06a97ac9b6e4a178780584",
                "sha256": "1c28c5008f5092b5f2b4528d6d99bea89d9f411f77066e5a1e27c8c1373cc259"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1ddfe3f6dc06a97ac9b6e4a178780584",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2263493,
            "upload_time": "2024-12-03T17:54:10",
            "upload_time_iso_8601": "2024-12-03T17:54:10.970947Z",
            "url": "https://files.pythonhosted.org/packages/ba/ec/daee795734d5ab095158fcd03d8d3f35fdc32c971cf34ab453b19fced0ca/liftover-1.3.2-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24f0a194ee96a761e6c96c3bd957007f14be81b36cb9475deb1ef1102cb9dad1",
                "md5": "94aa5138b3358129a254c98fffbcfc17",
                "sha256": "8a3d3e509f69198f4d7b76e73d113eae48f593c54728bf532ea32c25e59d5919"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94aa5138b3358129a254c98fffbcfc17",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2205439,
            "upload_time": "2024-12-03T17:54:12",
            "upload_time_iso_8601": "2024-12-03T17:54:12.245715Z",
            "url": "https://files.pythonhosted.org/packages/24/f0/a194ee96a761e6c96c3bd957007f14be81b36cb9475deb1ef1102cb9dad1/liftover-1.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8984c758659f4ba5e403e44c00526805b0377fe095a8339fb2799d0188d97cb",
                "md5": "07acb424061f454783533b6b3989bb00",
                "sha256": "3bac7d6e24c631e3cc91482c71304431211c32614a331b882fe94534394f8877"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "07acb424061f454783533b6b3989bb00",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 91416,
            "upload_time": "2024-12-03T17:54:14",
            "upload_time_iso_8601": "2024-12-03T17:54:14.061405Z",
            "url": "https://files.pythonhosted.org/packages/c8/98/4c758659f4ba5e403e44c00526805b0377fe095a8339fb2799d0188d97cb/liftover-1.3.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcfc727eae0d0679eea7b99f27c43ee0b7dc8e53e95c824a864adc071dd874c8",
                "md5": "4fbd7b7d16b971761b5ae949782f731e",
                "sha256": "b39c4f6bc121ac471cddb2c24d03ac142c386a76ea8ac6753b00d9c4b6d45684"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4fbd7b7d16b971761b5ae949782f731e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 100476,
            "upload_time": "2024-12-03T17:54:15",
            "upload_time_iso_8601": "2024-12-03T17:54:15.438553Z",
            "url": "https://files.pythonhosted.org/packages/dc/fc/727eae0d0679eea7b99f27c43ee0b7dc8e53e95c824a864adc071dd874c8/liftover-1.3.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aa0979945f86633ddf30557ab49bd2090003f507f8fa5db1cd3b4d0ff94d657",
                "md5": "c0ea687fddd3b0a3873b88683fe879f8",
                "sha256": "d601af903844f6bf01d9e12d2226388a390c2f1ab1ca6d154315917bd79190c0"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c0ea687fddd3b0a3873b88683fe879f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 71026,
            "upload_time": "2024-12-03T17:54:17",
            "upload_time_iso_8601": "2024-12-03T17:54:17.146283Z",
            "url": "https://files.pythonhosted.org/packages/7a/a0/979945f86633ddf30557ab49bd2090003f507f8fa5db1cd3b4d0ff94d657/liftover-1.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86ceef698f8f15e78571bfbf6dfff72e28c49e387f3a4779f2f804e5cba8a847",
                "md5": "78a2a38f9e69bbcdc8e018e358c769af",
                "sha256": "d952b9f971f1d21e6101bf395187d7192d284e29b4d89359651d4d72dfc29b0f"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "78a2a38f9e69bbcdc8e018e358c769af",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1026576,
            "upload_time": "2024-12-03T17:54:18",
            "upload_time_iso_8601": "2024-12-03T17:54:18.229514Z",
            "url": "https://files.pythonhosted.org/packages/86/ce/ef698f8f15e78571bfbf6dfff72e28c49e387f3a4779f2f804e5cba8a847/liftover-1.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66e305e25dc61d9e646677020198e9433d67d9c6f2c37e051ab832523e4ae993",
                "md5": "bd17d11f03ad9e621222020ecd8c495c",
                "sha256": "7570a37ce3d29f2566a44c9e1114e5bc8a76f0d2e1bb3f205396ea04d002a528"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd17d11f03ad9e621222020ecd8c495c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1044681,
            "upload_time": "2024-12-03T17:54:19",
            "upload_time_iso_8601": "2024-12-03T17:54:19.522225Z",
            "url": "https://files.pythonhosted.org/packages/66/e3/05e25dc61d9e646677020198e9433d67d9c6f2c37e051ab832523e4ae993/liftover-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac0bc0b7b938b67c34a659d9e8dee6e7ccd7c0a8a54c904d56b64b6f94495611",
                "md5": "f06ef3329e30ff1d0f0f9a4f977d0414",
                "sha256": "3a6ed897014feb86e1080b2622abf6b51611596a9fc38c84e859bf2337fc5eaf"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f06ef3329e30ff1d0f0f9a4f977d0414",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2279462,
            "upload_time": "2024-12-03T17:54:20",
            "upload_time_iso_8601": "2024-12-03T17:54:20.827804Z",
            "url": "https://files.pythonhosted.org/packages/ac/0b/c0b7b938b67c34a659d9e8dee6e7ccd7c0a8a54c904d56b64b6f94495611/liftover-1.3.2-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "509f33ac229328eb16cfa697f5bf015ac6d48dbba2c05824c5b29dd0a7f49d96",
                "md5": "87d4db819a843b029942a2257ff4b575",
                "sha256": "995912e05bd85ac646261926bf0f773dbb7922f65bdff1ab58dc5fb0a8f53ea0"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87d4db819a843b029942a2257ff4b575",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2219638,
            "upload_time": "2024-12-03T17:54:22",
            "upload_time_iso_8601": "2024-12-03T17:54:22.189856Z",
            "url": "https://files.pythonhosted.org/packages/50/9f/33ac229328eb16cfa697f5bf015ac6d48dbba2c05824c5b29dd0a7f49d96/liftover-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d7af4e714ffa8bf2cd996aca2c72c5366f24131c25eb8619bc9c61f6bc3e220",
                "md5": "610f8d592906bb446b331964818c7d1e",
                "sha256": "c23f6becf02b498e8de2531081b6818e778eea53122439cb734fa60a156eb79e"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "610f8d592906bb446b331964818c7d1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 91417,
            "upload_time": "2024-12-03T17:54:23",
            "upload_time_iso_8601": "2024-12-03T17:54:23.337121Z",
            "url": "https://files.pythonhosted.org/packages/8d/7a/f4e714ffa8bf2cd996aca2c72c5366f24131c25eb8619bc9c61f6bc3e220/liftover-1.3.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "860d568276df89840a1517544943f9d154f91a4c4e840787f7282cb4459304bb",
                "md5": "4429d4468b7470e8ef5a5447cf225c25",
                "sha256": "19f37e423d61d77d6869f2e9dfbc2bc0e4d2fbac419804e437e1af448968284d"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4429d4468b7470e8ef5a5447cf225c25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 100405,
            "upload_time": "2024-12-03T17:54:24",
            "upload_time_iso_8601": "2024-12-03T17:54:24.920592Z",
            "url": "https://files.pythonhosted.org/packages/86/0d/568276df89840a1517544943f9d154f91a4c4e840787f7282cb4459304bb/liftover-1.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74763414da52d1302ec9fc21daa73cf2529e226af9008146fae2a6a3bf34352a",
                "md5": "cdddc81772feddeff3c92d1f601dd698",
                "sha256": "38ca61efcbae850058735649230fd2dc68e69b8a3fd5d67b637aa61c37b77eea"
            },
            "downloads": -1,
            "filename": "liftover-1.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "cdddc81772feddeff3c92d1f601dd698",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 219136,
            "upload_time": "2024-12-03T17:54:25",
            "upload_time_iso_8601": "2024-12-03T17:54:25.905816Z",
            "url": "https://files.pythonhosted.org/packages/74/76/3414da52d1302ec9fc21daa73cf2529e226af9008146fae2a6a3bf34352a/liftover-1.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-03 17:54:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jeremymcrae",
    "github_project": "liftover",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "liftover"
}
        
Elapsed time: 0.57470s