Skip to main content

Python bindings for QuickEd

Project description

QuickEd   Release CI Publication

QuickEd is a high-performance exact sequence alignment library based on the bound-and-align paradigm. Currently, QuickEd focuses on DNA sequence alignment (A, C, G, T, N), using the edit distance (Levenshtein distance) metric.

from quicked import QuickedAligner, QuickedException

pattern = "ACGT" # Pattern sequence
text = "ACTT"    # Text sequence
score = -1       # Alignment score
cigar = ""       # CIGAR string

try:
    aligner = QuickedAligner()    # Aligner object, with sensible default parameters
    # Without any extra configuration, the aligner will use the Quicked algorithm

    aligner.align(pattern, text)  # Align the sequences!

    score = aligner.getScore()    # Get the score
    cigar = aligner.getCigar()    # Get the CIGAR string
except QuickedException as e:
    print(e)

print(f"Score: {score}") # Print the score
print(f"Cigar: {cigar}") # Print the CIGAR string

QuickEd is actually a C library, and this package is it’s wrapper for Python. Check out QuickEd's GitHub for more code examples and more details on how QuickEd works.

Features

  • Calculates edit distance (Levenshtein distance).
  • It can find optimal alignment path (instructions on how to transform the first sequence into the second sequence).
  • Supports multiple alignment algorithms:
    • QuickEd
    • BandEd
    • WindowEd
  • Efficient implementation of the bound-and-align paradigm.
  • It scales to long and noisy sequences, even when finding an alignment path, while consuming very little memory thanks to the Hirschberg algorithm.

IMPORTANT! As QuickEd focuses on DNA sequence alignment, expected alphabet characters are limited to A, C, G, T, and N. However, no check is performed on the input sequences for performance reasons.

Installation

PyPI

QuickEd is available on PyPI, so you can install it using pip:

pip install quicked

Conda

Conda support is still in progress.

From source

To install the Python bindings from source, you can simply run pip install . from the root directory of the QuickEd repository. This will build and install the bindings for your current Python environment.

API

Take a look at basic.py for a minimal example.

QuickedAlgo

Enum that defines the alignment algorithm to use. The available algorithms are:

  • QUICKED: QuickEd algorithm (default)
  • BANDED: BandEd algorithm
  • WINDOWED: WindowEd algorithm
  • HIRSCHBERG: Hirschberg algorithm

QuickedAligner

This class defines an aligner object that can be used to perform sequence alignment. It is initialized with default parameters and can be configured using various setter methods.

aligner = QuickedAligner()

align(pattern, text)

Aligns the provided pattern and text according to the current parameters.

  • Parameters:
    • pattern (str): The pattern to be aligned.
    • text (str): The text to be aligned against.

setAlgorithm(algorithm)

Sets the algorithm to be used for alignment.

  • Parameters:
    • algorithm (QuickedAlgo): The alignment algorithm to use.

setOnlyScore(only_score)

Sets whether only the score should be computed.

  • Parameters:
    • only_score (bool): A boolean indicating if only the score should be computed.

setBandwidth(bandwidth)

Sets the bandwidth for BandEd alignment.

  • Parameters:
    • bandwidth (int): The bandwidth value to set.

setWindowSize(window_size)

Sets the window size for WindowEd alignment.

  • Parameters:
    • window_size (int): The window size value to set.

setOverlapSize(overlap_size)

Sets the overlap size for WindowEd alignment.

  • Parameters:
    • overlap_size (int): The overlap size value to set.

setForceScalar(force_scalar)

Forces scalar computation (i.e., no SIMD instructions).

  • Parameters:
    • force_scalar (bool): A boolean indicating whether to force scalar computation.

setHEWThreshold(hew_threshold)

Sets the HEW threshold.

  • Parameters:
    • hew_threshold (float): The HEW threshold value to set.

setHEWPercentage(hew_percentage)

Sets the HEW percentage.

  • Parameters:
    • hew_percentage (float): The HEW percentage value to set.

getScore()

Gets the alignment score.

  • Returns:
    • (float): The alignment score as a numeric value.

getCigar()

Gets the CIGAR string representing the alignment.

  • Returns:
    • (str): A string representing the alignment in CIGAR format.

Project details


Release history Release notifications | RSS feed

This version

1.2

Download files

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

Source Distribution

quicked-1.2.tar.gz (5.3 MB view details)

Uploaded Source

Built Distributions

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

quicked-1.2-cp313-cp313-win_amd64.whl (195.8 kB view details)

Uploaded CPython 3.13Windows x86-64

quicked-1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

