Skip to main content

pytrf is a python package for finding tandem repeats from genomic sequences

Project description

Github Action Readthedocs PyPI PyPI https://app.codacy.com/project/badge/Grade/bbe59e55f686465ca5824c69583e9718

a fast Python package for finding tandem repeat sequences

Introduction

A Tandem repeat (TR) in genomic sequence is a set of adjacent short DNA sequence repeated consecutively. The pytrf is a lightweight Python C extension for identification of tandem repeats. The pytrf enables to fastly identify both exact or perfect SSRs. It also can find generic tandem repeats with any size of motif, such as with maximum motif length of 100 bp. Additionally, it has capability of finding approximate or imperfect tandem repeats. Furthermore, the pytrf not only can be used as Python package but also provides command line interface for users to facilitate the identification of tandem repeats.

Usage

The pytrf can be used as Python package. It requires pyfastx to parse FASTA or FASTQ file.

>>> import pytrf
>>> import pyfastx
>>> fa = pyfastx.Fastx('test.fa', uppercase=True):
>>> for name, seq in fa:
>>>     for ssr in STRFinder(name, seq):
>>>             print(ssr.as_string())

Command line

The pytrf also provides command line tools for you to find tandem repeats from given FASTA or FASTQ file.

pytrf -h

usage: pytrf command [options] fastx

a python package for finding tandem repeats from genomic sequences

options:
  -h, --help     show this help message and exit
  -v, --version  show program's version number and exit

commands:

    findstr      find exact or perfect short tandem repeats
    findgtr      find exact or perfect generic tandem repeats
    findatr      find approximate or imperfect tandem repeats
    extract      get tandem repeat sequence and flanking sequence

For example:

pytrf findstr test.fa

Documentation

For more detailed usage, see our manual: https://pytrf.readthedocs.io

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

pytrf-1.3.3.tar.gz (14.0 kB view details)

Uploaded Source

Built Distributions

