Skip to main content

A library for fast keyword extraction and replacement in strings.

Project description

BlitzText

BlitzText is a high-performance library for efficient keyword extraction and replacement in strings. It is based on the FlashText and Aho-Corasick algorithm. There are both Rust and Python implementations. Main difference form Aho-Corasick is that BlitzText only matches the longest pattern in a greedy manner.

Table of Contents

Installation

Rust

Add this to your Cargo.toml:

[dependencies]
blitztext = "0.1.0"

or

cargo add blitztext

Python

Install the library using pip:

pip install blitztext

Usage

Rust Usage

use blitztext::KeywordProcessor;

fn main() {
    let mut processor = KeywordProcessor::new();
    processor.add_keyword("rust", Some("Rust Lang"));
    processor.add_keyword("programming", Some("Coding"));

    let text = "I love rust programming";
    let matches = processor.extract_keywords(text, None);
    
    for m in matches {
        println!("Found '{}' at [{}, {}]", m.keyword, m.start, m.end);
    }

    let replaced = processor.replace_keywords(text, None);
    println!("Replaced text: {}", replaced);
    // Output: "I love Rust Lang Coding"
}

Python Usage

from blitztext import KeywordProcessor

processor = KeywordProcessor()
processor.add_keyword("rust", "Rust Lang")
processor.add_keyword("programming", "Coding")

text = "I love rust programming"
matches = processor.extract_keywords(text)

for m in matches:
    print(f"Found '{m.keyword}' at [{m.start}, {m.end}]")

replaced = processor.replace_keywords(text)
// Output: "I love Rust Lang Coding"

print(f"Replaced text: {replaced}")

Features

1. Parallel Processing

For processing multiple texts in parallel:

// Rust
let texts = vec!["Text 1", "Text 2", "Text 3"];
let results = processor.parallel_extract_keywords_from_texts(&texts, None);
# Python
texts = ["Text 1", "Text 2", "Text 3"]
results = processor.parallel_extract_keywords_from_texts(texts)

2. Fuzzy Matching

Both Rust and Python implementations support fuzzy matching:

// Rust
let matches = processor.extract_keywords(text, Some(0.8));
# Python
matches = processor.extract_keywords(text, threshold=0.8)

3. Case Sensitivity

You can enable case-sensitive matching:

// Rust
let mut processor = KeywordProcessor::with_options(true, false);
processor.add_keyword("Rust", Some("Rust Lang"));
let matches = processor.extract_keywords("I love Rust and rust", None);
// Only "Rust" will be matched, not "rust"
# Python
processor = KeywordProcessor(case_sensitive=True)
processor.add_keyword("Rust", "Rust Lang")
matches = processor.extract_keywords("I love Rust and rust")
# Only "Rust" will be matched, not "rust"

4. Overlapping Matches

Enable overlapping matches:

// Rust
let mut processor = KeywordProcessor::with_options(false, true);
processor.add_keyword("word", None);
processor.add_keyword("sword", None);
let matches = processor.extract_keywords("I have a sword", None);
// "word" will be matched
# Python
processor = KeywordProcessor(allow_overlaps=True)
processor.add_keyword("word")
matches = processor.extract_keywords("I have a sword")
# "word" will be matched

5. Custom Non-Word Boundaries

This library uses the concept of non-word boundaries to determine where words begin and end. By default, alphanumeric characters and underscores are considered part of a word. You can customize this behavior to fit your specific needs.

Understanding Non-Word Boundaries

  • Characters defined as non-word boundaries are considered part of a word.
  • Characters not defined as non-word boundaries are treated as word separators.

Example

// Rust
let mut processor = KeywordProcessor::new();

processor.add_keyword("rust", None);
processor.add_keyword("programming", Some("coding"));

let text = "I-love-rust-programming-and-1coding2";

// Default behavior: '-' is a word separator
let matches = processor.extract_keywords(text, None);
assert_eq!(matches.len(), 2);
// Matches: "rust" and "coding"

// Add '-' as a non-word boundary
processor.add_non_word_boundary('-');

// Now '-' is considered part of words
let matches = processor.extract_keywords(text, None);
assert_eq!(matches.len(), 0);
// No matches, because "rust" and "programming" are now part of larger "words"
# Python
processor = KeywordProcessor()

processor.add_keyword("rust")
processor.add_keyword("programming", "coding")

text = "I-love-rust-programming-and-1coding2"

# Default behavior: '-' is a word separator
matches = processor.extract_keywords(text)
assert len(matches) == 2
# Matches: "rust" and "coding"

# Add '-' as a non-word boundary
processor.add_non_word_boundary('-')

# Now '-' is considered part of words
matches = processor.extract_keywords(text)
assert len(matches) == 0
# No matches, because "rust" and "programming" are now part of larger "words"

Setting a whole new set of non-word boundaries

// Rust
processor.set_non_word_boundaries(&['-', '_', '@']);
# Python
processor.set_non_word_boundaries(['-', '_', '@'])

Performance


BlitzText is designed for high performance, making it suitable for processing large volumes of text. Benchmark details here.

Mult-threaded performance:

Contributing


Contributions are welcome! Please feel free to submit a Pull Request.

Issues

If you encounter any problems, please file an issue along with a detailed description.

License


This project is licensed under the MIT License.

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

blitztext-0.1.1.tar.gz (755.3 kB view details)

Uploaded Source

Built Distributions

blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (509.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (528.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (617.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (525.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (449.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (352.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (509.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (529.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (618.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (526.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (449.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (353.0 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (510.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (529.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (619.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (526.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (450.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (357.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl (511.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl (531.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl (621.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl (529.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (359.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-cp312-none-win_amd64.whl (211.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

blitztext-0.1.1-cp312-none-win32.whl (201.0 kB view details)

Uploaded CPython 3.12 Windows x86

blitztext-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (508.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

blitztext-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (528.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

blitztext-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (617.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (523.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

blitztext-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

blitztext-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

blitztext-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (351.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

blitztext-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (300.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

blitztext-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (307.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

blitztext-0.1.1-cp311-none-win_amd64.whl (210.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

blitztext-0.1.1-cp311-none-win32.whl (201.3 kB view details)

Uploaded CPython 3.11 Windows x86

blitztext-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (508.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

blitztext-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (528.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

blitztext-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (617.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (524.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

blitztext-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

blitztext-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (446.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

blitztext-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (351.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

blitztext-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (301.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

blitztext-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (308.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

blitztext-0.1.1-cp310-none-win_amd64.whl (210.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

blitztext-0.1.1-cp310-none-win32.whl (201.3 kB view details)

Uploaded CPython 3.10 Windows x86

blitztext-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (508.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

blitztext-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (528.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

blitztext-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (616.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (524.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

blitztext-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

blitztext-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

blitztext-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (352.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

blitztext-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (300.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

blitztext-0.1.1-cp39-none-win_amd64.whl (210.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

blitztext-0.1.1-cp39-none-win32.whl (201.5 kB view details)

Uploaded CPython 3.9 Windows x86

blitztext-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (508.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

blitztext-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (528.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

blitztext-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (617.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (525.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

blitztext-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

blitztext-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

blitztext-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (352.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

blitztext-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (301.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

blitztext-0.1.1-cp38-none-win_amd64.whl (211.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

blitztext-0.1.1-cp38-none-win32.whl (201.7 kB view details)

Uploaded CPython 3.8 Windows x86

blitztext-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (508.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

blitztext-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (528.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

blitztext-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (617.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (525.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

blitztext-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

blitztext-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

blitztext-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (352.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

blitztext-0.1.1-cp37-none-win_amd64.whl (211.1 kB view details)

Uploaded CPython 3.7 Windows x86-64

blitztext-0.1.1-cp37-none-win32.whl (201.7 kB view details)

Uploaded CPython 3.7 Windows x86

blitztext-0.1.1-cp37-cp37m-musllinux_1_2_x86_64.whl (508.7 kB view details)

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

blitztext-0.1.1-cp37-cp37m-musllinux_1_2_i686.whl (528.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

blitztext-0.1.1-cp37-cp37m-musllinux_1_2_armv7l.whl (618.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

blitztext-0.1.1-cp37-cp37m-musllinux_1_2_aarch64.whl (525.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

blitztext-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.8 kB view details)

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

blitztext-0.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (448.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

blitztext-0.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

blitztext-0.1.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

blitztext-0.1.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (352.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

File details

Details for the file blitztext-0.1.1.tar.gz.

File metadata

  • Download URL: blitztext-0.1.1.tar.gz
  • Upload date:
  • Size: 755.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for blitztext-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c7a15e85f66c2f4849bdbd2900d7ec1806fc03cfa7de4a8c44f72b34621f0910
MD5 11fc6ae5523a77f369b5fdd94f7a0549
BLAKE2b-256 8a92e059cc5ef2944a1ba54e09750120e8a3377774e451ff2ecfcec1cb72ddb1

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 307ef837b84681c3f65899fc744b90dee99e4f846627225fc7457f11ef10afcf
MD5 9832de47f1aecd8ba74387d5ec2a94bd
BLAKE2b-256 6ea04212475529f5eabbbb21f3bb6d198fdc38edb240c1f49f4681d0b1b28158

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41834ce8058c9d57a0d707b11193bc76e12207955e6ea2a44d61d14f02b74807
MD5 f40bf8ff55aebb9090d67347e2474974
BLAKE2b-256 82b21e6af68aa169e8f9da9e26826822ceac9fdabbf21f96a1cbefec284e2260

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 786e3c45220e3c8cf1d9abc544ac5ed3dc98e98db224d17e1a5c69825d6f33db
MD5 ed45529bc4bafe83ab7864915ff1e3f0
BLAKE2b-256 084dca27b966f23a3393bd38ed4a21d209432ecc48d6e6b30857f947ae76a571

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06d590e72387345d76fe05f06e837f5c0695f85541881ecf451ca4d2ff7f0013
MD5 57f71374c7a803a6333f650c6c1c2b85
BLAKE2b-256 1cf047543d25d3a90890b836887ba82e71365b433e6ca9cee77513817fe8aa26

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eecf25906a72af481556e2ce068d9c8a18d6b93d64c0b9fadeaee9839acc382
MD5 6b0ad49c26933210ead8a77cee9866ee
BLAKE2b-256 6d0cd9d096d87278f64697ad2764e0242a2d861423e5f670b5ee6b69ab4a3ce2

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15146a187f9ac2c3b970815a0556aa89b235a60523f533ff980b491ddf297665
MD5 9ac11a85feb742ef4ed1a3be1a40d13f
BLAKE2b-256 dc30dbfa47dd549302f62e6dd8ccafd9af6d6152c3d202bf008803e6e559dce2

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bdfd331f616d2d4f90d342088d3a3b90f0c4f04ccec091e6be9214be86c136b
MD5 d31c2167a05d6cd3a2cd1c55af5a7439
BLAKE2b-256 46785d8431b77cbd497572b501f65fcf173b31dd00ca19d09c0865cf57348dfc

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4f2a2573fff4cf4dc92fb7bf37b7a81194d0e90607b8b0c1f6fe78952f660a8
MD5 a13b122f1a10c3a358f211dc12af3407
BLAKE2b-256 dc8ac4a5cf01aaaae1e3f8befc520e86940302a1e8e5b33fdebe10b04513d12e

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffedbcf94cd5dd4f63be2b68e6b62d3534e7234e40de0f500d7a90462d0e99f6
MD5 0a1aa4e45268177c529f89a9cf95cf67
BLAKE2b-256 79ff93c485feb0b7cfffd348ac45d7a7416d3b7e7352d9bae08d00c56d9ceb0c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ada8ff233f5e30eac222ef8d049240ba4f35da325bb6f7f8327b11d1cf8fb13f
MD5 c1568aa93cca87683533207df8973088
BLAKE2b-256 6586233910ec28575532cc138e9814feaf45b08b5a6060d18a24a1638bde5127

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfe08d7a5b9050dc6dc80f7f39fa081b2586d99ce0ca9e43638b280e711e77ed
MD5 7627411785faf9697a3da1883cb55cb2
BLAKE2b-256 bd1eda899a6f484b94efb0f9cd7ade6d1212a23ea23c1355c9dee3f7e9dc05de

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ee92a462a0f87e2d2822eb196470d21a5747d7773c05839426821ed5bd52594
MD5 cf766d18c6b26c35b8f1255c0860b0ca
BLAKE2b-256 430dabf76acb2b0f434e366e62e346508693038a89644b483268648c727e9fbe

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 338bcd41e3f2ba31d889ac574b11d600d57fe35ea0aa080f7a09da74fb2955b6
MD5 2a130fe6457f3fbb0ed2b8a4e7e0a1f7
BLAKE2b-256 ddb8a21bfb262bfb4416183e9642805fe618375e6956c782f23c75bb1b6d23f9

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 521086f2c5460480ce27a25984a0cc7d4bb23da6fbdf8997d56f64e93343e0f2
MD5 df9f6e7b680f80338ca2430762304493
BLAKE2b-256 d8049d309492c6576c49480939766602c9b64bb873bebe700736f3a46b424a60

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19961013987c2355f672ebf4a3c69ac2cfbdf5359b382ac71eaf4c3d8f910af7
MD5 f757ea698c7a9e79d90e6f6098b80aa5
BLAKE2b-256 2e2614a5151185bfd8d91969cf92761fa72c0d8d81b8a332bc608742ad3cb936

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a0008a00f6fc6bb5cb364220ef0a2af90a9de024b35e43121159af2327a2ac6
MD5 c512caeff5bcb432671fcc0a5c201f85
BLAKE2b-256 1bb875847d61e9a3556a35cb9405e4186f1d558a246e747fd1c96d54cfcc0fdb

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cec2c5cfaaf1d4d7eb6fd623a53478e4efed563748801ac42c5535832c3896c8
MD5 4b1f4f3e0c4e2b9dbc001879426fd385
BLAKE2b-256 d847d807637edc7f62aa2d753487c8d953e75d5f8e623fc615b9233b38905add

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e32efc539d57379ab67c802efadd5a40a09c0156474b3a8d4d4f005240a2eb0
MD5 57c7e28d83031ad13a234bd3a01f8402
BLAKE2b-256 1dfa019ded2f9d25cb6404f12a42d6e340acc4137608611ece2b03fd513eba5a

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2815c3d65eff25c9107806182c9b03de7b2c7fc43cb178b179fe51fe864ed18f
MD5 ba34ce77603e13aa84c6263b94ff5336
BLAKE2b-256 c36b2af1e3701e6b087156d9a0309401ec810e64029ceb6833c7dc6c42b23f5e

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e5ca22c973b1acf51cb55afa3e005b8478c9d0bff6325826d612b57ff89f2eb6
MD5 9671501508d1bb926037ac062506c4a7
BLAKE2b-256 9581e30d99458173ab48a965eb51a4150151fff2b59aa4b92cfee1cb790ad691

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d048041a8a0739dda7652148bf60d00ec1b932e43920b899a131266e22947bd2
MD5 884c95ca7306f45fd7d11f4b06f8b01e
BLAKE2b-256 eeffcf838dda2a4e7d1eb02d9d5da314831428b132e47a7b4f310c5281481e69

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3ee237a86a5b2eaf188614e2e9c69b648ec96820a8c3f2219fa2ce28eb66116
MD5 3cf5d8e24698d0f74518799880cb65c4
BLAKE2b-256 0dc7ab0b126dc0ac5f3be1ee124a4ee4a41ab6f224248cb009364c3d81813555

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c5f1a33b0360e834ae0bbc79fbbab970994d94d50d7e52abe4bf42385b35170
MD5 8d6befdf2bebf7508b81d85ac6bf0270
BLAKE2b-256 6e35c9f86d78b024846cfb3a9623e290d163c34623e3c77dd6269c2478b2b221

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 973b21cc6c022f29e7f3240f8a1f8bbf6723a845997d39b5e570b1e1b39e3372
MD5 afeb58e06db9f12d6957c1f19f4ada23
BLAKE2b-256 1dd381eb7a58d094348fee0790c0153323d0f40dd329216dcd4ecc2b22ad923c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02b01de557bab60e1b28c861b9d6ab8ededa64620318454aee9d43975feeb5be
MD5 7a2259395b8dd31ccae1b7d1d6f74fbe
BLAKE2b-256 0626f2f698c9a259f88a6d41b2a4b3ae8f96e69cffd00932a86c211718d47d00

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63cb4f9dedff903b19407c5869570b412a64663c25c0701eb32992293c87b502
MD5 6f028c02c5122b3e88efd1b115c923b3
BLAKE2b-256 d4ac4b2e51ac1a80d61b89d365bd2ddab143fcc276ab854b6dea98633f1ca7a7

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb9a51615625f88774027b1cd26b96e47a3127a8b96d3c020ba94335dec6ed66
MD5 441f8362cd2d6ee27a09090a5c9d87c3
BLAKE2b-256 f1b02e26532932c43c0ea4561c16436146321b91f30b4b11d972860a8ff11038

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a098112ce850647548ff60a29f8a379fafe38132210b1787751a8b517e5db5e9
MD5 e4dea1e559577a786aa8b6789482ed3e
BLAKE2b-256 2c505379ac4aea0d49fd4b35d33d03f03e5f9f7cd29614385f55a213a89e425e

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 675197880f5af6f8d6fd296b5d89608b05e9eaaf8e8da41b9464aaeb890b7ff7
MD5 7a8129e7d014fdd792a8187e73791721
BLAKE2b-256 f08c1c7687b16abd4a66fba52a97b6fb2922bcaae8a44c05e279f29f48a965c1

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3967297e78fd202a5c2186e4feb61f63672bea8d9b93d2552986f724c1f19e73
MD5 3557725572ce996ea58b5ac0fe161e9a
BLAKE2b-256 6c3e3c023f2dd47120afc2f0dab9469161fbeb7ee829584a785fcc3ab5d1806c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc5242fd404a76798895b5bf9a138f6a403e6d0663dc2a5848ce5f19d6607668
MD5 c5d6899b8490649e9082f5088ebfffa4
BLAKE2b-256 674e4c9cd3f3d65bdf2932b30ec6f32d9f63bdf22df6d5f2935a5a9eff098ad7

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f706f83eadb88e15f7a1a61a2d71df24dc2db8c2dcb024bac0b19cb654da975
MD5 3203372cd73c441242157b5a78def606
BLAKE2b-256 50e20c627dbad265ea4ca8d5f51273cfabad71ce261a33dcee48b3663e62750d

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5212be18499f21d67332dcf63f8392f921f1d5f53423cce527bfe56958be5fb0
MD5 38f6f18dd51d432b0438716df59e9937
BLAKE2b-256 a598e5fc7a31e0a541668ae704b8357bda150e19da044fccddd94ad117e7faae

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb247ec0590fc150c7db8fa695dddafe7c81b8f85f4563b131b4dba03c5b4b35
MD5 33cc163db97f459170ca28b587b4e6b0
BLAKE2b-256 3519b6fc7bd272688b88ee77356c67b1a18a2d6b8d49264a7405c19dbb9e272d

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9a0c3451b92b413fd984166ad26721c9df0ad48cb958df9655b0c5086cce6ae
MD5 51e0d81e104f5b1fbdaf4ba0dd990cbb
BLAKE2b-256 b11b7e6468cb988662a9baaf0e91e73d6859de890c2f51f06c41953fe3535d3b

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25f256a1377bcdca7e1b6a4f9db67e22414225aa7d065057102f3bacab624a30
MD5 395d9916b3f103380e17f411a588a192
BLAKE2b-256 5d3bc80178a436558b600a813f9cc9c3b4e9fbce9f7463953c922e610d834d45

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 bc6752840d1bbd52957fef9009fdc52405abcb014c146e66cc40b466d0565c51
MD5 b5305a58eb5fa344c6d0fdac97148cc8
BLAKE2b-256 04e169df3be8b8d6c5eb81249c09328e47820c51f984a524f2c17224065bdab9

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-none-win32.whl.

File metadata

  • Download URL: blitztext-0.1.1-cp312-none-win32.whl
  • Upload date:
  • Size: 201.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for blitztext-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c8c2cf0e3f731fe3a679f1d8b2d0c0aa0194562f81c9e7e7802e227c71b9e25b
MD5 da6017d742834e7a86b34b3b56bf7cfc
BLAKE2b-256 2c2725e6dee931f61ec29a0bed10c38436ad52cb17fbf89097d73455d3f83212

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b43302ddf795db4873acd0f3d3cf877f116f9d04426b562140c9ce6baf3d4350
MD5 f093c83e59a21d4f7dfa174e11707b5a
BLAKE2b-256 9168947a775f8e3c409aa099393a326d973528ae091aef813087bf465e417428

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6868e7eddfd6bdfc97c549726258b0e0c15332e1b8971c1a827914e27c3f549
MD5 4e233825a48e9841fa89a85116fdaaf1
BLAKE2b-256 b4f0bfaa064fa78812668590a00d4e264d72d1bd8177b6f7924d0e5a01cd63dc

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31cc415d3a075df59dfdfbdcbbe66fa49688b2781d494f4fdea25f80cdd1804d
MD5 ef64750eded59afaa598d6c7b5260c18
BLAKE2b-256 3f6a8923c7f1c030b56fbff580125a4bd10d9366164486bd4857cc18af631e34

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2119fee7e9e10363a8b8ef39451b8bcd7ca231afd51a1cdd9f2ddb4323fbf316
MD5 bb2214b074c3af5388eccdd063e04dce
BLAKE2b-256 06b736937c333eceafa2cecc785167bbbcdd52c986977197f8ead311b4f7d06c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2644ae0571862b13dffd1082fcb95bda3ec32aab1bf5be8b141eba95b073e4c
MD5 540e11d905af22af81231cb7f431dfa1
BLAKE2b-256 4e560494002355b33b7478155e1f82b1ac90272cf5f8b12e9587b849ba7b081a

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a88cc7195b84579ec21d347bac13eae1b7e734558e9c847e9bcb6c2eef137c46
MD5 c3eab7b20a5625ba861b7fcb4cb6f03b
BLAKE2b-256 09e9303d2e88f9251eafff1643be7861893bd73475498277fc98759dbf68e6a3

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0d4a461a9eee30c5824aaa9c12297c5ba30b69efcee02100d9d3d46722e208e
MD5 33c78234ef1c023496e44e877cb1ad78
BLAKE2b-256 f5f98ba0217a0054de8f35fc6a42ad9fb1ddadf74c68b927ea8d4887b6c0d187

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6db205c56397b6cbbbd7c15c4af5e0c35eef349357757adddeffd7a08e30d1ec
MD5 db5337bf233c6dcc438f12a2b3ed56e4
BLAKE2b-256 25c9a9b3c783cec184f3891759b8cbb32d54cef676966c6359f2b82dff29bc90

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 facb62a0fe5d71ca99327388cf650900656010f489e5943eedf36e6fc078b05e
MD5 17da1e21fdabe0722118c6f4a3484ec0
BLAKE2b-256 6f734dc72902be8f9b9aaa98bcb216e958dd9ab29c4f3c6efec84fd7d3492851

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4335b76865dd449a33e3afef196c86f6fc0ca4f21c6345ddc9cd7dc380643b5e
MD5 2bc618dca42cef779d7f00db19730bbd
BLAKE2b-256 4acdd9ea646bd4b41ad3dfdc2b104c1be6f21a59b5ffdadedd72e7f0324a06be

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29ee4c526eb3f30742e33f316567acbf3dd90a32cb4816f40ad6acbdc41569cc
MD5 dda0fb44eec389cd3d9e6ae407acf8bd
BLAKE2b-256 e3d547c39599f171a8a85595dae136b763cde302fd75f4e55dc86c3c9a76322a

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20d201ffca715397872075e2c09c3ce0c673fe5a2c94780f37f976cd5980a393
MD5 db9c79e154247dbd65a498b11f192e86
BLAKE2b-256 a0a69bd8c7cc4c590a0d875633aae6e629e42137ca5729df63b263c73a04987b

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 11e6c7704e503520e4094c11079d8adf83ba0117078a9ced6264cdb43f2b1172
MD5 48d0c86913b921cce3ab729183786068
BLAKE2b-256 8c811baac0ef604e6420868745ff0e84b96183786657707b66c2e1050e8093c7

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-none-win32.whl.

File metadata

  • Download URL: blitztext-0.1.1-cp311-none-win32.whl
  • Upload date:
  • Size: 201.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for blitztext-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 77d73755c41e118419127a77d7e0728b0bc28f4371acb36a377bd3c3e0d0122b
MD5 73d81269876208ba58661cc6cb5d59b7
BLAKE2b-256 31b274fd99aaa18c24981bcb33f08301e094f720920daa71425871076f2d9b20

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da63afc396c83cb14058478198d0d26a72915d9bdc1640c5806879f0b9b78b34
MD5 269447f7a88abc151b7e41e333dc0249
BLAKE2b-256 020ccfe8468b9ca21f47767ec3c003eb3e528604c734969dd99e9661c769bd58

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6b512a427ecca536df64c0d06184906eebe3f479531a9077a29236c5c8e0087
MD5 8214e19d3d189a3f9e7aaecbac279f29
BLAKE2b-256 9ecdf0844cbb1cf24cc8ef34cd4331336016670d23a8541445fb7e41bc842503

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00bc161dcf8d5c486ec9714207ef5889f417274231d5448ea4a7c5b93a9ccc43
MD5 94e93a2d74227b52c77a81d330a79bff
BLAKE2b-256 c359728482e8d310f5ddca3f62fb1fad5eec5b681903b543e7bab3fde413d856

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fd5a4004cd828bb8dc1db425d9c8ff7930922d1e5da58592ddbd7565c5820af
MD5 4816db5943b48289f06b08bca767f568
BLAKE2b-256 baa0321e9b387e8d2187bcd80caca5e2ba70cbeafa083aae60a257f743180e09

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7b3b011e23b91e2e8a07c2e750265ccc69341109564bc604facebbf6ef96e2d
MD5 3ebf4fc843fa5e6416abd0c89582f3ef
BLAKE2b-256 e98efd4d6807d640f67bd4f71370ae40e617f5ad213685d62a3e711c2970f37f

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e589513a5f94d1707cb6f0bebae4d09d71c3b0d7b1275988a72199b9922374c4
MD5 bc6cdf354801fe0e579d422f97737ffb
BLAKE2b-256 d9fa073f6fd6ba2eada030792b4d5f16104daf87c164fba5a3c9b20db4fc913b

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19da83b24e6ad8ce09d3fd6985821654b3931eef588c03aa48675605daac772e
MD5 f17aec71d3814e2d04f4074d7504b67f
BLAKE2b-256 07abebd20a80e996d3ff169e5006e4ed4d3dd73926d277bce41e408f16075e5c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce86a885060ea481c325a8b31c373770c43c240c93d57c47809feb686fa6d50e
MD5 1b7554d51f9dfbd3832c1726238dbaf2
BLAKE2b-256 5e698595a7ad583f01a8e9b9f67439e80a38ca7b46fb466c2e1e95d6c3a67ce6

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82fbf70e3cd68ce32bc4e878d222411bfa1223032ef8f9ee92c3dc8851da8527
MD5 9d73e79e7b9ffe26922d828baa4dbce8
BLAKE2b-256 349c967ac4a112e5ac6d2954145848f38a3e4de31449c3ee314b6871f86b255a

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d8be647bbc61c5b003ce9c92cab7dc491a927e0f812a716925c105261791cdd6
MD5 c8397034e4474f70e8baf12525f8e77c
BLAKE2b-256 c4d06ecfd6225a791b8743d3a0801c2597b08b491047a41af67a16884633e94a

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9b8912a8e013518c9e9ddcdc934312b7ede15074345ffcc7559018e5a08da53
MD5 2cc1fbaf09978e077706f606b73b9c51
BLAKE2b-256 a87e675dcd28a6a2a8ecc3db94ccc7dad052a88946825de68e8c009776b523a7

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbe09860255d6b70c743b86044efeda5d7c784a6ccf6f44e4220033f6f165ede
MD5 12ba353aed2b2c97cf4e5ad048bfdc12
BLAKE2b-256 cd34ac976d6a3ea3328d685cc016053d8478c162d96d58833c13fc279554d966

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 28e64afa467db11ab3b33e5637a101449004cc1d8878220a98707ba0011add30
MD5 566cf44a51d187e938b558894e4d2c0e
BLAKE2b-256 d72390b86d88d916ba9859d219bc5345cb086c4515d71b900c2e3b041b0d9401

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-none-win32.whl.

File metadata

  • Download URL: blitztext-0.1.1-cp310-none-win32.whl
  • Upload date:
  • Size: 201.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for blitztext-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 dbacb71db769b5f44b5db4074e7b61268eb9b83109fd722efedc1bb4f5ab2cf7
MD5 df917cf10e10d5f7f438ff0cfb6e2bca
BLAKE2b-256 3cc8904501ba6318b7404104f7d41ba8075bdad982184535b6db4534c7c32ae2

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c46ae05fd03c876cef66aaa8a4584cc5cfd62d0e3b0f79d5f885336fd1e9961
MD5 7042b9f011abde5f024cc2ea773e283d
BLAKE2b-256 0fab3762d64c941ea10e3ffd8da3c59a4167be5325c1207b8806954f78cd9ff0

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 162a364eb87b211b1658577cb06cdce28f8b31d240987fe7dca01d773c2aeee5
MD5 6decdfd8738175f02196a706337f0650
BLAKE2b-256 e93b17336571ad5861153bf305fa85498fd3d94d594813bc5ce32c76e66f8c4a

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 879231118a41e67f2ac738c871c45e41b28f9aeee0948097282e356149ee3eb3
MD5 d96519d0a77f7aed90dc259e3631b0af
BLAKE2b-256 38d1a6e6435492b0effa0400512739fe1dd7444608e075f358d228bd7db87d89

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03c4691fd9d2574853df8102e556fbb34257db162df4ad1b5928aba0f915234e
MD5 f0f73aef5a4540ce9bc59981affa6584
BLAKE2b-256 9e6da92a8c346b6d842225d7ce884accbe9e85246206fb04d8e8c31474a82f8e

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36eef9fd4349dd6a38a800f24048db3d05274fa02a6e68200527e980cb373128
MD5 adf94974894c277b06678ba7715de76b
BLAKE2b-256 29025e1855bf1d796c55d58aa488e92dbd69cc71b1a1fc4b1e5abb7de878977e

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a82cda5952b664c5fceb402fdca33ba7c6503e78e0083137c993d6a459eed24
MD5 d0a1c1ecc8491e89ff4479235e39ddbd
BLAKE2b-256 632865fa84c55f997a4f4804f624404c92ae091828c67925032576210b256b9b

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab845dc347bea65c8e26f7903960183b20fdf813cc25c1feed172d993cd1870f
MD5 adc2219604bf0cc28e297472844a6dd5
BLAKE2b-256 aa36d128a469a595827fe1356420156aada20869d7064234e21e63ca15ff2491

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f6e68ffc5f651f660e1a229d0bf6f83f623d22eb097d1318a884e6acbe50228
MD5 d7c1073efa5988614acf7a2538251678
BLAKE2b-256 825942739ef1d19dc25ff394b10a4a827ddaee437684c7d9897841ed306e9341

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b756e36568355274d1130f88fac68d8d9d6b9834c2019346276a92329c85b261
MD5 017499d1b2fdbcdb33e1173cbb8aff29
BLAKE2b-256 250790b66059022c37beeeb0e5d0b3d4923fa3f52ea5ddf25a37d628e76bf23c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 74c7e5315f2064314d265adf1f9ea92a79b51fbf1fd59c4754dd21e89da04ca8
MD5 9942f337b9e037793a1265a83dd39a52
BLAKE2b-256 e1b8094db602f365e4d0876762af968852faa9eec57e3c8542927d651c9f02a9

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3df9c84749da8469e08e36c4b4167b84df6ae4e19ede2e1929e64e434794a86
MD5 6cec2ac9c969c7acf368349b51153beb
BLAKE2b-256 80aad7236141eed118c652ba6c6c892f843b22d6b040372f831d068b9c555ce7

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e707d8eaa0074d44668c112e6e3181d4f54708f3e54421dac44244d2d823f2e5
MD5 b72819fb792eb6290af94329e7b586b6
BLAKE2b-256 6d5c0ffa6bacb922681e61cc67035f5106762bd4a8507bf7d30901c602093838

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-none-win32.whl.

File metadata

  • Download URL: blitztext-0.1.1-cp39-none-win32.whl
  • Upload date:
  • Size: 201.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for blitztext-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 059ec2c51065f3396d2cfed395aa4589c48a0bdc71e1d6339b2903daf601ffcf
MD5 85ab97348589b6cd65f0c87b43731149
BLAKE2b-256 3c40230923d098ffa08bfa4f92c1d7a9771ddf16436027efc6d9e605697cb6ea

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cf9cf9dc7094cbd23487d02d4017c7d58607673be63330ac074a0ea3d8a7eee
MD5 be8108efad37bf73e12d77bc41dad5bd
BLAKE2b-256 b94d2d2f5d3d09f8261c99d99c352b0b6e3216a1062d9dda2feeb1e5df3b7f19

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4cc9d96758f083fd97c18f9f931c8531b0905d1296f8567db08a49b8a34ded4
MD5 074af51a921da5980de6fe3083cff2c9
BLAKE2b-256 d776f9491f3837dcd6f3585f1d603407b734e84a67cecaa0ccd6c78df8634320

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 74c10cab610817b356f1123732e09b622e00a3c8e78df1b2f367403640a9367b
MD5 feb100db3b49f8554910e854c24520f8
BLAKE2b-256 ecf739ef21d46f190997cc6ffe0fddd5785cb48ce9c42cf2d19a0e96a60e56a2

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fb52bc7425c30d98515c4faf58d47a8d8bfeda6a696b8e4b9d1e69fa3a4787d
MD5 55e3f478dad77abadfd8689c20e8e570
BLAKE2b-256 6d43d6084bb53a4d4126aac1c2ba1e5d2e7b125bf6d2554ff2d4bec38f79e0b7

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1975e1efd8b21f81535ba97bbaedb3815e8c7fc636705c2b85367cfa4ac2b234
MD5 20efdb2f50a4787c474345b69ba5a8c4
BLAKE2b-256 b30e458909795bb7f40ed6dc5f80f96fbf63add385814185802025d4ae398109

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2c4f3c0ea3e3f68baf57d3aa33ceecb860e40aa6af9c1c6a61d8a66e2cfdcb8
MD5 fb04d81dadfb8fc9e2a420aa986e68a7
BLAKE2b-256 14a9639047d82929f03371205afa953a562731a65a608e446f0224a6569031ac

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bee0fdc399fe94986fb4d63a68ef151ad8e80a2aeb6a8d137276df924791df43
MD5 b35bb1004505addbbec4f7aabdcb35f4
BLAKE2b-256 0ffa8a18013e91cfa624c5727bf11542a5d62ed3b85429f19d8777b9134b7826

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcd9699b919e007e8732ef67cfa42c721b3d14ec0c58a98eb65a4af3cc068f0c
MD5 42563dd459b78789644b138d591257ad
BLAKE2b-256 28efe1db098799c7106d36a545809bbe723e1c2ecb2b8a39161ed6c2466be7bb

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6813938a6d2cef0c85fe31df1eaccb488c89d4f8c62d4502aa421f7ca97aa485
MD5 d53f5715f17ec467934d23606ddae436
BLAKE2b-256 9b9aa5921fb101ebe21e8ff5efc3c15582f3a359ff4427a374fa6d8a395c47d6

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8ec323be8582cd48a4500a3a4a42b1e1201fc8bb9a82ae2d63b596f90c446210
MD5 4dce3db63caf97e9484fef64cffcea60
BLAKE2b-256 2f1abbb1c68b4cbdf403aedfd912fcdfe47b4950d42eb194c0442f1e56125b64

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbc2bcb8fd67bea6e42a499ef505c3aa14d2a72d8389d256303569e93a6b93a1
MD5 a1d94eac3c033000deeafcf46a8ee0c1
BLAKE2b-256 c0cf22e083c9f0c9c83fd1a4daec3f941c32f31a378d858a3a19f9b0b5e4e7c0

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5910f6330855bbf591dcb291b1b3968a8adf7aba19256cce95641914f6d37a1e
MD5 9f747ccfa348f7e03e025002ebc693b6
BLAKE2b-256 f2f180ffadf3839809faf0d022efa728fceb09b7822ac0e109393250ec69cfdd

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-none-win32.whl.

File metadata

  • Download URL: blitztext-0.1.1-cp38-none-win32.whl
  • Upload date:
  • Size: 201.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for blitztext-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 517563dfa5f8cbefc3c32aaa2ad58adea82bfbe37f1ea128765e55b7e505ff88
MD5 50bb9e6867503a600d1c380c1d8e2378
BLAKE2b-256 9239fad4b7e7f98abc38ffae121f3882f3d1b23234101ad0c33379f93f290a62

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ab913d43ffff02be652b17f3d06be6124409f0bac945e2072786aac43c07e07
MD5 f3c7f2b62d3faddd930e8f2933d2cdae
BLAKE2b-256 3fadda4f379e4b15b30c8c6996fdb13dcd4b904e4b1dbc575b090eda98545eb9

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00d3f1b6ff15991552036a11866701ed33b4a6bd3efb4db17f9bbf597b37c8c1
MD5 fb7b121fee6f1b1664bdfecbfaa9108c
BLAKE2b-256 1ebb75357ed7a259c77fcdee9a25e585b0f686aad23a7a1dcc2a059b0d3fbff1

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2aa80c81b7a26be8b4d675910608bf8ee4aa3e0fee2bc7842c3a63cfcb03c12c
MD5 891d5fabe598695f24135cb267be8cfa
BLAKE2b-256 fe40e6c620354559f441028ee0c4088779f83e3e4321c2d41c4d8ee97265064c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af13c96500705ea37c33c257c81cc415c63e28d8738d8c5c9a25c85c8cacac14
MD5 b4ca14e1c78cee94526362e9a85d4a98
BLAKE2b-256 4c3eea7b4c1c29643da64d9bfc6cc350b13da7b26807a466144edb25347a520d

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0cd83f58d1f08874694cb7871694b6f637fc0b048694dfc8bb1f35a0b57af0e
MD5 7b766e079987321766aa9bc431644001
BLAKE2b-256 50e13b2c5dee48534998c7b25c1d4b2985cdd0f63779e79d1c8eb4cd633538ed

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1466fe18c508369fca22277b8eed0ff7cd8856e93f3f9c3a7df31cd9a2e4206
MD5 7c83514bb855809afc3fdd6e495250e1
BLAKE2b-256 8d77d26fd6db8a17e5508ad517ae958b953df4cfa57b10252ca2aaa177e96de9

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 122233c43538fe23d6786d120012719a071045d8a53912e326bc1e2c603a4c55
MD5 677b3a1d2e32db612cdac274c2025c90
BLAKE2b-256 950a8d2e8e53681e59c7887e68989ea67ca83d86b97e98d55c9a4d973770db57

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fdd313911df1fa80e259d51d7af1f8e0944c8290c42a5b1067b7b213eb42697d
MD5 3848bd5463333959bea0167a00f18293
BLAKE2b-256 ee40a5cc1b1a78a6172cd6036253f8422ee14a6be28304fd2b96c9a2a4701de9

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9f634c2f704c8acadb4ceb27dddb6cf0e00e617ff5bf242e00a950b4705849c
MD5 8f6f050ce938ff7d66bf3c98ddf30257
BLAKE2b-256 5e2e504f041afbe9f68e5160c8b1706d7b5d034d42be55084cd7a2f2455d8611

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 46088b578266ba00e0a40f9dc884b7b2c67f5f7c29fa520a6f091cecaf8480b0
MD5 3d52d5fa3c79dc78437c227e8ba5962f
BLAKE2b-256 eee2521db9951dab4800707b82e069bff99e9ca19aa84bd8852d357708721d27

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 bee262275149bf9a66d335bd0d7ab535af4da9573e2d5dc171bde227b5e6eb11
MD5 55fee5260d6668fcaae6803ba389e727
BLAKE2b-256 c8dee3402b1f8e3e26bc2c9aced3bb75740e6e6f4e3de395c14a5121e152ce21

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-none-win32.whl.

File metadata

  • Download URL: blitztext-0.1.1-cp37-none-win32.whl
  • Upload date:
  • Size: 201.7 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for blitztext-0.1.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 1ba69f6fb95b2ae13fff3ddc2a15b6cf27160612f3195971f997d00dcdb4807e
MD5 f119c5cd57c75daa9494f3b255fa4bf9
BLAKE2b-256 8a7411dfcbe9f0524d17453c597f7309d9c110f203ea3cde8a8b3250cadfbffe

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3e6fc87adce9efe3fdc6cd4e1baf6fb8fc25e9452e688734fae805a84b224da
MD5 af4208e8ddafcd31768addcc8b55e1bb
BLAKE2b-256 e86c1e9ce4d1a9e35a0acc83536ba05f3961ed2095a7750c49b41a8065aa1311

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6a92d5d575845fe1bfc24ec46d34b49f1c7e54c849ccb2acc90e469eaf2aefa
MD5 084f223b12feb8e6af364607eb73791e
BLAKE2b-256 c8085a25a23cad0f6f62f417aee8104a851a23fa76755889ad2b34c4e776c680

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d541d81bcb3940b3c0ac97db8ae1d1491ff37425bfa5dd5f22bbc643d49e5aac
MD5 a335d00fbe0095470aeb1832e88cd4d4
BLAKE2b-256 9600c7676ec725b730f860ee9cbf7933963083a1d5d3ab26f6b99ed0f4b94d2c

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4e3f6c1546e31e1b24fa5c3838b82f0df0fd56fe8f7ffa6b05e93df3a1eaa84
MD5 b5f2e8ae6e300852bd26446153198101
BLAKE2b-256 3f91b657d94820039b773dd99dc2a814e8d58d0170a2b5c6d25138b1a4de22fc

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2163198bcfb07f166f86b96330174995fe48efa721ecd905eb8d76206cda81d9
MD5 5c5eb8a4e2dfc823c3989f8c885b65a7
BLAKE2b-256 c0a1fe7682f70b0fa7fc4cc5a0e8e82648b8d3578616d6f3008864df640b627f

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55291dc40601687835c0554aaea22da882640cff2a94da2456395d4052667a8c
MD5 252c92ce01429dba6d60e701f87a1d47
BLAKE2b-256 59907c3ecf53774e4bc1f86fe9152ddafd6a5afb6500e2216e522311c1132cd3

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2c5016440b305bfab6c6411f57015457669358432191b95c349e36a3c4e3a12
MD5 78d87d9c2d78d1e4ce70ef7c72d1c47e
BLAKE2b-256 3a6862cb78d5143f9e35d58147787442f78c35f0acc6e2c5ef8ba71e144f151e

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92ccb4a287c56c54c754a3a51ca598ab728be354b00175bbf7fdcfe604da99a0
MD5 8395239fae55973bcfae9dda052afdb0
BLAKE2b-256 4bd1e578ddecbe8df8a5c6ba67ef6ddde793ad7850db6542c4adc54047d7f113

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfec877b0e19446f7826e19e65b980e936c5e546660e01da73889ea03812f441
MD5 2008ceda14636ede6bd0a678f3bece27
BLAKE2b-256 acaef34dfe60618ef3b341d127e77c25cba2d202ae441c4dd8126322185052f4

See more details on using hashes here.

Provenance

File details

Details for the file blitztext-0.1.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for blitztext-0.1.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2df9b8499a52d78f57b0f84bfea3835861a9edce48ce6ea10944f8751772f95a
MD5 ed79fc001a816a0bf777c3c889f61caf
BLAKE2b-256 9374ad34e3ac6d38df095a122fadbaa5c9f2600d85dab3d1553c27e7588386d3

See more details on using hashes here.

Provenance

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