Skip to main content

liftover

python liftover utility

Converts point coordinates between genome assemblies. Inspired by 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

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')

# this also matches the core pyliftover interface
from liftover import LiftOver # synonym for `get_lifter`

lifter = LiftOver('hg19', 'hg38') # or LiftOver(PATH_TO_CHAIN), but not LiftOver(filehandle)
lifter.convert_coordinate(chrom, pos)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

liftover-1.4.1.tar.gz (233.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

liftover-1.4.1-cp314-cp314-win_amd64.whl (188.5 kB view details)

Uploaded CPython 3.14Windows x86-64

liftover-1.4.1-cp314-cp314-win32.whl (180.5 kB view details)

Uploaded CPython 3.14Windows x86

liftover-1.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

liftover-1.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

liftover-1.4.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

liftover-1.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

liftover-1.4.1-cp314-cp314-macosx_11_0_arm64.whl (156.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liftover-1.4.1-cp313-cp313-win_amd64.whl (185.4 kB view details)

Uploaded CPython 3.13Windows x86-64

liftover-1.4.1-cp313-cp313-win32.whl (177.3 kB view details)

Uploaded CPython 3.13Windows x86

liftover-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

liftover-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

liftover-1.4.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

liftover-1.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

liftover-1.4.1-cp313-cp313-macosx_11_0_arm64.whl (155.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liftover-1.4.1-cp312-cp312-win_amd64.whl (185.7 kB view details)

Uploaded CPython 3.12Windows x86-64

liftover-1.4.1-cp312-cp312-win32.whl (177.3 kB view details)

Uploaded CPython 3.12Windows x86

liftover-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liftover-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

liftover-1.4.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

liftover-1.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

liftover-1.4.1-cp312-cp312-macosx_11_0_arm64.whl (155.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liftover-1.4.1-cp311-cp311-win_amd64.whl (185.1 kB view details)

Uploaded CPython 3.11Windows x86-64

liftover-1.4.1-cp311-cp311-win32.whl (176.5 kB view details)

Uploaded CPython 3.11Windows x86

liftover-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

liftover-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

liftover-1.4.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

liftover-1.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

liftover-1.4.1-cp311-cp311-macosx_11_0_arm64.whl (155.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liftover-1.4.1-cp310-cp310-win_amd64.whl (184.9 kB view details)

Uploaded CPython 3.10Windows x86-64

liftover-1.4.1-cp310-cp310-win32.whl (176.7 kB view details)

Uploaded CPython 3.10Windows x86

liftover-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

liftover-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

liftover-1.4.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (993.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

liftover-1.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

liftover-1.4.1-cp310-cp310-macosx_11_0_arm64.whl (155.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

liftover-1.4.1-cp39-cp39-win_amd64.whl (185.1 kB view details)

Uploaded CPython 3.9Windows x86-64

liftover-1.4.1-cp39-cp39-win32.whl (175.9 kB view details)

Uploaded CPython 3.9Windows x86

liftover-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

liftover-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

liftover-1.4.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (993.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

liftover-1.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

liftover-1.4.1-cp39-cp39-macosx_11_0_arm64.whl (155.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file liftover-1.4.1.tar.gz.

File metadata

  • Download URL: liftover-1.4.1.tar.gz
  • Upload date:
  • Size: 233.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1.tar.gz
Algorithm Hash digest
SHA256 4fdb242fa57c89d813cb45b0fe73d896debaaa95678a4246515002f04a387ddd
MD5 9f3773383047cdaa853ace11f48ee098
BLAKE2b-256 65f4ed067df1ba44d9df08ac6af5dae90375859ca7ffdc93836e32530a0f63b6

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: liftover-1.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 188.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 16481978f3c2300962b8c5bbcdcb7d36ef2807871954daef980820a191705edf
MD5 e383fdaf819ea8b52c9973dba2f394fe
BLAKE2b-256 04d7ebf6f4f932ab7b7948e89204e4823be302c4a3d4a52b0b7c6ebaa99aea16

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: liftover-1.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 180.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 833f1c1671997f9c60d69025f79ba28795bdcbbd260f85c4bcc0ab601264fcb3
MD5 55056d7f87be18ffaa139360d9cd1564
BLAKE2b-256 beae997b0b1ae0f57e587028d920b9084a32426d9f534051d42b258c9da1d6cd

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0c986ea370650ec454e9aadf7a35007ce049d9209f7a13280e74d343023edd0
MD5 66b85a73487e96fafe1d12781b9f0f4a
BLAKE2b-256 0932053dbb0cc7ea5517de309dd19d014ee02f4a447a8994fa3fed065452b780

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 074b99885cc559ae8ef294a9d66acabf6aef6f916edfbbac35d09712ba20f009
MD5 788842d3c0758f3d1f432da0a04fa4ff
BLAKE2b-256 3d326700c882af1a2d2fae94b761856b5300e160dc3a55e91cea1202fe17fac5

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50140ccf186cb1711c196282de6acb75efbcb91b197a46b666882ad60706636c
MD5 59e29e8bd39cdf9ab3775aa0d268485b
BLAKE2b-256 890aa515d4f8507f34857f01b90d289632a2c0301120341df0df8a6d5f60d7b1

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5730dbd4e4d2a780edf1a259b16209822821187766dbf0a14a636d31050c81e9
MD5 9ea4ba76544a1bb6586320ddb66477da
BLAKE2b-256 d78ccf8cfd21f782a1f5db850fc674d308ee45a3df17d3c0683c2ccc321a1581

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b978647b21846301a2f2f58cdbf27991cd97b4cbe0322f65dc786f64b343fd97
MD5 7097e2a2720c66cd905b3c404177d350
BLAKE2b-256 ca6d8d07ef47d7dfdce76d0b75207d141833d5332656e18896c71a5aa5505c0e

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: liftover-1.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 185.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 16d623a366ec6e97c0b8f2ea1e63691b1a052c7ad5ae9a119a237da98c8917c7
MD5 08696719fa82b8d52d639c336d58fa05
BLAKE2b-256 e25a226dce759dedd9e2318a415f88daf8527fb092f9378d13a38681a6983c13

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: liftover-1.4.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 177.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e384c3a7aa63ccd70150bcf63fe8a9eb0680f547d5d03c6c2da869272c55d0a9
MD5 02e28ca4cb2b1536a0a8c2e638445366
BLAKE2b-256 cbfe92d25db0dc289a5f1a69fcdad8e4f82760e6f723f732029c34039fb1111b

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37b43360bc38a62124f4049b985c92d9eb505d0f1d026cce7d9683fc25cdf528
MD5 087342c7cf4071e4f0cf2bc48bf7d8c1
BLAKE2b-256 587c9631c585f55657bc76dfffb3cbd8fedea021f3b928c723c08bf5f81569ed

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6bbc9d19ee01ece2273938433cc682d9d19f61a5ec0bc179fea274ea3b3c7f6
MD5 f0e1a2d8e6a3e2172019322d8756165d
BLAKE2b-256 baebc20e3073144bc7bb3d2b68d40927e0805c2dd52bd1a1e1f005dacc3a5373

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3dac55732f3a1441f7a72d6c2ba151f67c6e1d7b2b92eaccecec5c20880ccdc
MD5 605e15d6cb164228201300beb7f212b4
BLAKE2b-256 36507d46206d3627310273de6723dc80162a0c15c829648995a71897a7994487

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 984746317b343248114f66a0ca47f6b73a7fefa845729c98b6d959a3dafd8e5a
MD5 7f04a4a5b6c9848bea0e242c6ef2a73a
BLAKE2b-256 6d93f2e0e91abab2fd159be602a8c7e1062909446e454c9fdb9b8cef7307f9dc

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e9198445e47595c02480216c374126f6fc85fb7cb0fce2975da22ba8066e69f
MD5 f7e765b719dc5a26403676e9d583000b
BLAKE2b-256 aefbbcd73257f6abce9344cf07d4770e50a159bbb03b6cf5051f5de29fdd34d6

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: liftover-1.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 185.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 02244a7687fa4ed4649b89fe5c39d7becd2fcd72f7286cf5cdc6e4ac28d706b2
MD5 cd034f1b6bdf2014c81e793bbd6e5165
BLAKE2b-256 3cd8e62b948ee73740688b79140a50379d9576736e15db280aba0c54c65da190

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: liftover-1.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 177.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0e0c7258d1ed29ed2e92fc87f55c03410fa3e9a8529fe977e486f7b7863dd61b
MD5 2e82600de964ffc50774a632597768a4
BLAKE2b-256 9d01e4b559f647cb42cf1577b3dd1a3a5d732a7b2474c623cb2ee1f082bf6634

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8cd33faaa99d47927ce96eb8a922a58ed779a72f20532acadfb92f0bf3ec959
MD5 008a1d5e7c53e748be852fd0ae2aee33
BLAKE2b-256 d29f25018d96466c152d45ae84668a6d49d4e9c25ea7685b0633c7f052f5e887

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6d6d5e0949c70bd904d0067fd3fbd59f8dd950fd0eb8433d687de469ee09cab
MD5 9a2506f0a3889c04d83b7dfb640b1297
BLAKE2b-256 3c6a6cc4ea076d86c66606fc7e27802409cbc69d2ff0532ea4c9025fdb44bb05

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c808b45eb30b0e8a043e7fde34d010aeffd30351e5385bb69b9be0f231c9f376
MD5 a3b1fb8074a8aa33307add274b59962f
BLAKE2b-256 8873ea16e19fd8129ea0e61c7e483e02b54c347d2c42af6808ac1bc811a19cfd

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e5227febc65ad5ff9c1bf07e242144cceed9e3444d9441b2f2594b09e859f093
MD5 c3f1ad6b7eacfba3f17dd6ad64b7bf58
BLAKE2b-256 f978ca643932cf323aaebcbecef177467a87592b76a43f7194c20a836335c073

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d43323c11fac2fb889ba2389858ee5d612a62583fc118c355c65dfeab1dd3770
MD5 98986eeacdfa2052b16a143f1008c8d5
BLAKE2b-256 5df4d02c670b8512292f1eff7085b80ed1325d2722b0e114605cbd137a25ed9f

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: liftover-1.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a5a42dd3c16ed57d9b73c0b7723af9ad57f598d154743e5e33dee3715118940
MD5 b7ceb8327eeae7ab67198e7c4645342e
BLAKE2b-256 63befc7fd9fda182f66c8372aed145ba3089e68e352d5718cf8327db9bdc4799

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: liftover-1.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 176.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8b1c78fc0c62a7c79ebbec568180fb0ccee793614a474f36b0f959aed58c2b92
MD5 d36ac61c30438385b04b927c6764281e
BLAKE2b-256 6770447faf7955c29f1602b6761a5a13bfa144abbd7647129deb40742f903ef9

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8eb970b86a79ca4e5f0b02e3312ff669dbcfcb520068d4ad68d381d33faea24
MD5 9fae7633e65f27199d3764c4188b5a11
BLAKE2b-256 1918f51caba82a9f8d61a38d7568abe1a9f78931be0886711c4646f445d1d58e

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51343ff70907229552554fd17b8c55850f4dd7be4c38bed946f6ccd4dcc5355c
MD5 78860aa1ebc05b55f26535023881c06d
BLAKE2b-256 900a7110ce0b60947d343a79b28ac9278948e1d09d332395c553ba2fb72b270d

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9121434ff54ec1c6d7f6c86841e84033b0da2eeed140aacb9d5789a084d0075b
MD5 406905c7d8611129733953b6a4bb7fa2
BLAKE2b-256 299908f8761d625ddc326ed541f6c5fd904de44d7b8abe9ec7632ebf66cb50fb

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e73a92d984cca1a8de795ec96966246b8cd26e9aeba63443398da28881ef7293
MD5 fc8d6405a175ce4bd57089063aef8613
BLAKE2b-256 dfa8fc1578dca09e16acf42313f0b9485c06dbd864fcdcabd7a0dbcbd1c49b45

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5d2f937b9f7b16bd1a000db9d23432ae550dae927612887f8a486221cb0b113
MD5 e80129ebfd1980a6fd8b08b81a8d5645
BLAKE2b-256 ec2e886e068c89e25cd7bdef57af85899a8e5fa6be01f8dfd8b1c287e6597f1d

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: liftover-1.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 184.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8894c6551243f70e37f4c7c9650ebb25fd797cad8c33fe19da21486239b40ec
MD5 220b025ed61391b202109b211de49ed6
BLAKE2b-256 e552d9dbc59362011f137841cbdf4c8c3428670dbe22379dd74a74cc6756668b

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: liftover-1.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 176.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9fe025ce770911cac712b5a6b3e8f7dc1a5e7ab7048aadbce3b27669ad2522d7
MD5 693b4e3988cce5ff233eaf2a32299415
BLAKE2b-256 62430929ed3ad793e1ba7770375456a542c66e1f0047441a75800f1f896bcc01

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3df0667fc555cd088c1c8ebfa2f9b5201300536754585901ac5658c289d81400
MD5 cf11d74b3cb3a9ff74b765af4600e4c9
BLAKE2b-256 1e8cdc7088f03b971348d8be2fbef85e5227e0c03731a9133794041db5552ce7

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c528db928c2de2c49f1ae91bc196114b85a5969c8b3b1b19f74306926eddf7c
MD5 81e3ec7bb2f9608a00db818bb6f07a7b
BLAKE2b-256 f82386fe01ac4abcc0ccd73eab0f67f2e39f1ca33ee51b909e94530ca5779a37

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f54be6d79099817dafe06f087d8e0d27be457b2ab2a036d4d9a6c2ffce34623
MD5 7d3c11e9fc871f8fd7dc01d26ab5fef4
BLAKE2b-256 68f20bf366cfb0a78db1e084fcaaebde30dfdd7b6376a7cc205dd2f4c6c87168

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9fc80836f9d46a6b0666e1a4549b94d8dc2efa6c93ba27b4a9c67fa70e31b861
MD5 197ed25dd4d1dcd2148752ff5d6873a4
BLAKE2b-256 20fad251614c0057c3c138c0e01e8c300c6dec1fb3fe88972998adcd198cf610

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fa071334e4e65e0227ef44ad553889e754afdfeb108d6dac4b98d3ec3e0824b
MD5 e8c5d2e8af39e53df59a4254c6e83c11
BLAKE2b-256 5a8cb800c39e95787aaae4b52fbbc685e4c0a0ddf0f6c35ddca5688e4a38cc7a

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: liftover-1.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cc00edf0fbe2bd8c406fd8c164206dcc4e1dc3dcafd4e6ae9276bba881576f93
MD5 c021b2c0c747666b31fe9c521b2bebb5
BLAKE2b-256 dda22450a0e737d2925212a7e64999f2b43d6096df54fd58d07519a7132d925b

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: liftover-1.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 175.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liftover-1.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6202e6e12fc21820d3a3f880da9a29028db31f4688e6194d559bf7ee477f752c
MD5 82c0a3f25267012f64ba217f9309b717
BLAKE2b-256 691842633883bac33ee114d0f8fd2ef7ef786e30d79d4c028d5a91909812b23e

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 039b2c24c5ebc60b1e2a1894f266d37a152ef9dc7c10ccfe81552a43c77b25b2
MD5 ee7e0ed7c1a464715b940e9a89bba64d
BLAKE2b-256 7beaa4a66265790bbfd13ed687dd2b192fb115ad25e1478f1f95d6960a7b9ae1

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 273dd7b148d3c287a22a0bc81fee75054fe609bdcadec604592247d93c1e5ee1
MD5 4da3d397e740857243adb67575d45d98
BLAKE2b-256 624e38264403fc6d8447c02efbbc6fc47814403e199ebcc94a60c02e5df9d403

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94255c29f0589fa5ef51df9783350c669dd8678dbc7709d508bb61386df5ab87
MD5 09118b1c9944129cf8a1cf375d3606a5
BLAKE2b-256 7e7b60c39ada57f02a674fe65d8a62608d5379bbe02d133da321d5eaaead5663

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 90faea72a53e1d84e5077395e79906114e33c027a55c3153e09a99b2032c76f2
MD5 c029544e39569387b683d61f756cd0b8
BLAKE2b-256 c46ba9cde741e1e5d5e9605cb3c91a3e28b4500994c4bcab91e56c848d865389

See more details on using hashes here.

File details

Details for the file liftover-1.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liftover-1.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b77d78476719d3de153c1c069e1072027dbd4c76fc61abf63fdfd44f2e06380
MD5 35785af59542c05b681416cf13df9922
BLAKE2b-256 8d42dbf56a9832d09b5ae2226ae4998a0f04c8d921d3548b01eeeca9ae6be6ac

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.4.1 This release

43 files

1.4.0

50 files

1.3.3

50 files

1.3.2

43 files

1.3.1

36 files

1.3.0

36 files

1.2.2

36 files

1.2.1

36 files

1.2.0

36 files

1.1.18

36 files

1.1.17

36 files

1.1.16

36 files

1.1.15

36 files

1.1.14

1 file

1.1.13

1 file

1.1.11

1 file

1.1.10

1 file

1.1.9

1 file

1.1.8

1 file

1.1.7

1 file

1.1.6

1 file

1.1.5

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.0.2

1 file

1.0.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page