Skip to main content

A library for extracting abbreviations from text.

Project description

Abbreviation Extractor

Abbreviation Extractor is a high-performance Rust library with Python bindings for extracting abbreviation-definition pairs from text, particularly focused on biomedical text. It implements an improved version of the Schwartz-Hearst algorithm, offering enhanced accuracy and speed. It's based the original python implementation.

Speed Comparison With Other Abbreviation Extraction Libraries

Extraction Accuracy Comparison With Other Abbreviation Extraction Libraries

Features

  • Fast and accurate extraction of abbreviation-definition pairs with tokenization.
  • Support for both single-threaded and parallel processing
  • Python bindings for easy integration with Python projects
  • Customizable extraction parameters like selecting the most common or first definition for each abbreviation

Installation

Rust

Add this to your Cargo.toml:

abbreviation-extractor = "0.1.1"

Python

pip install abbreviation-extractor-rs

Usage

Rust

use abbreviation_extractor::{extract_abbreviation_definition_pairs, AbbreviationOptions};

let text = "The World Health Organization (WHO) is a specialized agency.";
let options = AbbreviationOptions::default();
let result = extract_abbreviation_definition_pairs(text, options);

for pair in result {
    println!("Abbreviation: {}, Definition: {}", pair.abbreviation, pair.definition);
}

Python

from abbreviation_extractor import extract_abbreviation_definition_pairs

text = "The World Health Organization (WHO) is a specialized agency."
result = extract_abbreviation_definition_pairs(text)

for pair in result:
    print(f"Abbreviation: {pair.abbreviation}, Definition: {pair.definition}")

Customizing Extraction

Python

from abbreviation_extractor import extract_abbreviation_definition_pairs

text = "The World Health Organization (WHO) is a specialized agency. The World Heritage Organization (WHO) is different."

# Get only the most common definition for each abbreviation
result = extract_abbreviation_definition_pairs(text, most_common_definition=True)

# Get only the first definition for each abbreviation
result = extract_abbreviation_definition_pairs(text, first_definition=True)

# Disable tokenization (if the input is already tokenized)
result = extract_abbreviation_definition_pairs(text, tokenize=False)

# Combine options
result = extract_abbreviation_definition_pairs(text, most_common_definition=True, tokenize=True)

for pair in result:
    print(f"Abbreviation: {pair.abbreviation}, Definition: {pair.definition}")

Rust

use abbreviation_extractor::{extract_abbreviation_definition_pairs, AbbreviationOptions};

let text = "The World Health Organization (WHO) is a specialized agency. The World Heritage Organization (WHO) is different.";

// Get only the most common definition for each abbreviation
let options = AbbreviationOptions::new(true, false, true);
let result = extract_abbreviation_definition_pairs(text, options);

// Get only the first definition for each abbreviation
let options = AbbreviationOptions::new(false, true, true);
let result = extract_abbreviation_definition_pairs(text, options);

// Disable tokenization (if the input is already tokenized)
let options = AbbreviationOptions::new(false, false, false);
let result = extract_abbreviation_definition_pairs(text, options);

for pair in result {
    println!("Abbreviation: {}, Definition: {}", pair.abbreviation, pair.definition);
}

Benchmark

Below is a comparison of how the abbreviation extractor performs in comparison to other libraries, namely Schwartz-Hearst and ScispaCy in terms of accuracy and speed.

Performance Comparison of Abbreviation Extractor Against Other Libraries

