Skip to main content

Cython bindings and Python interface to Tantan, a fast method for identifying repeats in DNA and protein sequences.

Project description

🐍🔁 PyTantan Stars

Cython bindings and Python interface to Tantan, a fast method for identifying repeats in DNA and protein sequences.

Actions Coverage License PyPI Bioconda AUR Wheel Python Versions Python Implementations Source Mirror Issues Docs Changelog Downloads

🗺️ Overview

Tantan is a fast method developed by Martin Frith[1] to identify simple repeats in DNA or protein sequences. It can be used to mask repeat regions in reference sequences, and avoid false homology predictions between repeated regions.

PyTantan is a Python module that provides bindings to Tantan using Cython. It implements a user-friendly, Pythonic interface to mask a sequence with various parameters. It interacts with the Tantan interface rather than with the CLI, which has the following advantages:

  • no binary dependency: PyTantan is distributed as a Python package, so you can add it as a dependency to your project, and stop worrying about the tantan binary being present on the end-user machine.
  • no intermediate files: Everything happens in memory, in a Python object you control, so you don't have to invoke the Tantan CLI using a sub-process and temporary files.
  • better portability: Tantan uses SIMD to accelerate alignment scoring, but doesn't support dynamic dispatch, so it has to be compiled on the local machine to be able to use the full capabilities of the local CPU. PyTantan ships several versions of Tantan instead, each compiled with different target features, and selects the best one for the local platform at runtime.

🔧 Installing

PyTantan is available for all modern versions (3.6+), depending only on the scoring-matrices package, and optionally on the lightweight archspec package for runtime CPU feature detection.

It can be installed directly from PyPI, which hosts some pre-built wheels for Linux and MacOS, as well as the code required to compile from source with Cython:

$ pip install pytantan

Check the install page of the documentation for other ways to install PyTantan on your machine.

💡 Example

The top-level function pytantan.mask_repeats can be used to mask a sequence without having to manage intermediate objects:

import pytantan
masked = pytantan.mask_repeats("ATTATTATTATTATT")
print(masked)                 # ATTattattattatt

The mask symbol (and other parameters) can be given as keyword arguments:

import pytantan
masked = pytantan.mask_repeats("ATTATTATTATTATT", mask='N')
print(masked)                 # ATTNNNNNNNNNNNN

To mask several sequences iteratively with the same parameters, consider creating a RepeatFinder once and calling the mask_repeats method for each sequence to avoid resource re-initialization.

💭 Feedback

⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker if you need to report or ask something. If you are filing in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation.

🏗️ Contributing

Contributions are more than welcome! See CONTRIBUTING.md for more details.

📋 Changelog

This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.

⚖️ License

This library is provided under the GNU General Public License v3.0 or later. Tantan is developed by Martin Frith and is distributed under the terms of the GPLv3 or later as well. See vendor/tantan/COPYING.txt for more information.

This project is in no way not affiliated, sponsored, or otherwise endorsed by the Tantan authors. It was developed by Martin Larralde during his PhD project at the Leiden University Medical Center in the Zeller team.

📚 References

  • [1] Frith, Martin C. “A new repeat-masking method enables specific detection of homologous sequences.” Nucleic acids research vol. 39,4 (2011): e23. doi:10.1093/nar/gkq1212

Project details


Download files

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

Source Distribution

pytantan-0.1.3.tar.gz (139.3 kB view details)

Uploaded Source

Built Distributions