pytrf-1.3.3-cp312-cp312-win_amd64.whl (18.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

pytrf-1.3.3-cp312-cp312-win32.whl (15.8 kB view details)

Uploaded CPython 3.12 Windows x86

pytrf-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (50.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pytrf-1.3.3-cp312-cp312-musllinux_1_2_i686.whl (46.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pytrf-1.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pytrf-1.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (46.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pytrf-1.3.3-cp312-cp312-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pytrf-1.3.3-cp311-cp311-win_amd64.whl (18.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pytrf-1.3.3-cp311-cp311-win32.whl (15.8 kB view details)

Uploaded CPython 3.11 Windows x86

pytrf-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pytrf-1.3.3-cp311-cp311-musllinux_1_2_i686.whl (44.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pytrf-1.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pytrf-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (44.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pytrf-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pytrf-1.3.3-cp310-cp310-win_amd64.whl (18.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

pytrf-1.3.3-cp310-cp310-win32.whl (15.8 kB view details)

Uploaded CPython 3.10 Windows x86

pytrf-1.3.3-cp310-cp310-musllinux_1_2_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pytrf-1.3.3-cp310-cp310-musllinux_1_2_i686.whl (44.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pytrf-1.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pytrf-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (44.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pytrf-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pytrf-1.3.3-cp39-cp39-win_amd64.whl (18.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

pytrf-1.3.3-cp39-cp39-win32.whl (15.8 kB view details)

Uploaded CPython 3.9 Windows x86

pytrf-1.3.3-cp39-cp39-musllinux_1_2_x86_64.whl (47.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pytrf-1.3.3-cp39-cp39-musllinux_1_2_i686.whl (44.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pytrf-1.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pytrf-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (44.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pytrf-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pytrf-1.3.3-cp38-cp38-win_amd64.whl (18.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pytrf-1.3.3-cp38-cp38-win32.whl (15.8 kB view details)

Uploaded CPython 3.8 Windows x86

pytrf-1.3.3-cp38-cp38-musllinux_1_2_x86_64.whl (49.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pytrf-1.3.3-cp38-cp38-musllinux_1_2_i686.whl (45.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pytrf-1.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (50.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pytrf-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (46.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pytrf-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pytrf-1.3.3-cp37-cp37m-win_amd64.whl (18.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

pytrf-1.3.3-cp37-cp37m-win32.whl (15.8 kB view details)

Uploaded CPython 3.7m Windows x86

pytrf-1.3.3-cp37-cp37m-musllinux_1_2_x86_64.whl (47.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

pytrf-1.3.3-cp37-cp37m-musllinux_1_2_i686.whl (43.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

pytrf-1.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pytrf-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (43.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pytrf-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pytrf-1.3.3-cp36-cp36m-win_amd64.whl (19.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

pytrf-1.3.3-cp36-cp36m-win32.whl (16.4 kB view details)

Uploaded CPython 3.6m Windows x86

pytrf-1.3.3-cp36-cp36m-musllinux_1_2_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

pytrf-1.3.3-cp36-cp36m-musllinux_1_2_i686.whl (43.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

pytrf-1.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pytrf-1.3.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (44.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pytrf-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl (16.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pytrf-1.3.3.tar.gz.

File metadata

  • Download URL: pytrf-1.3.3.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3.tar.gz
Algorithm Hash digest
SHA256 59c509842197cb5c9cae9f8881c3c5eeaaa37c0cfb58e478968f4f5d192b86ce
MD5 8b189f27df7939a4ef5d88b5ed6d0c8e
BLAKE2b-256 c1d3ee49237566735ec2c5de18d9065c56941a1602f53b57634bbc8666a1750f

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c8b71ca3798e59c186ba363086da474556bff2c3d349b41bb949e3c708c9f16e
MD5 ff9822f8fe2395efb4bb8efbcc0ddcd4
BLAKE2b-256 aaef45dbbbddb5b6adacee953b7c4f943bb58cad866b0682f9ae4b0a8ed9aade

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 aa02cc09746b845c4fdcc1ca74c0d8619545b64eca6b0eee2d1c55a6cd2193f8
MD5 fda43ff77e0945d7d76a5783cc6fdd3b
BLAKE2b-256 ecb59d091070905d41763f22753c915bd0b68ba3eef9b8a1e742594cc1ae90f0

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b891910fb20d90e6fcc664b85ed78146a607ea4038b95f319b884f60036e1ed9
MD5 cd04c0f1e27b3172b5dd021532abdd74
BLAKE2b-256 cacd109e9a90de8f15aad6863e91d5b5447858d2d9775e259223d3019ca3ced5

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 770b3117e29d75c34605c37bb66c8a0c36257f7eaa266db3a75acfc7e57845c6
MD5 8862c0353ccbdab5c04e882191b2d9b5
BLAKE2b-256 d153791dfeb2071a0a2e349888e98b2b0379f098eb4884b3970bbfaf11438139

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4786de052d8fbec9de86e7a8dffda773db600463c469c7c6745c76b0ddc2225c
MD5 ab517c903092331c6dc146f2411b721e
BLAKE2b-256 6e63fc100e1dce29bf9b1b3448a30a553365aaa103f7d7527f40ea13aabe7e89

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a6f6e0d2d1783c97fe91d37d7aa5272d0ee1e3532a52c0ed84e4bc07fb40080
MD5 f1256bccb0fa6fcacb531538c2340038
BLAKE2b-256 77c372aa915529d7bac55b9f4381624fcc0adb7b28255d0d7563b305ce828405

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afe6ddbee4b639b3a0c6892e9dd87f84b13bb5130356e3b70a0032e1bd03ef36
MD5 94eca382a8ec8e835a8df4c79a33dea3
BLAKE2b-256 e518e17f3d941853902bb2b1764675778a6ab0f864b43d298c890f82eba62dbb

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3e90cb155e3488cc4e2c9109765f10b7d6a88acf9754b248e95ca9fc71e544e
MD5 3728359c2cad32b192601bac1482fb51
BLAKE2b-256 bcd116178c8c21e2cd11ed782d7a4d0aee5932c42b49ccd3871a591142542ff8

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5e5a5b8cc03b488c4b95440517ec8a4c90e05548c412ddcb16b5eb952745bc5b
MD5 df22ee2210664b5574e0e2e02fd3e5ed
BLAKE2b-256 f6c828e81fd1779c376136d571fbb2c46eae9881445b5237f7d1af6a729cba80

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4303bda8ac67c0a5be48dc6af3e75953b48c628e2dbd4bdc44ff6e32b0ee39c7
MD5 7402ac815f756ed61db54b29eaccef69
BLAKE2b-256 dd7b6d6fb622d566f221f830ee8e249720217cf9db2339ca8249a1f9ca5c114e

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae0fd1d49c8f95dad4aaa9eb64bcd3071296aa723cd98ca0f64216c1697d7e4b
MD5 36990fadab87d87bc87afcac1f42afd7
BLAKE2b-256 e5eb16d663d2430de9863291075bccfb7776a040b88d06376633cfd7df2266fa

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c45d0c8eee083a9b285098351b83091f5cc708481dde34c18bda194ef6b93f16
MD5 d2ead2cb9b80e4dee0b8b7fbe71ff7f7
BLAKE2b-256 6183256d54086b68cc87de2a3a0b73ad14c90e83633aa71591d312f5d988aad6

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 026b587ce4f649e8ddab8ff086366cfdde44808b687f3bae26d7d32e574d78af
MD5 e789e0cd5cbdb6ec1bcf889c6514b6ee
BLAKE2b-256 17414fa45a35ebceffc6b9128f88f7cba3380431270f62cf2c3734f38640947f

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf35f1fff90241719f9b238b73b1385b4591ab46eb1ba87ccba97e4eda8e6b93
MD5 709e33f312c5dce15785c24c4e6ffe4f
BLAKE2b-256 d1040c0fac73e89fb86c2eb7f94a9d57df3b57deb553f33c79cc3920d2499c5f

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 500758377c64b4c8895f24d5269baa43a39ac5367020bab666dd860339728714
MD5 ac200b69608e8b6b432d25c8a8f7665d
BLAKE2b-256 a9da48930f63fb78ab252f1506d5d413b32c176dd10661d31acf105c7e4bc903

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 12624803d543fc4b5b42f10f82e560521213a21d7804adbbaaaf5df49fdec9d2
MD5 53d2debd928ef5d4800bbfb07c0cb5d4
BLAKE2b-256 e8bc5bee574f697377a1ec45439f94d0ff47585274a9e4a6ff94cc5bf22cc6a5

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e2877f16493b1e519908b51cf556ac66888439d0f34f90ec1b5671fdcb9fe0c
MD5 4a8e1385da362c8acef94ef5a33f85dc
BLAKE2b-256 a029921ca5960adfd7c4529701f3699801b2173753c9898b2844fd545ca92e4b

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f284131355f29ba3becd679cebfd7720cc5d09c435c0c9be96597b6cd870e3df
MD5 a22bd4e443c741d0b59e88fbf9d2b022
BLAKE2b-256 992202e15ea1d10c4f284a09323010b3d61b9754552b2156e724eaa4fb2e7565

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 786fb37b58d2a6c803afbf1f326fdbdb451e5a97b542ff5ae0789cefce2c9f74
MD5 6f6fb6fd7c1dee36636801b96ec9ed13
BLAKE2b-256 f14f7eef71f049e227969e634ab0637e0709ae0f650b47cbbf2d2fc2d8b0c153

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 641bc10c4e8d749adfdee35d1e9cdb7c142dc9129ca9c93d9475ed8021dcee96
MD5 ae7aa6b5db7835ecafb259293eb6a7d3
BLAKE2b-256 b80577113daf5f51c9e73fa3b4b8e49beed9b2f1449d6c852a7e8cb4174966a4

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57fcf0644e76fdc01df53d4018827bf2da2a1e02621c9cbada816899295e2a5d
MD5 df6bf84585928df7106f5a39fb6dd3b5
BLAKE2b-256 7a35b787d2dbf68422271dd9a304c4037f6a350d722227525db6cd7e64b8fa5d

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4440bd92ab4535d5b3d75de93fef77d505c6909202f5e68698e8d7256b2b9dbe
MD5 26e946b12c150efb02da91f07ecedfe1
BLAKE2b-256 906ee0f51409500a43ef642c6522bc18575987eb83614f3f0ee0171a866a0420

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5dc95beabed3bd6bd48e4e282393cc2b7e15b70b66db3402061ad43f97d86aaa
MD5 c856bc951c26aa747a5d6e491420f66f
BLAKE2b-256 44168c7424962e58c952d27bc23628fa8d6621bcfb2c2b556e7b1795c98ccb55

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 377ab47eb5578918ad33c7bb81777f371f5d47118cd8d9864505d0d14dd9427b
MD5 02c9820b76e77252df3ba1564bf614cb
BLAKE2b-256 839fd54e8c9b88806cc74b4e0a722ee8c13b889275873f67ec1dfe185839a47f

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19a9047f29f28df99967e80ca15d78cbf44972cb31069aff66475033fc680cea
MD5 72bc0c8b0290e720a8993df1a720aa74
BLAKE2b-256 98aa9f2a0aa41344f8e9b5e6cd1f80296fe80043f294bb4569daadd2051152c2

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10912e544bf466623507193f1122b5b347f43bb40e8d4f5a35da2682358078f5
MD5 43e0cc2831c1b907f7347ba6ae6da31b
BLAKE2b-256 124092fbe739f7f7b3f454a191f8e8f7d51bc7721435f5fe07083a5186527d2b

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9110aee5e130bdd21764126e315c997674d5d223bd161614711943471cba0a0b
MD5 b3065e6692a853d0ba2d31a7dde365ca
BLAKE2b-256 406cd6ef1e719bec3c4b98c8c729aacf416b1652f990ced128b2d58a5a965cff

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa1c29aaf86e1f7594848460b1a424ca0992674783215cda69175b6c7d95c426
MD5 72c36d390a98dcfab341eb607bfd9aff
BLAKE2b-256 028987021493ce70a845a067a1f9b3ee2ed0cd8219d83330f11acd0e4f2c0828

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1ad58076947f52dc6460fee83d45b135c803dc6eef8379cb86cde2220ef8cf1b
MD5 e402c7fed2d5c5f84ca056c03abdca0c
BLAKE2b-256 1a47ade62eaf6b0cc7ecdc9db58120afe7642a27e66fc4e8e623b33d2133e29c

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ad8351658266a9dea01ce54d1d47d69580e2a4f47c05a7d8af471bcebd21bb62
MD5 bf30e8c5a098c5a529f6f762e8398738
BLAKE2b-256 1a4aa19ca60835992d5afcf4ef5d33bb684ed90c347192c3e14fbf33dea9bfe7

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3a480860d98b4a56a9d21c8137649a92ec34547a4d4406ac3fde115aab1c4c9
MD5 9533bf40c872c0ebdde5906ea295f7bb
BLAKE2b-256 c1bcdcb18e77b883d869c2628fbb27787eef6295b3c48e79ae5d4ca6da3148df

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c657652e63c7895156098793a98fb6bf751593c691fd861efd22eea0a6e77251
MD5 0772054fe86e2699d3dc0610fad5b55f
BLAKE2b-256 cf0c0a28660b885c6582b8352da11b3d35d23af0ea3fe9d28ad7033cfabaf611

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33a531feee48eb200fcc0932aea96ae88342b7c7e28e6f17738e4f4a255f2d9d
MD5 45e5370f7a98b33ebdd2cf656260f4b9
BLAKE2b-256 6080ce74781626fc5ce62ab42fb5796cd358d240b26e9bbe65d9c955ee10c20e

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60ce02428fe3de064f8fc0762bfdee6ec94c598fc74688a07e5b12a7d6608eed
MD5 0c44afae97281f1e9fe0ca0851e14b26
BLAKE2b-256 b521b456a8b495855f1623086b791be7200bb370014b568990158cb1ade6efeb

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75af1a6c4019fa8fdecf58e47b1ee5f8c4386d10aa295239cda08e4230d758ad
MD5 6d2e3d8b700dff5ba2c95ee8cb32908f
BLAKE2b-256 4ec8b860049cce94a8c25f98211951a53fc8c856f02c343f75795c2dda01f570

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 246b927d6290681dbb03f1d59de3fc5b2116293bc23f8a9718b0acfda5afa466
MD5 96537854ceb246c5aa18938432482368
BLAKE2b-256 f5d504af5cb45e9b067e1ad21b26c86b9094ea1ce56b8b05aa76c784e186962b

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5c29dabad44b1d46d0e410f4b68a7b4a5d0ac5b46bf6a52b049c2a0e029666b2
MD5 35c62e31129f6b96e2becc4fb52443d5
BLAKE2b-256 ae881eaac9dce72850ea0b3f3c3c500b0595eaa279f10f3d3343e55295f4d1bf

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54c2046e3b936e0ec85e833ab89786d9c8124eee0ba23e4ba727895e2f4cb1a2
MD5 9bcc9e9791cf9bbe4d3e9df8693b43d9
BLAKE2b-256 49db49a9ded119423486108a302bb4b67bc8b3cc6e586acc4848eefdc50d0a30

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21609a2f8123d3c787bff15de3639a0fce22bec1723bded9815c3f8f7bdc1ece
MD5 22761f3739b13faeea89999acce9f627
BLAKE2b-256 c900d2e10a6e8a5c630a81a89a1bd5b58db6aeeaa6be5099de010f78f47ad040

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 262c82d76075f6016cddc543d3a344609068d069b6465d9c4e52da71fdd2ef7b
MD5 5cbc2781d0847fae22f6bfed73af2204
BLAKE2b-256 830e12882ccbb538c79a26fbc2800a70ec5dacd3d3aa3889167e33df39188c4f

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc8981b4a0c37d664694f1d946543cf7ef80d9cad70bbe242e3fa21c15231dac
MD5 b6af380f072ddedf24bf1a89926f6ec6
BLAKE2b-256 fc5bb11134d9c723ab46175fa06975535a4657c4232d2866642c9e05d2b4aed6

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 79a8787bcfd46caf927a2766d25cce8eaaedc8d2431ebecf89587cb12311fa0d
MD5 67502b1cb817ee94fe3a023f1079c7dd
BLAKE2b-256 a55069990353691b6214794059d59dc421a50c1b8e906f6c8ee00ca1aa932090

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 19.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b65622f43421ef603b9ecc6fb146f4fe5b3d497fd38161e89283016cf50a5f35
MD5 3b4bba33fc800b6e60d22d08ba1c921c
BLAKE2b-256 2477f8ebbff840abc40571034dce656a652cd612158eebf29c5ba462f62a1ee6

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pytrf-1.3.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pytrf-1.3.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7cf7322f02890e260507536bb73915f36036adc07fef98ccd9eb990c95b7ab39
MD5 22a44a786d2fe3fa452a99793fea4068
BLAKE2b-256 dd03ab3f924f994e5ed1be6801de2e1d1217b9531c230b8a509fe04e7de977ff

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa19ca7d73da92144f5527fdf9c7501dd85c67ca223c414073f86d5a9ac7bb24
MD5 9e75b7ff33ae375f920db7e7cd2bd0fc
BLAKE2b-256 4b80f287ec1ba26da5bb7b7709d925ee3009e5c7f27e47e88dc67462ee3c2720

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f395318af9ef9451d3b4a105b9974a26a0ff2224a8ff98fee7b768b6e0571663
MD5 28a921c73bc71f8e54f79b248bc46b2f
BLAKE2b-256 b765b5e9a72790af9856362e40fdc64d7f011cd67bd0fc8acdb64e5c925dcc76

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95c6296b21b59d08c93da0ada8e3b46072e781f94e52b063a446c91f5e2ab8ef
MD5 128e19444cc131acb9f40916d9c39272
BLAKE2b-256 c28344e6d39e5617209bad824ca77fa9b696c459af6d28cade70814970d50193

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbe67990ec73f05e047bfb63fd614ee1990b9b369569f837a84f57271af493e5
MD5 e3ea4cf68757c9f3d8f5190fde5eab2b
BLAKE2b-256 00bc2205a05b0cc5f3f25d0ed9abbe310800b2ced0bffbef052b470be165f86f

See more details on using hashes here.

File details

Details for the file pytrf-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytrf-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7875402103cb858f7698a5598334ecab25396b23b235902b15bbd1d180fedb4e
MD5 934c8debe0eb9813b66d663a76653da6
BLAKE2b-256 4d62a0131adf9b3e4b83f167ff1187d2ea0d38aa2822669b800a3a8b3ccc8480

See more details on using hashes here.

Supported by

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