Skip to main content

A library for fast keywords 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.0.tar.gz (755.3 kB view details)

Uploaded Source

Built Distributions

blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (508.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (528.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (618.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (525.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.0-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.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (448.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.0-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.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.0-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.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (352.7 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (509.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (529.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (618.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (526.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (450.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.0-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.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (353.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (510.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (529.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (619.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (527.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (450.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (357.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl (511.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl (531.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl (621.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl (529.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

blitztext-0.1.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

blitztext-0.1.0-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.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (359.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

blitztext-0.1.0-cp312-none-win_amd64.whl (211.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

blitztext-0.1.0-cp312-none-win32.whl (200.7 kB view details)

Uploaded CPython 3.12 Windows x86

blitztext-0.1.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (528.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

blitztext-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (617.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (523.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

blitztext-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

blitztext-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

blitztext-0.1.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (351.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

blitztext-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (300.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

blitztext-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (307.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

blitztext-0.1.0-cp311-none-win_amd64.whl (210.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

blitztext-0.1.0-cp311-none-win32.whl (201.0 kB view details)

Uploaded CPython 3.11 Windows x86

blitztext-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (508.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

blitztext-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (617.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (524.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

blitztext-0.1.0-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.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (446.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

blitztext-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

blitztext-0.1.0-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.0-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.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (352.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

blitztext-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (301.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

blitztext-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (308.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

blitztext-0.1.0-cp310-none-win_amd64.whl (210.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

blitztext-0.1.0-cp310-none-win32.whl (201.0 kB view details)

Uploaded CPython 3.10 Windows x86

blitztext-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (508.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

blitztext-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (616.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (524.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

blitztext-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

blitztext-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (446.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

blitztext-0.1.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

blitztext-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (352.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

blitztext-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (300.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

blitztext-0.1.0-cp39-none-win_amd64.whl (210.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

blitztext-0.1.0-cp39-none-win32.whl (201.2 kB view details)

Uploaded CPython 3.9 Windows x86

blitztext-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (508.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

blitztext-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (617.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (525.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

blitztext-0.1.0-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.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

blitztext-0.1.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (352.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

blitztext-0.1.0-cp38-none-win_amd64.whl (210.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

blitztext-0.1.0-cp38-none-win32.whl (201.5 kB view details)

Uploaded CPython 3.8 Windows x86

blitztext-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (508.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

blitztext-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (618.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (525.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

blitztext-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

blitztext-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (447.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

blitztext-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

blitztext-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

blitztext-0.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (353.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

blitztext-0.1.0-cp37-none-win_amd64.whl (211.0 kB view details)

Uploaded CPython 3.7 Windows x86-64

blitztext-0.1.0-cp37-none-win32.whl (201.4 kB view details)

Uploaded CPython 3.7 Windows x86

blitztext-0.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl (508.5 kB view details)

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

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

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

blitztext-0.1.0-cp37-cp37m-musllinux_1_2_armv7l.whl (618.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

blitztext-0.1.0-cp37-cp37m-musllinux_1_2_aarch64.whl (525.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

blitztext-0.1.0-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.0-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.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

blitztext-0.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

blitztext-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

blitztext-0.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (353.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

File details

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

File metadata

  • Download URL: blitztext-0.1.0.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.0.tar.gz
Algorithm Hash digest
SHA256 f7bad6ce9372f834329c9fb18576b2e7752b069ea082bf859c4ce070a3288b47
MD5 74d7427289f7024972181c369757d1cf
BLAKE2b-256 0401598a146c0535e385cb5852a28a22fc391b690080c60a5d6b742fdbfa5e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 883f1836c4ab6b8878eb80c44fcbafbf4189d19bdd0d677cf3ce91c86a63d83a
MD5 ae3c5d4b3533bd387eb47e48d3898c65
BLAKE2b-256 940e4148cedd602595d07da603a7249d8231651a38ef4fbaaded174dacce7ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce8ed911520b257d4cc2638d0fc006403079cdfa4684e4c09e5a55f35d30b415
MD5 43ca345f788d3976390cea3d910d31af
BLAKE2b-256 b259e13bd09db7ca1f7a7d3cfaad12531b905ceb37f944b63dbc2eacd700d010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f50ab32b9f88063a11e1e3621437c5459a1118abed1f30e17770ac5ecee1fbf
MD5 002f4bbfc2472731041bf11348f00cef
BLAKE2b-256 1a8a4a1e5dd6c6af333ac93b09d88dd6a97c6b8ebf0b2b90be1a41defa9d04bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8020ae5c6de5bf40fc6ef6f38040afa7bd10947b8075adbd13630801fe6c7110
MD5 bfd37b4495be1662f0437eefeda1e403
BLAKE2b-256 d6d09b0c6cea7e2d0fdb468ebf43def6563b848898baa7fb330045417c5ba91f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3864ef365c5b73bf8f007d266eef8e624432532cd5cb9d58e03d23eabc408eb
MD5 20e55672b143df92a2486f8f8f045025
BLAKE2b-256 03089d3292be3a2819f70e0539680e5d0bcd476ad726aea3c606732bf0f776fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 425d59ba4367e4a2bf828c81d9ea4258e65f94d0a87b9b5fd0a4d5ca9fdb043c
MD5 e3ee39eb4eeebd98a1e51bbb72bd5217
BLAKE2b-256 6493c54822c00f2da2f32d069ae451e2436c35d4c214b6e9e6234e6bfc7fc548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46a56245b8e83e7d486db9ebd172e4438109bd129bb2e4727e118e181ce9e0c4
MD5 c7f6f9533de0bbd5fbd3ca353d4ef8d3
BLAKE2b-256 73104541505ca555c1df79fb85340fb9ec276a1a3bc9600528f56a56d88783ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60794aadfcdb5f623b8212d20fd311ceb604cc5e21b07d31fca5bee70da448e0
MD5 304061138fe3533ec11b95cffe6da431
BLAKE2b-256 00ceabe9711bd0c85f505d139ed68c107b0cd6fa9592859e628d2f7dbb05602f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 097913593094069209addc0668ac4f2d37c84803abcc855af44fce55d6b4cfa4
MD5 237ddfa8197d24f8aa491680eb31d7a3
BLAKE2b-256 b19e148c987946999842549248549e3dbe6a29d87ca5e0fc94eaca6c6dfc628a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 def13876c12bcfc022288431b58b8f33e34974f9ad6c432d76d7d3c5681098ce
MD5 87885a370cbe7634261febe220aa6d2d
BLAKE2b-256 6e08bab48ed465e8ecbc4f8a38d05924ba07d98a9213a6b15825c9c5f450fb00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe8773216cbf048c3a40b0b693bf2aba48b527b82c2b0a97b7a3b83441f8dc99
MD5 af0ea93798ae6ee843591162fdf79d32
BLAKE2b-256 9ccd834a1b5f718228343074e07b62e0dcbe31ee192d7c05576cebeff5345f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08c0f99d50b6819a8a6f8cb9df79e8565466d5c061223a34264352bb429b4794
MD5 0b7d4869359537f6e8ae247bb7f1f838
BLAKE2b-256 543bbfce31df7b6ce3b290e0e3ea7367a40c7af417156f90e7764627fc741bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05e93b047a608384e41e2729eae80b1565e948fca8414701582cbaf12fd424b9
MD5 5ba4a69547b740e11638bf77e509fd52
BLAKE2b-256 11b02a757dbfd45f676e16f94662f98c056c149549f321a4d56b32649326cee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6da0a74cfa2c77d2690c43c210a301b06eb2142f66c079b78b8ab3f4cd359f0f
MD5 1c67f682832a5958d882c5c3ddb460c2
BLAKE2b-256 c36488427ce99f3c9e4c3844f25c96b2c25497c267613478e485ba945e90dce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 806289952d75cb54e3d457810f2f105a6165d70c4b21fcfbefcc35f3fa444ee7
MD5 cbe13a61cd6ddcf201d50bdf30c53cea
BLAKE2b-256 ec6be483e97d0701f19314d371ea13eac5a842906c19ff48d42bce0ddb1d0301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e32ae3a816176c1d4e8b1e3c4131e38b91a3f716c544884a528045e8b468819f
MD5 a88cfd9fe90267cd15348c11200ce621
BLAKE2b-256 e08eb235144906299b503dec814661c145ba297cae8b1825b39929d1961276e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a972f5a1f99f244e21bbc03e11bc3b637390cf888631293dd9df079209fd5a9
MD5 252058a776e3511981fdda0b5fe19c24
BLAKE2b-256 ebb06fd53b4bde01efb3283a340d8f26d4bb6dfb72daab939150a83aa972ed74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f4682ac76b6d3b4f129222511b2e84df3b38094b49786ea14a8dde043f58c3d
MD5 e5200f9e265b94bd929b0d11550b78aa
BLAKE2b-256 f3276264905214e1bf99a76d189fa7a87097fec6d99d2089e1427f0f07cdb600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 916688266d6f18c425b4fa5c6f37efeb59fc724b18d57cfd47a3879fd4bd7b86
MD5 2998ac231cdf717902b81a75bc945d05
BLAKE2b-256 ec99d0f780adca48ebbd70041a2e46281e24318d15255f5c35cc3041c7df42df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc3dd3bb19e135ee7a553540ae8c6a89edcd87292d525e0bb669959d3aedaaad
MD5 ebf066cb9a7b3800b4a513407370f8df
BLAKE2b-256 3a34ca1c48b9e826a85fdd072863997d0ebdec191a9959b9048ea75f2fd69476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66fd0154ebda43e4bac1ff3d7ea2982c4ba509ed0ff47ff18d811fd819680e0e
MD5 004411228ab6c99494854ef28ebb4a52
BLAKE2b-256 fc5222e9828a4bcaee4622cd1a74337fe116aa7f84f332003fcce89aa4d2e895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 913459674eb95a5d4ac75b9c86f6be52962e14dddd144887d07c8a6635eb081c
MD5 ee2aef4cf2d96520509127c9cfea68f1
BLAKE2b-256 3cfa97e3141f5398db70e7257ebac314d73ca7fb433df145d3283b83270f9d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab8e5dd22a5adb5db490974f089aefef6435f3430cad9606c6c9119a8dc2923f
MD5 b2ad379937a314a7301d816f2e1cedac
BLAKE2b-256 b0dfeb81403e9d7a0e77946ea5cef0f67a793b2397eed9e9f5e642315f0915d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1ac0be208a07242f4b2e89476836de9b8646e6d9a43701ade335e44cde48999
MD5 a8b971935e5c29c70a20941b7d00d64f
BLAKE2b-256 f2708b9e0b6cdf1d16437ca13a2a2ab369c54b0b05e462a7554ab1858cac80e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb518a758b62bc87d9f43540197171c79ce00c9acff1502e204fe4e2ed1fe2bf
MD5 0ed4de72c41cc871b6b854f89df39f4f
BLAKE2b-256 2abc8f5e2a5492cf16457b2a960a41b90c2f90d233678423aadeea71f397d4f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 069a4919c8c3e4a2adec6cd037e841f608372b519b9c91bef456a9d0249b9e3e
MD5 5f6b8b69391637b7674da3c361baa9de
BLAKE2b-256 dd0c45d38e8c0df1a86e42323146a79fee435764f549a2a5509e3d3ae5c5fc64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b6bcb3402561f4c63bf062d18c8cb4fafedb18d78efc0790e13d24c2d7f140ec
MD5 3ce01fcb3b3ba48c96921e1ba05fa4c3
BLAKE2b-256 c513a8671c5c95ef0ec7c8c7642b0cda5938341f14f512fbdc3a4fc93bd7290f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d5146537c36284fdc384cbfe99a610b7a4eaf4939822235ebcded455689927d
MD5 2e848e1cfd8334219dd625e241dae9b2
BLAKE2b-256 2317ebeb0cb5d587063ba5365f3e7eb9b684160c99d664ed583f8c213e34e5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 399e3e49dbcaa6bb2993bfac6bf8e80b6fc9ce7c881c84bcf0710fd383d8a77b
MD5 53541a42334e0f795803192aeee353fe
BLAKE2b-256 2339a1e1436ff2bad8bca059035cef8c13871bd12f4ae838945a0c21794a256a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdd217044cfa50fd8edec9e1abe68f636cb5ff457bc15aa22aeda9505a854f7a
MD5 afc5f82374f4c789d99b934ccb8cbed7
BLAKE2b-256 92ba4ea4752f17d1a7cf7bc52e6a638a6abc221ede645b5b05bddf3d1fb8b270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 adb2346c105f287962b6e23e4134b217108bf45a900bacc028d0d85439e71b8d
MD5 6de8d73bd11117e203a120617738e010
BLAKE2b-256 15ed0673ecb0d8d34d007db987e5fb97552e5c6d2feec4c8aca9b3d27abbaedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d0f2569875d77be527bcecc28ccde91f84efe06e24789852b2b021b54890e43
MD5 3346339f7eef49de6daa8d8f5bccdc5c
BLAKE2b-256 5f95c0ce64d7bbf4d1973433843e63d7d8d9db702ff944f2af2c2a4671ccdd2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aaf42b40115b441a6b5b46684d829fb3186d1ed924104585b03f308fe78e4c38
MD5 8bd94db6b020dc5220f6d3349c7aa76e
BLAKE2b-256 07c664e17c8611842ddadd8b66be2bedd0f9776c9f31c1b025d4d1769c1faeb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa403a83e3e4e916ecdabc7852bb0399881d8e5d33dd391a7b00956460ab8891
MD5 9d195ec0b7047fed9c6add7a6309f9f5
BLAKE2b-256 4c8e752f04ef32f9d8af58acfce0a97f990ea4ab295a04b541769269309c95c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab612df95f587dc96d86052f85b88616e27ef53166536d0ebdc162688dbf12e4
MD5 ad04e44e6d812ad73f2663a661435698
BLAKE2b-256 493771d004b8129de5d034e1b3a8c23c3878b2e5fbcae75741c8f498bf3affb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea62ba7a09ebb0620a8ab9e5301f3bd0bcae48e63c5bc4b988b8975911b8230e
MD5 ecd709ae46bf18b317adec8ed515ec0b
BLAKE2b-256 3a26c8aba36779ad47be47ca542209016d6b18694ffcf8e605bbc10c889da5a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 97f7d152d82f4ee7b5ba8b1b59c0b4f036bf03d1bf47e5c09f402ef8c9b6a742
MD5 d4bf6ffd5fda8d8de7011c6566faf107
BLAKE2b-256 b1d0a5e13c2281c0ab2d468379f9b92d8c5b5c59b2dafdf70d8da421ac41e5a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: blitztext-0.1.0-cp312-none-win32.whl
  • Upload date:
  • Size: 200.7 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.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b4f7a56efb9cb1d09e2b4139bf4c613a0a88deb8850747ccdb5dd470e6e8f02c
MD5 72d4cc938d62dfc34d0124ff6fbdb77b
BLAKE2b-256 f230f8df0a22e2f4c9a0f59cc8fac7c0bf416627daef06efad998ed3fe61d7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed37bef4f145334f12d2327d998f89f71ce33c9d24ec25ca4b482bfb3002d3aa
MD5 1a561d1bd3022b24bbb5279cf2edd9f1
BLAKE2b-256 21bac8b8b9ccdbcd4608203a1e7eac91a1c1b4bc56fd9393faa4b62622d147fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c22516d69419540b588680a004a3c29d3efdb1e70e6829c04c10b0ced2eb7f1
MD5 11e9428dffd016fb83b808e210b4c589
BLAKE2b-256 570a58f1aedafe6f665ceb9b093dda9af171c05b1397fee93ace26ef17beadf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed4c8f5a858433e350fbc10504a4159d1885b3ee2f857b2ffbc6c55f4af37b5b
MD5 ad1e29738a6b42b14afb492e5f039d45
BLAKE2b-256 49e21cd68bb6ac3b084302580d05df91477aba599630809d0d1d1f995b085109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39c366b57f27397b0936b126fe12d25cc8bb4d8dc4bcf3018022749a532d7dbf
MD5 aabc9e6c061a207d77fa147fc50e933a
BLAKE2b-256 ddbe32530cd30241fe378f5e11a3d5930702f2ad85e8954ee5ad4b9b974d3af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ab3fe89b2b55ba1dee3fc1d28f5eec6dc16b4b811a62263c071ff106caf0231
MD5 d4854566304d58230f3d73d09ffeb716
BLAKE2b-256 81f0875ce9c4065c4ca9a61665ba3f3ab2645cb71f5d67996188c26f80832fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8870fd3b1d92f662e27f9ee214d91a85e2e2142edb35c73599ac2cedc5b89d90
MD5 0b0b59086b33690fd61df7ae57f8fc65
BLAKE2b-256 5231532719a643233103557df9b5bbbbb496dbaf6af5b5580a87450461428b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a358e315d7ada3e304f32224791c009d8f354cd16b41e408cfbd1c1a97ecd78
MD5 9a87790df77158d63a513d6998877417
BLAKE2b-256 af9a6a375c8806e349a12bc000829cb4b1eee4d82fdc26d7b42ca20311c0946f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06a26feee7a7d73fd07d70d0effb9235de37408298583ea84026eaabe46b44ec
MD5 4df89dc7e96c9b6dbceb0f1b2dbacc1d
BLAKE2b-256 1b94e50345a0a7bf6990f2bf852fdf42d225d3fe13c709945816b99a98f8c19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0ddab02e08a7cdcb9a106285e98a867c5eba2727e32bb594005b2ca52b75e5e
MD5 ea127f4b700308511977e684cd0fd405
BLAKE2b-256 74cf8654fded669d0999f6bca6692005394b618eba95bb18edd01e0c0698c33c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09750b6b3516193fa91b0831fbd39594414db50d7c682f841d4d691f9c03fc2f
MD5 5082fb4223f0ea92716991caba6cf9c3
BLAKE2b-256 2f2f98ec181f0dad5f9b2a39e9f57d939cd50663cd4dbe63e97e96752dd5e00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c09772bf745bba3f5d18fafa6e0640e74882de4f9b336302702aa16b83606e6f
MD5 2b5816887f4ff533390b455daafa8613
BLAKE2b-256 2654f7158ba71bf7b2ecaf139c85b18afd2806f15636fdf67070815343194e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 447972da176bcc8fbeae60f9aa26c965d88e35e3b0c9a4d524b4416b8248ffb7
MD5 5a13a6b8a3c127d4180313fb5b0e15a1
BLAKE2b-256 190dcbd8273d6bb1988461af814ba2e3cf6f2c951aedd52d8bb66db056e0c079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 1ca520c667668e944d210837c8738d19e93fedc355dd440fdf503c02e9ae7964
MD5 a264d612b23e8b087effcdc11dc42e46
BLAKE2b-256 63307ec118590d961274ed990c891d5f341826278036fc9a4cf61d75b7703335

See more details on using hashes here.

File details

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

File metadata

  • Download URL: blitztext-0.1.0-cp311-none-win32.whl
  • Upload date:
  • Size: 201.0 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.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 97c2a4217d7a9c5576e730d1f1d3fc88e13e2800df0bb07597d813526e89981a
MD5 02d7379570c40b5896b1e203e09b6904
BLAKE2b-256 7581112beec5d049dd93619eac0f8686bc49aa9f298eb0ac5a9def6b4889d680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d3d897109ab898630fd1069995591c66450541c10b108d2dff3f583d46b35df
MD5 6d8a1cdb01503a10fcbd9ba9f3ac3f36
BLAKE2b-256 e843b185bc1c8ae9dbfbab0faff9ea6d63df575903cdb27a8871d40f7a58bf19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc2092b3e2cce87c4fbffa51ce2eb28dde3424d0fea38774d431a2b90509c6c8
MD5 b7f903619db330627a3cc63e6c269f95
BLAKE2b-256 9e940105dbc6e264ed4f7bce28f9037edc6118228f0e0db45f894bd36a6df1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c072ed23cd7c7437101e3745959a7dddf7b353959b3551dd5fef0da13662228
MD5 ed7a61b5e02c51cc289284d55199261f
BLAKE2b-256 31105e32f8561a927cad47447f925af8264968636c1bb14f32d53f3e9c076585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51ff6775cfc74a7e126f7afd49ff9e7eb7cda033fabcf55da8be4d40bc5d5921
MD5 b4dbafbd246f11b191aaac5420b93875
BLAKE2b-256 e1491025a40076a7cc19328afd323834d21201f3fb43205b26349e0ca2b6cf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e05d7f798f1368b12ca253b0c1bd5a747c6b194e9fb261e414e8c092056c5872
MD5 22fc3c22ec2db039ae0e264dfd47638c
BLAKE2b-256 fe2a0cd423d6ae8174d7bf43569b477c384082f3a67c2c8c22ddcfbc47d2577a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29f6f39f6cad3bfab661f433f7a202be4a0758ebdd541af613ecf449f2ffd554
MD5 469cce1927eac19900a737c0b3d2d234
BLAKE2b-256 5fa3f351c2aee752af811f61023dd1ff14aec435a7c3a233345025b401522c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e47b2ce6e5e498100333c3f6bf44820869637afdda72c71f7a5308c255cba43
MD5 471a3fed6451a6eeee05038497651dab
BLAKE2b-256 4cc097e808f37d58d9a334cf4937011542ae6383afb467301f436c387dc03432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cf9ada845559c72ffa3ac40c39518026c417cc3643198d752c0047de95cbd22
MD5 d6d64726e165fae0fa9aa5a11910797e
BLAKE2b-256 b49731dc8e9562320e429388256cc0633883c92cf895f66266355545c2e6a28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e3d367f2153b6aa4cdf2bfd82505c60da3683679dde36414af2fa36eb828142
MD5 3f32db03ad8321e59d6e337a2a76be19
BLAKE2b-256 a1fca0be27186f7fbed5fbe3a66bf169d01c76436720a8adfc259c6e61b3b34c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac9274ef4db0e067544f4701073815941b920fad41249ffd1d7d7d2f79d196fc
MD5 0d0bd82733a716186d98b66c8f11173e
BLAKE2b-256 f458906976c4542d9630f4845ccaaa4cfb734cd733d71312b80d5a7e5db68daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1232dddeb6296a3be509adf6c59cd2630164165c2f635f0c03a73c26d1403014
MD5 99d069d5513f089ea5f78008e021f966
BLAKE2b-256 f6db9c75610ee3ef4a7c9f33ecdb05b0b5e0cd61aababbb05860da0193b41493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1850216f1c8b84160c69682b73cf31400fdcf1d89266ab65457bc77f4a52074
MD5 8f5a78aea243e2ce0defa7bec1b281bf
BLAKE2b-256 030460bbb066c553dec4d264245b5f74daf36a89c5dd9f59094e59698ef9157a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 11bf4963a8c8d8fc0851854bffcbcefb986a4bfbfe8d728bdd378160e2ca6d60
MD5 f52596a162f88c2d7f60393931d5b055
BLAKE2b-256 3d2b8231f458178b51e520166e49f092f262ee64ba93846ec390a5e8664f1929

See more details on using hashes here.

File details

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

File metadata

  • Download URL: blitztext-0.1.0-cp310-none-win32.whl
  • Upload date:
  • Size: 201.0 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.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0d6463e52919010f85be26ba43b91df6c418b717ed500c0ab7067b596a86b38b
MD5 dd298f8f77584347979937387f102f44
BLAKE2b-256 cedaaa2deefad36f648fcf2e83c854e9eb860f0cb685c55aa48c5a4781e12164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fd7782ced86ef229ec91576a070d15401aaac0d9bbc359513d2495502e195a1
MD5 270f3518a175282feb4a86cffbdbd7fe
BLAKE2b-256 7dca50aa1ba076979f56a0eaf58ed2f83bf07326e9fd6d3808d259dba5bd7513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a2b74f3cba2870ef30dbe914b3be9b0da15f5677c16531eab9dff285296e507
MD5 e461e7c9eee11bd302bf01ffe2d1bfd7
BLAKE2b-256 5932df7bac1128a87c1e23dac04d1d949b81a78367e78899521604991a88e423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5488a1222297c613aad9401b55ab4f768e198b516f44535a785c21d24e17e831
MD5 10b4cc6cb8fda934ea324b290a0f8fe7
BLAKE2b-256 8f8a35d34e6e6209c708e55484aac2efcdaee029837adb7184997f2ad1cfba8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d97e80862e003f85b81e734194f0d8e0157b5989401cebd036ebba926769ac11
MD5 8f950ec795702f9ae7d4c3fe5cd90776
BLAKE2b-256 b42b0d4106c91bf521b07bf3e67a7c51abda2003036ea444caaa3eb08a3f98ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b553fc119087d900ad3d799f4d454ed06ceb3797ff6834b928f5cea700d277b4
MD5 2165dc0a7bb058238601045205706d85
BLAKE2b-256 41ae4decfe48512e7e10c0d1ccc0bbef1bff05d8d140245b1f6c86ed53484907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d052f9fe537f5001261ac7fbc1c86f8bbfe7ae7597a3d45c543e2a9b1853fc85
MD5 8c26f040dab1e1c22519c190c190b8b6
BLAKE2b-256 208a0cd6cbd71b0fe3f0163da74cff257eedac1d361c6a7795a2a60283081666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b01719fb67284c05c5bcd749162619fe21c4799b256752500c95c3e62fb21116
MD5 8e46e3bc6545642665038c5eef1fa3ad
BLAKE2b-256 97c2fd2358ad8557aced30fadc16e710732d07d59183516970a60ba6bbb43b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df0c9e675dfb279ba286d497822839683398a719e874afb517c27cc4f86248d8
MD5 30440322e5598ebf3d48276ec12fc5a0
BLAKE2b-256 b3df4f49586491401db327edf2dae012ddd0a3be7d9670df76f488a1439d39f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d8c6f68b6a54c39cab9b28122d88cc9f147fb9d5f23995d9d06d8c4498fa044
MD5 c3c9ad13de183f01d47fcaff13a6c111
BLAKE2b-256 773a9289d41ac7771ac485200fea0ad00c2eb28f83ddf59dbf6d03e5f24f87cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c724809da676ce63ccf3da9a2e29d374eec649e1c4078fd396f796ec85f0ec3
MD5 79d9863a8e5a6f9bbb3acc02987f64f1
BLAKE2b-256 cacbe134025487461ff6bccc4b7111ef75d065e2f320ad62c5aae37484624cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 573bfb9d0d091551d161f8752271dd77b054885b8a3d5461a9f2db56287de7ba
MD5 6d25c591e3b6aad3ab9b2ede3d24f4d5
BLAKE2b-256 1498ff021d31549cb6fb0b98973ec87f67ca006f5f5fcb4c39a66deaf4f7a2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 9eb1c35d3d6c6a861efb97135e1dc951d08f985aabe4cdf5d00c1f37ff092293
MD5 3345dc9c671f6fab7c40e2c8ccabe6a1
BLAKE2b-256 870370de82b46810e613bac4d50246caa618f587c69e7fdc758ef7c287f89f8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: blitztext-0.1.0-cp39-none-win32.whl
  • Upload date:
  • Size: 201.2 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.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e9d90282844c83d19bba50e92f3863969a713102d832a84bd4cc5bf0bc43614e
MD5 51d3d407e9d0a31331cf92b547eb9709
BLAKE2b-256 57869ff9ba80bb592cb9251ed49b76457ba1eb6a09e8dee171e078c968aeda14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55ceeaeb035c193e294cd7e3fbd086c7cb970c8df11c6cfe10a6df5f6afe398f
MD5 1512a64fb5815e4fd75dded1b3950ac0
BLAKE2b-256 a33bd44c20c46475a58bd3aa48e33fba94d753fd10e65de48a065d15b3af9afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 460e4411e43fe27b3715200c5482a1904cf8bc805ea2fc3b7205ca95f118a9fd
MD5 073f3199426e4c063d2566056ac918ff
BLAKE2b-256 39dfc871d7da9b9b8285a1adf211551b5fcb7586eb79aecb868e927ded87eaa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b13a3ec8fdeda00b014846b9fbabeef87747050082574e720b6c1bebde118711
MD5 adf9aba78cd24996ea0ceec1db055ba7
BLAKE2b-256 b8b6c2a8303578e7feb1417865d59017e66d084980db851e3d0067fac1bb69ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c06bfe8d148fd840047c3e202796606c60cee5982656a0d97c9a1f6824ab9972
MD5 9d47606e695a63ef0d33c377062bd677
BLAKE2b-256 a3eac26458f88afc25e774ada0f1f2060e5b2f4071de599051d18efb40a1a6a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdc63af799a668217ef806281598c567fbb9f6e690de235cbd57203f0381b03b
MD5 58dd89275a2b11d725afdcb30ed7921c
BLAKE2b-256 87807da81cf1180f897dae2e26e962940694a319baf469e2adbc5bdb01c48217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a30560b6c563b3ebe2dcce48ede6fd07229edc9a19c76c75568d753f42909364
MD5 7a8bdf6eddb95e31e0de6e3141081334
BLAKE2b-256 29761f5c52659d833b0f4e9b6b7353cb7a2ab66c91d9771e5d5c135bc81dd6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53f0b5924c11b93ae22f002e43035625e7713165b39c36f2407bc691b0e73a9d
MD5 5d1bd1bcc6223b21a533b755cb7c8934
BLAKE2b-256 4516469b599834424a2c1be9fa55f11a22eb9f0d0fa5057b8100745c94dbb086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0caaa007f58af77db3dd7312cb5492f366eb5f3ce67b79cc1cc02dfd04ff1178
MD5 d1f4f4085e00c1c2f13a4acb7b530a5b
BLAKE2b-256 80006fcf0d21a282d59487ebc0a2cddd80614a99f954d679eb5c93cfbd02ef36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6de468188c903d5eafd7afa7fdeaaf5da8ffec7f8c8c2e007462c874260f6ff2
MD5 0e4ab4838a1b14ae9dea0db2b96ec7fe
BLAKE2b-256 5011f932c4781baaba1d8fbc77a2916acbc928a82462bb2f7c73f0704d22bad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 75bbfc1f9508a1c8fe8fe42bac76c81adc14ac9d01a1f643a07bb7b3d64622b5
MD5 aa45e1160b449c39ed79edf89b996ccf
BLAKE2b-256 e663d76000d6597444694c7f8e6cf93067d4208636acf6961d8f52a9fd1da14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6701da4c1934088475779ae650eacc4280ffdbebb92a3291b1b677908eeb8c1
MD5 f11edc9eeb0a91fea75425b95f2c8315
BLAKE2b-256 97859dd2b7510b6f0f23dd0e533599e4481a9448f6d9e935b7bc9a511bf81def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a6c52f86439b5d05d1f3601325674426c1cc4760544e8ad2f6e9a05b329802b1
MD5 452f154aae06d5cfc5335787a1bc4a2a
BLAKE2b-256 7eaf9c7014ff60b1d7115cbbfd9d2ea996852efe438be785426aa17d66d6093c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: blitztext-0.1.0-cp38-none-win32.whl
  • Upload date:
  • Size: 201.5 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.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a490e946e7024a534b570514318db3e556b247e10c1364b38859d380b5696840
MD5 f778e0220fa978585c3858062760fb21
BLAKE2b-256 d669ab0b34cc808c386ac24bcb220fd7ca29def7a92f4280355816e15c176aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7351bbe05e877355a17333ec89438533eb2af1c139b56487bdf70352940c8ae6
MD5 560cd283d55aa26fc8c1dd8e9891a8ef
BLAKE2b-256 4e655ce29e1ed507a860a2bdf7e1f37c18256ef4b4b8db2d13d3738b0aaa72b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b35e8a1dbf7faf610b4a6f2b6193619d2fb7b838c8f62632c3d66a2bc712ba27
MD5 62fd69396dab7acef58fcb84f97d1647
BLAKE2b-256 a5ed1433dc443635f674d08496c2c7a88b5378aa41e15f1270f593fd0d889d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff59598a2e952ec8460ad9d621dce2d177de3a0539900e1209f30282dd784067
MD5 7219ab223a03443db1e81a399bc09e13
BLAKE2b-256 5fe790c93c92ddf2e7540d9b8a8e5fbab4ea51e9d5e7e434b5b2ffae667d9a24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80cdd69180f7ae3e3b3b12c95de4a197f3095b17bac8e1b6de4a3519f767e58c
MD5 cf7c2af5750fb6d6fe1e9b8d118bfb5a
BLAKE2b-256 00fe7e53f8e9a3785a7c48ff1e7f3525356c2b429c6fc30e552ce5ecdb3dfaf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 068c84700932576f43cfaf4477a762dae3cfb76f1bfa0bd9be48397f8963f424
MD5 c53b96f29f00e4052e1a68ea8d6d8e5b
BLAKE2b-256 7588a4291d007bd83351b6efa83e2e3b65f93de0c6e3e466fc63680bf67aef0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 acc29e62dd76ce0a450c0cbfde24645496f308484e41156fa997c38c7d274b04
MD5 fdad848a7c938eb97c9e59d7a9daef76
BLAKE2b-256 e6927ae11399be2091c6fd4369a0829662b55fa4afd238e7e8bc437a6fc781e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 088aa7e4ab40fda395a698f3269087227d0c5a1ed6558e1e914f184090b8494a
MD5 2a142c9fde7443fb00d80cae5a9b4d94
BLAKE2b-256 76e083b1ae7f6270f6c0de85d31264175ce06326cb6fabad06e627f13bf2ca54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4dec39a64dcb918107ce6f425d1899dabc3f48e5166655787f2cc938c25dfe81
MD5 831f631669d7c65fb621b9b9118a7fdd
BLAKE2b-256 112a9abd24301e7622e4e0a0040355cea265b7a48974629a21f220ee0af35427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ef6ed0b6ca059998cdcdc6fe5c7f2fefc1578a3f79a6eecfa6702e6f74e589f
MD5 ed8fdf97e84a2c0244139b252dfafd31
BLAKE2b-256 b198672003302f500de7bc3ee2bc3b559408b198805431a1e6f1dba2446d7e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2b2663ec44a80069bf29f2ef33852816fe8c98b852463a8db810f60d3bd42e11
MD5 9a53c0a8bdd21460f0db3163586f560f
BLAKE2b-256 4c77aa994cef6b41ee9cdfc05596dedaae4c19386327da1421a92d63e4a3ee4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 34c62d655d98818644f3fdac779a92a42c9f201425af3b25bb602559f9660f7c
MD5 53413778129add853f127b6205b1df07
BLAKE2b-256 a685f5f0d5028de9f5b618d804dac9ab840c4d04729c430a90296949fd3eef24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: blitztext-0.1.0-cp37-none-win32.whl
  • Upload date:
  • Size: 201.4 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.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 970236154cd463cf47bf2d0eb4f7b89cc31628c37236b59e77e9d521803580b2
MD5 ba5cabed5b950e2ebb0a42f0abe3a87b
BLAKE2b-256 88ee6b4457c58b53c960bc046c883649702493e5d4dc4d1161e1ab3bcc9f9f7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9d257a6fab23fdbcf16a8a06bcd40353a62cdb3c4d16daa5431a466053ea35f
MD5 7fc5006cd0e3cc3f789bbfff94434f34
BLAKE2b-256 27f3ab3ea8db9cacc086376291026ce5a57824548c2c329212329d71f3eb08ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14b22e16578dc45c2564041f1e0703e84d0d2f86cf8ad9ad0c390b1db94fb9d0
MD5 41e6bc06cdf9f0f66ebbb1c93972d37c
BLAKE2b-256 61c0af34ed87890a8795340907a180098196eba9b55adf83e52885552a94f1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ce0cd89a8461ffb642824b65fbd29ba684500d3d0d2dfdb3bca3d5c32fb699e
MD5 96d9d55ad64004aacee9d5b2e433a658
BLAKE2b-256 e4bd09e3de4ed15119d755faf91e855b40ff40f85792ceb7628cbd6b5bb53649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f643443ed60ec7bb28435f6e86205afa470cef9739cd1217ca8e9d9d0b35e7eb
MD5 ecd5823a7f09319309cc7af6f224acb2
BLAKE2b-256 0c7fca8c08d22274d9887e6dc8214fbf066dd850b854666f3a4d6aee1942c56d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dd957b4f493505f1470bc08f803af4fcd8a94c374ba5339b96c48c1c8f9cf9e
MD5 601896feb02044170830164e397358d5
BLAKE2b-256 05fdf55ace4035e97320679e0efc3b22b4d2c748d070077681f4234d07c77029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 224542cc358bc45b434cbb5710c7b21719875cd894c81407e2cf9ead4ece48a6
MD5 dcddae5110a911a499fbfaf3a0d538ac
BLAKE2b-256 74ab90bbfed4582c457f156f39ea1744e924a85646faee8c8b6244a3e6f39408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73061ab81d36b8d53319f32ca875f8d2beb5012ddc8f087ab7f5575f4728a958
MD5 20a4a9f46e18a00c704986a93b6e8794
BLAKE2b-256 fa728d7aa51d3ffe175e0fbc639c0aaf0303dafe3c27cc7b04699897805909c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 459ae19725f4584e5114ea40954fba0128b5f29e8b6bc5a00211af63d68bd8f9
MD5 f654abfda5141c6ca679ea55bcc29bb6
BLAKE2b-256 3ba00830f14dc45d148f152573a2a69f16de58974c7affef64b2b8df9bb8c532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46c469e98fc4016d35f20180b414db2bc6d594e7c6484727cba455829cfecc77
MD5 ab541355c1ae2a8ea73f29464ed3593c
BLAKE2b-256 b6812a9bf697e5cba079557c4dd24c1bb59b78fbea976e9988aa78b3cef2942e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for blitztext-0.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 673b495b2078933d12459dbe286b310d4e17490908e1325c00119fb290a8df5c
MD5 7b90f488b0078c2cd1a82486753f3fdd
BLAKE2b-256 fed79eae7d646fafd86eeeafd6798a762e285c063610cabf2b0ac855105e16c7

See more details on using hashes here.

Supported by

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