pytantan-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytantan-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (262.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pytantan-0.1.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (210.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pytantan-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytantan-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (262.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pytantan-0.1.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (210.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pytantan-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytantan-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (262.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pytantan-0.1.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (208.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pytantan-0.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytantan-0.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (262.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pytantan-0.1.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (208.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pytantan-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pytantan-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pytantan-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (201.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytantan-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl (235.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pytantan-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pytantan-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pytantan-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (200.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytantan-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl (233.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pytantan-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pytantan-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pytantan-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (201.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pytantan-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl (234.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pytantan-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pytantan-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pytantan-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (201.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pytantan-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl (234.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pytantan-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pytantan-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pytantan-0.1.3-cp38-cp38-macosx_11_0_arm64.whl (200.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pytantan-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl (233.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pytantan-0.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (340.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pytantan-0.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (308.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pytantan-0.1.3-cp37-cp37m-macosx_10_9_x86_64.whl (233.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file pytantan-0.1.3.tar.gz.

File metadata

  • Download URL: pytantan-0.1.3.tar.gz
  • Upload date:
  • Size: 139.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pytantan-0.1.3.tar.gz
Algorithm Hash digest
SHA256 b1f8addeeb7955a1a7ca57f08415bcc7a36f95f30d23d477f6075d2cce025c4a
MD5 a05a1fac0df83b96a912c55e1bc2a54f
BLAKE2b-256 d12111330316d46a65ecdc06ec14af0e3435d73bba9492ac455ea669d3076c82

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5a6b36d860a6713563178d66e3c5e096c9d1652b631f32062f9d7bd036954a6
MD5 5571b69d762248b4cbd6c2ac9be0c970
BLAKE2b-256 91b36197af159c63d2fa03fec969d3ee8d80c9865cf95601163683797047801e

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 360358e22d2798fe8ea1c95da41ad0b81fdba6244d12532727cd23c7db49d53b
MD5 df22c3311ecdef38348da92e1cd37eb8
BLAKE2b-256 ac6805d3ef15e5febce488a03f1f01d27a09a4e48952404cd700c941af9879c8

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dfbf76740153e2476f63a61ab0e2141e557eb5b5120f9a01c6dd8b1205482146
MD5 70d2fbc3236b764aa8671dfaeeaa8da0
BLAKE2b-256 baf5bab726caa02787a5d3a69cda697b6f0f37f0e2b8670ed7a3bd94b7d1b3ff

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c750d82632b2b4dee8a45a9ad56d5df59ff91d519b0a12c678c25cfa20c66048
MD5 a46dfe3916516a2efcf95ddcf9987f48
BLAKE2b-256 0aff87d67de8b9f660851eba49d73a8fbefb84c67922373fc9403ee482431617

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4762ae0fce27d74b39b58a6b46146ef631568a4a52d1749c73cebb1975e6ae60
MD5 5cf5d8b0d06f71ad70eea5953a5219d6
BLAKE2b-256 74cfc697174d6ee129346dda32b75d804d349b48139dbeb17546a45ec30c5146

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a34c03509ed3779f58017decd958983fcdb21780827d9092349482b58c3aa45
MD5 c2d9449d5d7d7eba5a9e5d7118075001
BLAKE2b-256 d8b173e0ae5c1eeb780a44c093df855011f7042ec6eca1882d1e191ee0b1f090

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7b3d8b4858443608a7883496316e6f072aeb9ac211b911fbcc501b0fbc4d6ac
MD5 4ff7dc5794b520b7556c56322a3bef1c
BLAKE2b-256 657b8218338bcc4944bd7d2f7cef0c5d30ea04640585a12ed508249d7841dd15

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2ea5e8e3c6e801cdce1f387a020be744ffe96746456e5317d246a64b11aecd3
MD5 9c612e7b5c40dd35af7ff80d4feb558c
BLAKE2b-256 e17e038157471bd925b08db636d1dd3df8b0005f5a49eedfb59ab31fbf9413d3

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95ab1f049eb915db617073513bac1a4d791c2d6e973ef334309f7f4371b7b942
MD5 889765c4425fdf491b5f1e0e60136699
BLAKE2b-256 6621f2140257c30bd92371dad864509ef915199c22d1edb03eaf3e27d1b816eb

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8edffe3446cf06b056091cf47f0aecfd40fde010d2cb29209723587ab47cc85
MD5 8215ff8be6378003e971132cfdd2488c
BLAKE2b-256 4a3eaf5b5a1f10dcddce904bc42976e4beb1d576c74406bdcb0c7ef43a01e718

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 609090a619b5a1552263102433ebdf0585c7372a1ce772bc6fbe23a2c5794877
MD5 560996c63511f4bfa8a19461302de3b4
BLAKE2b-256 9f35e78896935b0c7634ab3c39666c37e722f2d384f2fb0fe49d9b27e9051d8c

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85d70b416a5db0421308819b290bf1a1a3e8d9a0b330e523a8e3142941f27e6d
MD5 ebd59779d51d831819404d0a345066aa
BLAKE2b-256 98ca688a1a80a332ecb2401c0a975f81d5caf6b9272c72e0169c0d2b70a5fa52

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 571258fd03d26db9ae778a959acd6809133d847281a47f6d4e0c026c28d86587
MD5 6e77b0cf3de3edcd63294b35c95324f3
BLAKE2b-256 4b451e662783234953385060a9028ff0c0c32b7ecf9bc082337b4fc58e95889c

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e9fa88cd54fd28fe996c6690051fdccd6212a4bb53917d8edd987d70726d56f
MD5 dc868697c11a89a0360a312c61fff6bf
BLAKE2b-256 a26d6ba605df623514cd3335b4c7d7208bcfdfa6ff7692b1a60d221f0f7d12df

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 042bc4138101854af5331b56ac9560fe34a71509df1c29ae8b32ce4fc3b8b2d1
MD5 b2593a278dbb7e70b2dd892cd0067f16
BLAKE2b-256 2f956aefe80250f6fbe83339b20625af29f2fe66c76e8df4cd23d23ef88f66ce

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b0cf3eb26d5510b14657bc3fef4c489b985d6e7f2c0c11e83f51fc7a7f2d648
MD5 5887bfc65376a180d74c56bf91becd0d
BLAKE2b-256 fcab0b78b42c180dd8c20785b3402e8371c61c0b356d8be0f13b59087b267093

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f0c370767d955c9b4fbb252cac0e419e0a17e761157546118255ba8e47d1fe5
MD5 df190bb58a2039d41124a77b8ebc5a81
BLAKE2b-256 018315167305eeb4ffa8aca949030f6a9ef5c9ad579f783ab407425c3905f70f

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45d9befd165622f18ed18de23140726b92a335e39515aa282e3bf2a83807bd65
MD5 23aace769caa68948cedc0dc6ea1f2c7
BLAKE2b-256 9e2100a62383716ff52ca746d6a52d9072f4c62155b07f309c313b039963ceb2

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9255e58da1233e796639b17d10cb7bac7df0c43a6ef8273a42a938b549f0b98c
MD5 d6a6a9f4d226b279e78c70ec22637a6f
BLAKE2b-256 820a07990c8a23ec94b8dc2e88c6afd12da5131d0c8171e4246f3a8de5eafd44

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a6b6079c8c66981a97fd3515419d1456118f0f2ae14970d3a0fa04a74986496
MD5 5872234244d06d83d3c4203dc2d54295
BLAKE2b-256 98148595aa68d650d71563e1d5b75093a49298b284486a137abd4b58793bf4fa

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6dc9271486a2ba94b4716ae7f616bdfd25e4e0db7b7c0acd82fa96d651eb985
MD5 2f1484abdc27acb5f3ae59dac83db696
BLAKE2b-256 d4fbb522e93096af2e74ed47c9e721565ac482af4356ef9c1b3c6fda31c66cb7

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8156d019be2929bdd2f8a99c124b46d7b2371925746554e81be08b88a67ded2c
MD5 22ef9fe03c7a2a31337c2fc06b548bc4
BLAKE2b-256 585aff94ac71e2aa6df2566047dda1f4330a0051f693d643abf40f00d0034012

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d819512d407c55be5297c1d0196737aed921b7243115e1646358903c2b93768
MD5 92840e262dcc66e02a3e83e8451ac738
BLAKE2b-256 d2df41d539adb35cedaac580ad3f0b730fb49d5f50ef87e36f2d5fb8c5c1b7dd

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d6144d697977e3c5e41da06eb6b6856bd900b615257ff3c1c6af997dcb522c3
MD5 65770c29161dbfbeae5909202fd2b7b8
BLAKE2b-256 7d4bfdcde1d1e4fe1c03aee4fb4843e6b5b1953c2b2b845ca1e7d98d0848b8df

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb50beddd9ee364860972271622060282dd394b3c2f3aa6f366731f6cb0dba01
MD5 99f0a3458807b7110b07bc2019902936
BLAKE2b-256 a822d44b2317bcae2d6019b4629fc4ddae5444ab0aa93f58f0521b2b9b00c3ff

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5343abb745bf400ccb5fc1c7130ddf47cda1023af2518ad3f78f3abcc7efa41a
MD5 dee154f7ddc952d0ed80706dde42aab4
BLAKE2b-256 746489b22fa3bfe9f0ec96c780815f845208f98bcd79e2bc0daf173f0e338e37

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5872687d167fde296bd72795b03220845a0998128f939b4234cf72f75fdddcfb
MD5 744f1dd1d05acbeb3dadcc0b49449c9d
BLAKE2b-256 84367413386eb5d45ef334bf23f7eff4325a6769addebb1bf95f4fae07c9589a

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f190cb3a7999491f11c35625a5cdc91e61ae33249635de4177e2d02d7517942c
MD5 e62997676333c52734f524f08328f884
BLAKE2b-256 df0accae05c9c24cffa2bdc163cee184fbc6d62c40cf4ba1e3fb259b7272a16e

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e69ba9450c4d4044ef7d35a270b288e7a73979a383a1ba8ed87483d1f6986645
MD5 3fded0dab732e9bdb84decd853609009
BLAKE2b-256 7f5462ef626b02fcb3dad15997a234aed8f78a6b2e818f6c39df0e83605e6372

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf19f8d538750b68b195519a47782a4abdb3378b1e1ae5f711703c86e8e03dd2
MD5 9b4c5bcd424afea934672ac8ff102530
BLAKE2b-256 3ac4eb88933e578851cdd8af9b7774dc84b49e22bb8470a30feb91c635648230

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3f43a900e34ca951771fc175e329a1bc8fff5e3146d8ec5feae92600cc0a186
MD5 8bf5666e3412c04a7fe51c3be5605926
BLAKE2b-256 015f824c652f5a4062218ac58fd668ea07739fe4f809f97eea1378c1e7b6d72e

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3cfd9f29fef648ca58ebf8907d422ee2411717369b94b10b271dc092418bb17
MD5 51d3a9af50b39374f9a93ac05c4a2014
BLAKE2b-256 a5890ec28cafbb562397f2004bca3c647750cf8ea6c5fc042dd5d0203ad0970b

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56fcf7c06398afe4bf101dc3b61f973f620adbae9358010e19fc1431bb408321
MD5 c5bbdc14d4096debc8ee4fd3eda5b666
BLAKE2b-256 b5d64d032a7071b01444dea9849b6334eb098e7abb82a67a0dfdc92d59ea5ecb

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a20f49a197deee55c50f4d563c672ee82a49018d2cfdd0910d84a1402aa1a139
MD5 6dfe153601e3c4378601c27fcf58728b
BLAKE2b-256 bb3260ca5a437c6dbc9614acaa1b4e39e7b76ebdd9298722e93c6a06764104a2

See more details on using hashes here.

File details

Details for the file pytantan-0.1.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytantan-0.1.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8162096e179bfdc871e3708944b059b6150fdb1de378dd9f3b11d06490a62c51
MD5 c31256cc470ee3a442d5be324a6a0cc5
BLAKE2b-256 fc19413d7ff4e102b23e068b84aeaee37474d965e1984c5e2ffa5e2cd0030da4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page