Abbrv Ground Truth abbreviation-extractor (This Library) abbreviation-extraction ScispaCy
'3-meAde' '3-methyl-adenine' '3-methyl-adenine' '3-methyl-adenine' 'N/A'
'5'UTR' '5' untranslated region' '5' untranslated region' 'N/A' 'N/A'
'5LO' '5-lipoxygenase' '5-lipoxygenase' '5-lipoxygenase' 'N/A'
'AAV' 'adeno-associated virus' 'adeno-associated virus' 'associated virus' 'adeno-associated virus'
'ACP' 'Enoyl-acyl carrier protein' 'Enoyl-acyl carrier protein' 'acyl carrier protein' 'Enoyl-acyl carrier protein'
'ADIOL' '5-androstene-3beta, 17beta-diol' '5-androstene-3beta, 17beta-diol' 'androstene-3beta, 17beta-diol' '5-androstene-3beta, 17beta-diol'
cAMP 'cyclic AMP' 'cyclic AMP' 'N/A'
'ALAD' '5-aminolaevulinic acid dehydratase' '5-aminolaevulinic acid dehydratase' 'N/A' '5-aminolaevulinic acid dehydratase'
'AMPK' 'AMP-activated protein kinase' 'AMP-activated protein kinase' 'N/A' 'AMP-activated protein kinase'
'AP' 'apurinic/apyrimidinic site' 'apurinic/apyrimidinic site' 'apyrimidinic site' 'apurinic/apyrimidinic site'
'AcCoA' 'acetyl coenzyme A' 'acetyl coenzyme A' 'N/A' 'acetyl coenzyme A'
'Ahr' 'aryl hydrocarbon receptor' 'aryl hydrocarbon receptor' 'N/A' 'aryl hydrocarbon receptor'
'BD' 'binding domain' 'binding domain' 'N/A' 'binding domain'
'8-OxoG' '7,8-dihydro-8-oxoguanine' '7,8-dihydro-8-oxoguanine' '8-oxoguanine' 'N/A'
dsRNA double-stranded RNA double-stranded RNA double-stranded RNA 'N/A'
'BERI' 'Biomolecular Engineering Research Institute' 'Biomolecular Engineering Research Institute' 'N/A' 'Biomolecular Engineering Research Institute'
'CTLs 'cytotoxic T lymphocytes' 'cytotoxic T lymphocytes' 'N/A' 'N/A'
'C-RBD' 'C-terminal RNA binding domain' 'C-terminal RNA binding domain' 'N/A' 'C-terminal RNA binding domain'
'CAP' 'cyclase-associated protein' 'cyclase-associated protein' 'N/A' 'cyclase-associated protein'

Speed Comparison with Other Abbreviation Extraction Libraries

Abbreviation Extraction Benchmark

API Reference

For detailed API documentation, please refer to the Rust docs or the Python module docstrings.

Contributing

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

License

This project is licensed under the MIT License.

Acknowledgements

This library is based on the Schwartz-Hearst algorithm:

A. Schwartz and M. Hearst (2003) A Simple Algorithm for Identifying Abbreviations Definitions in Biomedical Text. Biocomputing, 451-462.

The implementation is inspired by the original Python variant by Phil Gooch: abbreviation-extractor

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

abbreviation_extractor-0.1.1.tar.gz (550.9 kB view details)

Uploaded Source

Built Distributions

abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-cp312-none-win_amd64.whl (936.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

abbreviation_extractor-0.1.1-cp312-none-win32.whl (868.3 kB view details)

Uploaded CPython 3.12 Windows x86

abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

abbreviation_extractor-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

abbreviation_extractor-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

abbreviation_extractor-0.1.1-cp311-none-win_amd64.whl (938.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

abbreviation_extractor-0.1.1-cp311-none-win32.whl (868.5 kB view details)

Uploaded CPython 3.11 Windows x86

abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

abbreviation_extractor-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

abbreviation_extractor-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

abbreviation_extractor-0.1.1-cp310-none-win_amd64.whl (937.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

abbreviation_extractor-0.1.1-cp310-none-win32.whl (868.0 kB view details)

Uploaded CPython 3.10 Windows x86

abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

abbreviation_extractor-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

abbreviation_extractor-0.1.1-cp39-none-win_amd64.whl (938.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

abbreviation_extractor-0.1.1-cp39-none-win32.whl (868.1 kB view details)

Uploaded CPython 3.9 Windows x86

abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

abbreviation_extractor-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

abbreviation_extractor-0.1.1-cp38-none-win_amd64.whl (938.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

abbreviation_extractor-0.1.1-cp38-none-win32.whl (867.9 kB view details)

Uploaded CPython 3.8 Windows x86

abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f7d69f4ef693bab5582b30a22f7a38a96426bee60a39b0f5bb07111ebe6c750f
MD5 acb9a17d417df1c8d1ff905d4ea8e007
BLAKE2b-256 c71e335f7c79b06d8fc5927ede6ed62dd254791d24727b8a0c07b4391b8c88ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c233189f0e34e6847fddeac47357dfb8e6df962309baa167052aed4c260213a
MD5 1582286bb218ab232a83c7f51ee1887d
BLAKE2b-256 cbc1f5114e78bde0ba16fc36510fd6f5e7cd594a88ee2e508045bdbd973768ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e50868d517bd8dda0a4708c1facfae8f15336e9d00df8bf5c6670c77cd2f8e00
MD5 a9555fca1eac7e87a94f9ba8bcda4a13
BLAKE2b-256 4c3a594298aad8361510c40ffd882375df91e0d249f12986a43a5b0f12248de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68f0f095d24b2a8d7ffdf2dc0e7edd0ca6c2807c0f8ab0f1df27f9c5f529a097
MD5 fc8a01689a44414140613987185dabb9
BLAKE2b-256 10390de1c0bb6894b0ca95809484cf63432667645f51c7617dabff55573fca63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d83aa4f65a7977f5e7064b49a2e68d15eecd1d89069ab88ec052c36484883055
MD5 dc9698f832cb6cb4bfd17274396a4352
BLAKE2b-256 a1a5be34493e74ed95ae38979e63a6cd7a1720818e0b332d394ac4c5df4d8ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c795a57c3a8f4278872dc7e0383c59f84bc5512305f1377cfc2bf6b54fe8caa1
MD5 dbec94da1b9aef504fc77793dbdb0607
BLAKE2b-256 194efe5ae35a2e610b67cd2a3452c728a494a271fc0be97437cc5f6413d508cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edab25544c9a1af3e78b9f7fd86ccc1b66216d2349cc78f25505334588b0aa72
MD5 4b096f3e396b74451ee0eda0d4fdbd09
BLAKE2b-256 2b028718278739c1534b14f490c0646086b3cd17f89407dd989dbc61777a5bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59b2658e4b22d7a397eb04ac09ed76b8c08b8d7859b46e46711789ccb63624d6
MD5 372e63a3be3daf4eef4d45c70b5e16c6
BLAKE2b-256 e7b6b5cda341826db30fc7e681a886367c24c0a13d2776c1a41ca8eb56741622

See more details on using hashes here.

File details

Details for the file abbreviation_extractor-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27a5cc7551c92db77d8cb5c9ffb147bd09ad268e991d8a5b12bd72c6ed4fc4f6
MD5 eb52ae7ab4c53d333862564a972e560e
BLAKE2b-256 c84a5ab343091959a617aa380d8c036ab03ca392c3f28ce994867d44f826d2bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9bfd540e32904f8bfe90df0b0cbcb6aa6abf418e588ee7949a4ed10b07d9a6e
MD5 54ece3344b9d14e8dc8bb01eb252716a
BLAKE2b-256 3d1795a6423cfc08603fded6296dc59b05bcb0f66c5bde6b23e0783f8d82aef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c624466bddbfd2be5c223d1ff9b969ffc5ea72dd987b277d6a1dd555e61a0ca8
MD5 f5471cd4d55272b88ea416aacd41c5f0
BLAKE2b-256 ade39266f0d2dd0bcb9c2b1b6421e40043f048471f229d99d29d969894f02cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fab4648fa19717f3a0295a67024c5b43875d51080b7393ee3380ab2d371a5f3
MD5 4bb4ef4bb8ac2c113b4b1388c90071b5
BLAKE2b-256 5b33b9f0991f355e76758a08d386eec902324b18695d5e2680b2de60b8f98551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90e43ea371d4b6a20bcde7984635e845f6edb60cc7347073884929c9305feffd
MD5 d12b20b27994259a4edf07bf4da5643e
BLAKE2b-256 7794b9d425f67fe2669c7cdc4d7109cb838ebe457bb2c18d959b2a9b153bc174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e887166818e5f75b856a6abc5bda819564b840a6372ed1301c1b9b3274fd927
MD5 f0b9a8eaa02a9eb98c5907f9a09451f4
BLAKE2b-256 825d18efe324cfa10558445a465b628a1a55f1b74d2ef3d2648529c4118a2765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2bb3705988df9ac986db5f16c22079fe33ffd0f251acbcaf0ab887838d809a5
MD5 479d801f758bf3185bab6706f794cb1b
BLAKE2b-256 bc5dc4853dad4cd4e4e3d2d28807cad58e828c17a33db091675e519543d12e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38738976e755436437e59d4a19017860ba5dc837838466ec4c270dc6f97244c5
MD5 02df1bae3562d241238caac7fdd98a5a
BLAKE2b-256 16f82ee908d961294c5e88edaf731f8559dca1b9198c32d881e5036878e0991c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c66310c30e5703bbaffce252ed8365706878448a2f69e84774ae2f41061bc60
MD5 f2e536bfae9d9e129741f7fa5b7818d7
BLAKE2b-256 bc5bacc242a09b1219f1ccb5117e276afb8fd1effbd380f4183e30ce5a005521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3025acf5a7f623a4f3f839525dac68db019e40f56e0684e4d7af08f53d6786d
MD5 dd0926a8cb1444aea19b366cf6fdf42a
BLAKE2b-256 c981bb864d6fad4b37d518ca4a4c9a64e02a066fa202af3428be076a43451037

See more details on using hashes here.

File details

Details for the file abbreviation_extractor-0.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 392230e3b1b41d41799fdaab9194ec84b53025585208cfd3bb01feb38d856587
MD5 a14c6d872b6f63b3ee08c6d4101da17c
BLAKE2b-256 dba6c317f70da407b38be31457ac103167130a223ae95bbd22d71acce510143b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 851b87c473d7681e555b6f69eccd6648b8530169b7dc2e8e41255ff04e38b90b
MD5 230ac3bc9eaf3c3357a7bba536822deb
BLAKE2b-256 513d3f3d4ab81b22cbe360a44c875d6aeac721197f3e45592d1f475b428192b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7bd1955a2ca958932f84ca569f051124929be93b86a202a86b9eca1868a0931
MD5 fd668f5779639db7ccc7c0c8d05f98df
BLAKE2b-256 a7fa6140eda521b31d1031a150c70ba443ce557e85069986535f2d0003b750c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8d8fc8b08a0dcbe004b396da3013b4094b60484e6f33237d86aaf13621acbe4
MD5 a04c90b272d051572c1b5b7a51fd76f3
BLAKE2b-256 1da0f866c181dc35a4621063f1295f8a87f10e0dbe5064c234bee8ae983d267c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3b7ea5cc76651823b3fd4549cb8f67bb3fe882fdb9597a674bbbd8884df3571
MD5 c12dd2d7c5494dd7019df8cd66ef5f5f
BLAKE2b-256 345499a293edaf18b5df5c5c5465bf278a8ff8dfc1dbcfa557503bc0bd0ef98e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5da8f8e070cda40b612b42b83c30dabd72140a3e6b8ef54f9ebebff6cccf7242
MD5 4b1d2bcfc33bfcbebd47d7912d95d06d
BLAKE2b-256 f0dec733102d46fd62ebb7ddf8fc0d3af72f8317e24c0a0b1665d20f7fdf6f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 affc64b8b172cb685e81fc220725af63fb2728af170bd2ce5c1601ac0254fb10
MD5 1e8178864319ebd08184364bbe20781f
BLAKE2b-256 c340fa3aa3197f5a955248e845482c2ef6fc786a7fc77d868301f01fb7460f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8625d292305b094d69420845cbd3403db13951f2669badf6a585ffdb99c474e
MD5 a064da296463541a4d0fa2d6685092f0
BLAKE2b-256 2cf57a920c48030aefb17240bb7ac68d3a53c7e4d65937166848a291ad679011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8089c2c5a73d4afc4d0a9916b1e6ea6fcb08cf787c1e3e6e962f1983ed48b1c3
MD5 e2067c6876a33637d2a091d67abf88ad
BLAKE2b-256 130667ee1e70665d6319aca7f48f46ee3ae8e6f994e9f76ababdece3fb4c5e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2288c19ea0db56577c89c517634efcf9cd70b0a85beb204490d4e0e06c0036e
MD5 ef5846d7da2729784f917afb90388d3e
BLAKE2b-256 56f0290ec6cb59460efa6adda1b1907dd54abfa2d8ff6f22ca0bc4e159b68f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe5e99ebd51598d9e43a031f81829738eafceefd2f915f10b96aa08a06cc00c1
MD5 430d626e09b3f8e7caab2f6da0607e3b
BLAKE2b-256 505b969ba8427791d7d1d0547e8202d5b62ee2e8e19418ac41e5a31162155697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 347246d88f0b76375e75b040620bb5094a1cf26ade6a9e094064af6cdffb07ac
MD5 eac153d2410c1aa77413c1480ec6600e
BLAKE2b-256 e8961b312a60a9a90ad0434a04e3b9c3c16635b2b3df926f4ec4a0463f8c6188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f6da83af5206d63a23a6209d05be18227eb4b74ca5107b998d1e2a54a7ad8035
MD5 f7b517b58050149abb5a85a0eec894b1
BLAKE2b-256 26c9a12502801c9e051b111b7a1161ff6c2b6620f03d3d65eb054951d609fffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9646d9c6c2398040af30e57eb385c43e65dd46f9570d74064fb5c83ff30dbceb
MD5 987c48a4e497f52c4c1264e8fb3704ff
BLAKE2b-256 df56045ece16e172d4fb8f7d5669e076e7e8204b5f8ae4ec85db258d63730c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ee1c5cbd37ae7d9bebc543b5c74d898ff7670cf325698adcd3ae43e814199be
MD5 05bc21204c035bbea5b8f81fe2f7f06c
BLAKE2b-256 1edc57171573cccd994af6e3891c685a1fd228aa14685a1a49892c3f9cee7a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3f6d6d7571fa70a07982490fa609533a7c7410141cd5984025312003fbf59ed
MD5 682ddab8fe8d03a8c2febca9147c7c39
BLAKE2b-256 5684cb658e794e78af543d7abbd718beaddece7cd0e4ac5b5de4fc783fe7b825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4031904e9ec01bafe9182a636a967e77e7bcc5f7ac5581da78403cf66d58bd9a
MD5 ce112763f0343a49538957898b821f9b
BLAKE2b-256 eafad0b976021f78c3a2699ebca3632438f037b4191837516ce24578fc803f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ba4be346b3728a5c15ea82f337c52464b7e76fa40779832d975c7ca46603159
MD5 b5628c20afd5a2f42bcba53762f93110
BLAKE2b-256 b1994396e0d719b3fc4b7ba983346c0b3b5f4fd701525effbef188762e488ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f64d8cf8c74ec6c34d2ac6959cf74e907e6973d7b999e09879099444d7ca3164
MD5 35fe08ba75c5dd8d03cc2ab12be3e598
BLAKE2b-256 d065ba78a6e44a8a7dee0135bbe79197aef616c3fa3449be479bd0964e9d1ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f278d86826ffbb63b880e07b6cd32c5ca1c19f489aa5a5521fd167ca3b27c7c5
MD5 4649a8163df926635dfc631d255f1276
BLAKE2b-256 e18e1a351f6e6ab3553970abf0fe73eff7fccf06ac1aa9bd753ac4bcc8097163

See more details on using hashes here.

File details

Details for the file abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6fdce21651216764c2b2dfc95cf7f27c8193e85d3399dfaba8e1ca44193d979
MD5 591d5a641137711b4e819b7f6e7a67e1
BLAKE2b-256 2e2868c9eef46c79c6f057a50dc9360b3c1cbde0d187e6584b24885c90d94485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9586bb968bd058cf02c13d1f5f52cc883224e5dcc5aea2710ee350058053d63c
MD5 a7e9fa04a9c2f91e93675a8e4afed310
BLAKE2b-256 cc3a765087be08be27e8f995c9eefe4ccba1d2add19f26882cfb6919d073e9ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24d7f72b4641dc923a526ffa3788e282bb19f1c30aff5acf952e517f08602f0c
MD5 a9c82d1443f09246baa0c6e885b293e4
BLAKE2b-256 5d1ae90d5554cd4f3bebc6b64a69fa1c6337907edc40c412cc1413ad9bcb9140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 177a55014787990eed4ee5df4eab4356b08d186c34ef4dbada094810eead85e6
MD5 cd69b36527e505382dd8f96907b4ff84
BLAKE2b-256 0766f7083fe7c51c21a19453783b33099af04753831caf86da87a316b90628e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3741b9587ce9f4139e17d88c633d71d2dd0f22522042492c38509465a98d6939
MD5 19023f62a0a306edcdec3721519d73bb
BLAKE2b-256 bc18cb38bc3eea92da9a3340de665aba1b5d56d3e508bd0e19dcd62b421ffb1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c6bb216e4a897e1961202aa2bd94cceb035dfe5c3334d8701b916faad39f0ab2
MD5 96ccd292587a55ee31c3102400098cca
BLAKE2b-256 912ae08a7d7df2fa991333d034927722a26152b1c316a02c0175c17424ff4877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 61dbe195eb25333fd5e2d24d47632c75ba6341c58445df064e44b999850ce529
MD5 f1b16d29ad3711e8f05c6cdd41257c2a
BLAKE2b-256 313ff68bfee9db07bca5521f6e9b967870dffaa1e425841c44ff3aa0d776174d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3b343e11f5b08e6acad4b6e2c17d728aac8af75a4611fa43a71b50aa9fd9c44
MD5 e74d5307e3092449e6f25f552da1f424
BLAKE2b-256 d75f28679f8b8ac3e828f062c686121cf5812a03617df42edb07239fd83e2123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e919a91365f4e32b38b051f5d08067af8972a18b57e6754732e9379d76a7acf8
MD5 b9c3b66029d01e77fa934a5f4b2a2307
BLAKE2b-256 fcb614f099eca36d52e77a11e695d6a11b2dd70fa565b6b864c6878a4a5acba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cba299edf9d0039c9d9f2c01944585d95be777d40b0cfb9e8c06ee1c89f8a073
MD5 49ce51fa79634f13bf854911c6ba8946
BLAKE2b-256 954c8f681a93f1a6020375a54f1cc7785aa0013af506409ead15dba4d96d452b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c0a447da674ccab9fe6bab9c0c3deed2dda85a12780324e40c12d8eb68f8cf6
MD5 602a6d5fa46c912c887a9b9320825638
BLAKE2b-256 7ea4c320f4250070552715a975153a353d011ab45d1522f779b88093d10c92ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffa29cd4236f2bb2ff16365916757da9b701c11bdcd35f3a609b9cac214745c5
MD5 680e34faa86944d81532dfe03f876a5c
BLAKE2b-256 71708452b7419105feb4a472026fccde9b2d01a4816c04a713dd40f40e6519a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 418bc62ed40be6a3d3f7cdc4a262eeade3ae80999d5fae0d82676bfec9433d41
MD5 2f7a08961c2d75c736864a06171a61be
BLAKE2b-256 7994fc1a5e8658c14253d741696b690446cb58313a08ea9942a57bd4cf28e32d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e642e0e69bc133c34e6e88922f570496568c0bfb4ab71052535352431dae9ba
MD5 81a95d201a281f69b425f9e45a42e596
BLAKE2b-256 3f8c9bfc8a0a0e36993fbaeba4805e75ad1e624569ebf84a9ef6104546f97f52

See more details on using hashes here.

File details

Details for the file abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1b04fffca7eaf2556297e30ade9e6f10793603ccf1b81e12ee87ab898557b42
MD5 7be2d87bcffa32f541ae85cb0b425b2e
BLAKE2b-256 4385bcde29b6b9b73bc97d8c76fd10d55ef7de7b27760dd6dabdb1123fe9bbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c37ec951df1d142f8c62f7b84d8f62483e533301fc21e65962230f64722cab1d
MD5 290835feaef1b14960f7048b38a908c4
BLAKE2b-256 4cdfea9d1d05f9cc3eb78203c33f41e68f513eef71483cbef7ad595cce73fa27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e85a9e0f4bcf89007c7e0dc7dc033ea99ecc4bef17303f8555c6d927f4d190e6
MD5 a11e44db5c9dd6e5a535ecf54a493a21
BLAKE2b-256 936226c20e8c505874beaf5be8e39fedc526fbd01ffd19f057b50bca64142614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dff942f477e9508ee28028f2e825227e93974f7bae87fbcbd5e983eb2329dff7
MD5 ec52c97d06fb7b1878d7ca93d8d7c7a0
BLAKE2b-256 cfebaf1866809fdb865a0ceb8078fbf03497bb1904e15c58dcab986851ab7b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab09b9e739c0e0e3c287e935a09c3270ad17ad15f00b208cc10726a876659ddf
MD5 0931329beda7cb52855abcb562e0bd14
BLAKE2b-256 b020973e96b95a411b44e5e47ffdb4a3a269913b6171d48dada57eea32d301b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3b81af633d9965bc7aa72db2835547bfdc4e1595995aec49086763d4afe3d7fc
MD5 c3c723095b714e52cfc749673d0ec4af
BLAKE2b-256 616d0d778170234390428fc99ce2bfe450b4eedb261e1e387ebb7764a4ad7aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 64745d442e4561bc9cf77a9141fb92b2da2a5791f5d41a0b33383558740644ab
MD5 5ec54b102f374d3dcafe7f7689a19799
BLAKE2b-256 55defb0b2347b657bda4e19871ed4c2c34faee9cae38208e8222f5d84dc24a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f502c16c9dbfeeeaa31b38da528faff89d04c75a39fb5fd573a586cc3b9fa5b
MD5 c1fe7b09632c9974491ada138db9ca7a
BLAKE2b-256 5c4f5260ae1def3d6d5b80bdfb2d4088fe2d35fcbc4632f20bd849a58dea2259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 015c7636daf804784c8868fe7e64f3b887b83a94e364003a602228f02ef207bb
MD5 5b8e0a26f6a69bc75e20922c67431418
BLAKE2b-256 5b24102ad3f886f5f28b210b27a3ea32e438de1214d105d898bae00cda85b5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 695330940bf15affdb84c0093b4772a8ffc3a6e86e351ec3ea7f10d683712bd9
MD5 7b14affd03e173fc2aca30381519d0a4
BLAKE2b-256 be4f5611fcd80663495cc4015c1fbee8faa3d47fe1918c8e5b5d4b44cc62dd0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f572dd99fde4557a4755de55393c8be16d7a7dd7aaa5a70e39a4f13b9f8404fa
MD5 d25926add245338865a091320ec6e4d7
BLAKE2b-256 8e73da670945664494771e047319e59973ffe6f732b8f9b69db2f2b42e87fccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbacb6ec89fdaeb1ed48db9c7e6fda916bad3cb6cb6fe9f072154d69afa2771f
MD5 09431176598956b8e4794df94baed8f4
BLAKE2b-256 503343c561d174b4ad68934e0debf6225091c70e527bf9e097fa9797d458aa38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ed10879c489a416aded62e35a74d2a5ca7d795faf9cd40bd932f341c65edeaf
MD5 39f6b72c7d77ad55e9d440010a37c17e
BLAKE2b-256 ab1479d3ce7fe9bddf3aa60734fbba2c39562d6b70930bd925031f9f768918ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a80d74040cccb8c16caf22e41758d4c55c9250a3d26023091f96e8de794cf1b
MD5 96deb9b6293194b20e5050868d868bdb
BLAKE2b-256 8703450dc75be1142710dd84a53da32aee4c78b52536cd9b2c75cc0daa6832d0

See more details on using hashes here.

File details

Details for the file abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6055def072b3622ac84931c969b39e1bd2b4f2235790ac0f4385df18680ca80
MD5 cb341a20883c5942bd62c518a8de5bbf
BLAKE2b-256 e7468e4799e3787e3ed057ed7fae678e92c78094ca22a83f9fac1c3a25bab648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7e26d3bc25304b213b37825756502d06040a5c2168c0992aa0e228263d0cfd5
MD5 1eab11bd307305420729270c0e8954a8
BLAKE2b-256 fda48317d66939b824c743be18f32a60ff0be51c6b4311bffce61e7acb58ccbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30a73277a433c5adafcbef79fcf0eb8d1ad728b95cb198f556c25df24b3c3592
MD5 600e728b1e7d7b5a3166f49f5f7ed2d5
BLAKE2b-256 2a4a926d0a7c129a638f309d756e5922c64be747c89729a01aa6a9283bbaed0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 316e00e865946c1129b4020ffb62ef5a999f7676b43cbb0d95077c8bc461992b
MD5 c704adb4085c6d0769620d4f5060b3f4
BLAKE2b-256 c70d045f7e674a41f66cec343d3ee8be3cc5a7a7296babfc7e2c2fd4fb34374c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1df0386da88e7b0a01f674c24ae12c3daa594c6e4a88d649723e670f9df2f581
MD5 992fa2a699337de3da998cb93506cdfc
BLAKE2b-256 68070ac66f95bef5ea9f4d86f7529506629ad1be613f3012c8db9c8840bb6a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 83b96f9408c6892fa477e1f14a068bf4d824daacdf5a6fb7188d0a76c030ab2e
MD5 3a5595c6c54a7d92760c4e2cb7627751
BLAKE2b-256 46ba3fbf7298dc25675e6e9c184de811aaa1101ebe0716268e92fa21f0f8d2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bfb50e5501cc1e2fe77fbbfa8cd871641dfd7c798377c22f4fafee18e8d75d9
MD5 f5e9c55e78f70dfb38f554817f933cd1
BLAKE2b-256 4e38d9d1dbc61a2a2aa35ff132e1de9a09d83610bf5f7378d24fefdc59197100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7301015806cb28cf38c8e9fe3e92065ca5635298165e436e6a6fd0790c7a708c
MD5 25924cd697c71c529d2e4dc740c24007
BLAKE2b-256 2bcaee871e1a47b31b3b415ad915ed3622e3ea937614e16994b610dbc36a039b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46d5cdece599f87f3cac81efc84793adc3c19486c20b3d426d07bb9f306fd2a2
MD5 daea8ee276431fdb9bd2028a88b2847e
BLAKE2b-256 73f252267b547fd2964aaf48327fbac7ec29debd12a3c378987ed057587fdd5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 861ac33b3f098f44cdb03dad1d71e69500f868e45c8e38debc8e410c83cfe473
MD5 006df188a17a50eed0eff4fcb2aded91
BLAKE2b-256 f2d6812ab9456ab468568068ee402c929d348ec4c607f8f0bff783f2c1ea5812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 540481503c315c70fa2fac9e1dc3bb0e4a19e74be4aa5cb83c1a37b579b1bb9f
MD5 15a0d6cfa750ecae27b63949d7b5b112
BLAKE2b-256 e15a48df7d2ae25e966c9e8cc82377dcf1ed5be9ff77ac521590b808698952ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d874839f13ba8d955928f4b0f22973434e6190c961047f1133a6e399a60d08e
MD5 d877a3bcc23cd9428bbfce2abc40ab50
BLAKE2b-256 e78203ee92098fad2cb3a0b2739877f1c66e0c0d7f0ce1fa1d75dd2c27c467fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25a07a09531fc018a4ef0bfce72f87112e76aa281087980c83f4ad6d3a0d6e1f
MD5 95f27faf54807fc4a26e0ca934178ea5
BLAKE2b-256 ddc13ba35a7058e7f186033cd279049c4d11f9331b2b76b3572bef62a258f3c9

See more details on using hashes here.

File details

Details for the file abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34183c28a1f3a862a76d2706cf53d756a9b7f8cdd5d208e5f80ccdeb383cc400
MD5 531672c5f91a69ae5b8fc89a8521da7a
BLAKE2b-256 bf63226cde73d39c89625d4f720f3d69d9104b117277cea006f30d6874014254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56199a8327f9b1883e0d131da45d59149029f303ba135e3847f032c40ca4469a
MD5 7e350bebafc0010d8ab85b7fb830276c
BLAKE2b-256 e0108eea1c967ff569a715747d653f4cfc6edf22f86ea186de92602bdd9e8911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a490eaf3465d704643738c14eb532fc41f73dd343832c0ca26eb402a799f29b
MD5 f275600c4fc2578cf1e5897335bce9bf
BLAKE2b-256 123e4b978c4e428496e7383df410b5e003507a41a0bf3398750665ed95248462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac9b77b27fb91863b33370560e044d33d63ef8f705dcea8573a590450d0f3b5f
MD5 487ff27e5637782c2f412ba5bc69d36d
BLAKE2b-256 ecc32b5449ee0d083b76b9157db1a05db0398ec94bb2a4eb25bc6add01d01286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5b81a338237b727f914e31d00bece606b883a9126ee1efc9b033c9acdc2aa829
MD5 0ca4b58b35314c41e66343a5b2e8917b
BLAKE2b-256 e4d394644efcd48af385618b549fadc492930bf02dfe7eb141deeb228b1c8ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2006aa1a6f7d58ce9bbba6248373c56b7c5afc2c914f979746c75c38fb70f90e
MD5 fe2c326fc4e3034c343315108f31a049
BLAKE2b-256 97fe3df5c3d87deccda992f0071d837e0c9d4d65a5b6970d43747c46220d7c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52cc3116b8dffca068214e2414ba10fc878e4eb121e2be8acc8f5d395fde45be
MD5 a680d0662d34ba01a9e98ec9eb47c695
BLAKE2b-256 1abe130144811df9e58f89c5d219f10836af6ede886d306396fada51cf6456dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b87c96d8a0ca23202cfc2079932cdfde26c66985b2949722f7053f37629d1879
MD5 897622efb0b6c3a1763096445bb8b03e
BLAKE2b-256 b1d98592d5ac7696ab297e63dfe90f5f51851ea5d7b36db36718f32f42b31b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85a3f10abfacdecdedd515bfe3d67d91084938dd101339abca1d325037d437c1
MD5 892a5b1d5dc4a8a976938ffcf10900a7
BLAKE2b-256 ef776d06828f81f0b25cff250ceb0c0d6740ae6e4ab2f443c9cc39dc5c507dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 231713bc71d1d8b6dd88d4d2a10dd545d40e08a7e9c0a23c947dadc7945b87e3
MD5 d1f5c35a235beabd34aacf2fdf8699e2
BLAKE2b-256 a63e2c1652eaf126690c65a9f7995d067c730e43a8ac77964a05b95585d1da27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 789b61d7569913100e4d3fe9c51ae3e87a969daa5471f30602d9ee5a408ccb50
MD5 1a245c087f09e209b9a97b1f67f90fee
BLAKE2b-256 4c1852be353cafc45457ac542c3329eccbc09c7fc342da28ba0ac2253b798673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6c02b07d4221c59edf36b32ea2230c7ef2d9e3e28907e493dfd0890a7e19a4f
MD5 f44ece1af2af5ae76720fad7b9c8e2f9
BLAKE2b-256 b67c6121d7f317ff7386690e3534f8e7db4c1cafe39131ff7ff64bba73970873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6340c820347d721c61ddb64c2a86409316894a508d762b155796532a231fd74a
MD5 597e339420260cc72c8bb886f36ec00b
BLAKE2b-256 026500660412c47c3afd67dd8f012767ca3d798852c0e9724eb691a1c80f9349

See more details on using hashes here.

File details

Details for the file abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d77a11956e7458d6b09207d55526335aa5f3cfc96cda3940d3e1cb8f311f7b21
MD5 dd912686837a7db6c3e31a77a016936b
BLAKE2b-256 f51620e566bcd507d85b62079f6ff430cb7428f658bd9666b4202083f88974c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44e9e192c45834a45b387063d0974cc96da6c37d11cb83e5acc1a7a42c7e208b
MD5 dfc35cb4c7901469c74d514546c1ebc9
BLAKE2b-256 2fbe710a5e2ebe732495c2ddc0f0dcaf8e60cc3ee44f293c7ed0df0013fdcfc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9b01a2d6967d3c503f55a2d915d120ba91eb5b8047493b1766d9c51a7cc912f
MD5 9accceca91bab18bffaafe9d6dee0af1
BLAKE2b-256 a5b389bc073013e5bc2fcc3164aa1f261987a4c03bfde9009b67a346401b825a

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