quicked-1.2-cp313-cp313-macosx_11_0_arm64.whl (209.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quicked-1.2-cp313-cp313-macosx_10_13_x86_64.whl (243.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quicked-1.2-cp312-cp312-win_amd64.whl (195.7 kB view details)

Uploaded CPython 3.12Windows x86-64

quicked-1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

quicked-1.2-cp312-cp312-macosx_11_0_arm64.whl (209.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quicked-1.2-cp312-cp312-macosx_10_13_x86_64.whl (243.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quicked-1.2-cp311-cp311-win_amd64.whl (196.7 kB view details)

Uploaded CPython 3.11Windows x86-64

quicked-1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

quicked-1.2-cp311-cp311-macosx_11_0_arm64.whl (209.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quicked-1.2-cp311-cp311-macosx_10_9_x86_64.whl (244.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quicked-1.2-cp310-cp310-win_amd64.whl (194.0 kB view details)

Uploaded CPython 3.10Windows x86-64

quicked-1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

quicked-1.2-cp310-cp310-macosx_11_0_arm64.whl (206.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quicked-1.2-cp310-cp310-macosx_10_9_x86_64.whl (241.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quicked-1.2-cp39-cp39-win_amd64.whl (193.8 kB view details)

Uploaded CPython 3.9Windows x86-64

quicked-1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

quicked-1.2-cp39-cp39-macosx_11_0_arm64.whl (206.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quicked-1.2-cp39-cp39-macosx_10_9_x86_64.whl (241.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

quicked-1.2-cp38-cp38-win_amd64.whl (193.5 kB view details)

Uploaded CPython 3.8Windows x86-64

quicked-1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

quicked-1.2-cp38-cp38-macosx_11_0_arm64.whl (206.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

quicked-1.2-cp38-cp38-macosx_10_9_x86_64.whl (241.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file quicked-1.2.tar.gz.

File metadata

  • Download URL: quicked-1.2.tar.gz
  • Upload date:
  • Size: 5.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2.tar.gz
Algorithm Hash digest
SHA256 da5ec3e7f6c4567998208e240b858db99be43d3e5a6715ab99be21396f094dc3
MD5 858e463923d92b1c0c0f2802ba06d04b
BLAKE2b-256 528ed4473ab6f473cdf0e6be430670c975009f0dfc380075007e39df63839bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2.tar.gz:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: quicked-1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 195.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e5a4671e6e37e0e822275755750a0880d78587766be20263c94be4c286e991c
MD5 f8655c91c6b7437fb2fcf5d1767394c5
BLAKE2b-256 51585d312c8a5f920d7f13eba2c53d1a687ab9e42414f09a4cf45f8848392c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp313-cp313-win_amd64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 001a93508705f5a188621802b6a6c2121e0f0d98086079359a26c4f7020e456c
MD5 4988363547ac472273970dbeb0e67c98
BLAKE2b-256 1a8d6df35ca0f5d637c51c3c3fc90fdc7ff2c9b947b5def6866705ead9a2ee80

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2af4b19cc182c4dd5c4cfac09b4b323debb75f483ac5f94cd378b935d4a2be39
MD5 fdae91ea88f86a0f29c1e8f325e81eb8
BLAKE2b-256 bae1bfbfcc7b4746dcd62428c5b7e71d929002b8a69929515edad74b37eb289a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 080d2ae4065f02bbc9d27f9e630327989cd09ece2061432d67e220b442ab523c
MD5 f564741045ab41473703520501c3d616
BLAKE2b-256 8b5b1d5db504a2a3c15d02d4e7ece1de69384e93063b1cd86f4918ed711a0897

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: quicked-1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 195.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74b8aeb0ad3aa43ccfbd11a019f21e85328bbb7a067167e31071f756d9cd9c75
MD5 85600455548bbb7c80f9d334da011fd2
BLAKE2b-256 f83a1864b0945530c66ee067d9749afe492d973ab27f408b98522178797fb4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp312-cp312-win_amd64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f1a9f35312f06291075ff8412b88106e19fbdc0e3ae9e71fbbcfb54ece0cb16
MD5 6c3ed0f70a3dd17eb65918017dc7c96e
BLAKE2b-256 cdf4bddeaa12bb6637f4d49197ab33b03bf572baec92494d0e9e7c6692d1033e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b0e1cff9938521667b83e40649c2fa2b62981a979d72db57af8fa4b9fee1c9e
MD5 0d336dcd8c81b636c4e0e5e8e1a231bd
BLAKE2b-256 2f3b45441e6d134257e8a9693444eb820f26f0354756b592d5c61188271abec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a20f4093ec75d51b5c56708e487d7f29390697d26f4c3ee018933ca2b0657438
MD5 054bb67a5885e3b434b0ded61c12805e
BLAKE2b-256 6a092e7546b61f0b912a134bab865546d9632c27d9c9ef0fed5206bc2c0ac897

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: quicked-1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 196.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3e8115c05ae03de8d409bd40d39b2dba97e2432fdea97a4cde7777096d02a730
MD5 3b80abebb633ca68270e017adcabbe21
BLAKE2b-256 05ba1da8226b52c682ecfcd54e9c9bee43881f9a57251c9098972a5322e1ae2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp311-cp311-win_amd64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77a0a8e10810a256465dd4d0596675172627aaf15c8d8820ec6368ecb3ea7f45
MD5 4ec3a125f8bb2cb54a2f158e3ab564bf
BLAKE2b-256 f11923c2004c14b311dbf80aa756ff2756baee8fdc98fc08023bd4502998fa00

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26001ae6e81bef7c9cb04f9f77472b96152f7eb8c03f08734303fa49853a3d55
MD5 396572b6a0fa374d616b90f1f1250439
BLAKE2b-256 4ce3d2e8cc880ae998df96bf8fbdc0cd1477a3c8263b3e9b2bcefb4c5638ebf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dfafcff4f4321272c79c977579361f25a6997c13faebec50f5bce22aba22ea17
MD5 3f8b42a0c205236944e655072dcff539
BLAKE2b-256 3e300366a5b084039be629881a0f8537ac5e930d03c27538319160482351ca13

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quicked-1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 194.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c0350de39a17438c61cc518f4236136aa47d85d3bef1e131ccf5317ebed4f43c
MD5 d925b77fcc08064edbb3d36569d2560b
BLAKE2b-256 d0a837cfbc39865134dddac1c3e67b2098308d301d10f193a993d6b7ae62243a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp310-cp310-win_amd64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac28105f2e268b3d5b985c3127c5b234864bd1445e6375afcbb112d444a12117
MD5 77f7b342d314cd4c47b292a7146e9f09
BLAKE2b-256 6e184a138f460cc25d5ce4c82ec6128ceda730f3b482c1a7fc362fdb45491384

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b7c835ec17e623263cf9d2618267e1bc3eab03ebaaca302c18291c8aeeed82d
MD5 4e34f1cd7928e1d140b0f746036c8d17
BLAKE2b-256 f3f079a66b1b79df0deb1ed908628b08fa1d01c768706c46c30b816a7ec6e514

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ee3084ab397b79812d48f1a8b06fce2ad5ab02ad3e980476dc18722b85a6da7
MD5 f4ddc4e006553244b0c04cfd47b9aee9
BLAKE2b-256 51511969c61d06234df789b400b2dbbe8d9a89d22b2ad84305f608ab96020d49

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: quicked-1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 193.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e6869e3b6c21291aed120f21a9f12cc1c8b7bc1af1a686aaf979a063ccbc645
MD5 eff7437cf4b1aece59752714a595536a
BLAKE2b-256 52e718253e41d9d168520f2c3e956fb969cea4f48fd83e2dc366e0bdec2af9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp39-cp39-win_amd64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d8057ac3de213c8e1865f2b9927fc9aae2d512d5be2fec527abddc02d35e13b
MD5 584de17f25362bebdda34456d3b19a77
BLAKE2b-256 bccecd4200fe258fb7be34a45c8fb49693b6ce57f6105009e0c4f868ca294546

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: quicked-1.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 206.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 672f5a97198a833a817e8d49f39b6c097cc18ccaffd2707e26dce932a3550d26
MD5 0aa534a89509ec26b7f0cb6667b53124
BLAKE2b-256 30af2c860a35e182e65fa9cc7c3311a1a65dae59a18654d29477957f57238d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4eecf3e052483bc4b494bed44b0e94043096f4012bd04fdf0e75e255a6afafab
MD5 1018564c1632caaaba05225a6e56d871
BLAKE2b-256 7e0ef1fde29bb40b00c60851861431cf906f9822b2db3e6dcb93e56a2b8c3b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: quicked-1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 193.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cc2fd18536b3a6ee8c726c8d119eb6b757219110e839d6b30c4a33998115077d
MD5 86fbcbab0cd1bbcfb32c69f325085aeb
BLAKE2b-256 7d33d00c6f951c4898f5c4f187e057094c6f13f4c007587fa1568f75f5b6b383

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp38-cp38-win_amd64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 532d5062ebd95ab89ab797fcf713b822f807d99e3a31b16fff99c3e34e6a44bd
MD5 da34ed76029f10ec760a3c06b13db636
BLAKE2b-256 d24a9d7d8ecedf19ca06ba89aa4cf95c41065930751a9abb225edce8e2fcf2ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: quicked-1.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 206.3 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for quicked-1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5978877f0e4b725408a748be68d6462785a036e9c31750ae2a110fdd15ab1639
MD5 a9e680d8f03e97e0f86340379e8f4321
BLAKE2b-256 a7c26265ca739be96535b1e8c4c92795dc31f01a0c00b3c0d615f1bd483f9dc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quicked-1.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quicked-1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1782510caf3e0da7dbd2c59b49c18cb6a00a262a55a4a3cc05d22d7f14e1da06
MD5 fbe6ea893ec4e90c336b78e8f816e109
BLAKE2b-256 d271a54458dcbe2b07d814867f2bfc0c7dc89fc145b6989fddea87f9e8eb212b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quicked-1.2-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: python_wheels.yaml on maxdoblas/QuickEd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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