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.2.tar.gz (545.2 kB view details)

Uploaded Source

Built Distributions

abbreviation_extractor-0.1.2-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.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.2-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.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.2-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.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

abbreviation_extractor-0.1.2-cp312-none-win_amd64.whl (958.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

abbreviation_extractor-0.1.2-cp312-none-win32.whl (878.4 kB view details)

Uploaded CPython 3.12 Windows x86

abbreviation_extractor-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

abbreviation_extractor-0.1.2-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.2-cp311-none-win_amd64.whl (958.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

abbreviation_extractor-0.1.2-cp311-none-win32.whl (878.5 kB view details)

Uploaded CPython 3.11 Windows x86

abbreviation_extractor-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

abbreviation_extractor-0.1.2-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.2-cp310-none-win_amd64.whl (958.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

abbreviation_extractor-0.1.2-cp310-none-win32.whl (878.4 kB view details)

Uploaded CPython 3.10 Windows x86

abbreviation_extractor-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

abbreviation_extractor-0.1.2-cp39-none-win_amd64.whl (959.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

abbreviation_extractor-0.1.2-cp39-none-win32.whl (879.0 kB view details)

Uploaded CPython 3.9 Windows x86

abbreviation_extractor-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

abbreviation_extractor-0.1.2-cp38-none-win_amd64.whl (958.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

abbreviation_extractor-0.1.2-cp38-none-win32.whl (878.8 kB view details)

Uploaded CPython 3.8 Windows x86

abbreviation_extractor-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2.tar.gz
Algorithm Hash digest
SHA256 542c656cdeeb0d01c6d7d3a8c68a2560b97e98bee7adbe20f5e47e269302e567
MD5 8880c58f7197bccabb63b4d8cddf1d2b
BLAKE2b-256 b611840c9e1d6f0f50d5f1fa530c421c7b7a910d5fbcf8537ac718c01c3fb42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08e842cc1c74931565e18c7b8f6ed33cc4c83f435c43b27ca1eb04866e5a47ab
MD5 8aafddd6077e0b457bf30de134f64e98
BLAKE2b-256 dd5fc599b9cedab02820b75cac299dfbd82043018d5d6b8818c3e258593c7a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4e5d5668bd307dfbb0e7c20632b4a15ec049d59a332b377c09353010fc05af0
MD5 c1efbdf2cbef21482adf29899b3405e1
BLAKE2b-256 fbab5587e49b25714e32374f03dce4084aece501412f7e1457c46966b753fb68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbae46d98d1d750fcca24452d5b592134ffa23760888efdab7cc5a7cf8735da8
MD5 cd9c75656df4a0182daa1351aad03698
BLAKE2b-256 d532ebbba0ff2ba3ca62b97273c0453d7eb4285a724d0ac156f3992774f35c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efe29defefc13769dd333132ed24f51da7b8763c64ab837a465a8298bdc947e7
MD5 a2285d86273e25ae57a882cdfa0d8b92
BLAKE2b-256 bad5957db4a18389b58aa96cdb3c5e0ab8af08d92267e9462a848c28b675c9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 077fa06550ed7b9ed1a7cb2d9a611dd464d2cf080fe4e92e472d87a8696427ec
MD5 ac5e8b170c5f2c82b0c761a20d39418a
BLAKE2b-256 444cbdbf8b3e6858baeedbe07cdfb40d0f049444ec0e6b366533758e97ddf499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 428bde81b4cc18621e86fff06cfb5b2eb121bbff86044535127fe04158cbc338
MD5 93d2fa3c3eead58a6c8b69cb035882e8
BLAKE2b-256 ea7434eee2c2956956e3ca8f95d76397c71c35acf009513a6546bf76d0ee3998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19eff5afe0929499f04d1b5c48b3d3b296915ed1b4a8aa3aa901196768b01246
MD5 49966290765da2886bbe18a91e4d9091
BLAKE2b-256 ad6ae0195721b53993649f99b5f3c727354dbed7fc86a16ab1a7ff581480c7f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bf221532cf744a27d160387cfe2fb75d518224ee16ba9e6ff3e568c6356db48
MD5 95bd39f457f112e6d0284a974c371b1b
BLAKE2b-256 4aa636c7d3f4817e116bb39b29e737fee82a3b159800592d87e2bd121d831cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e98f1cb7d4ba7eead7a7e7faa18d2ba3ff2ca23d47a7a9940e6d2ec16e01196
MD5 1236c820e1710f5a1c7decf7dfeb8f64
BLAKE2b-256 e3527f7a39c5a19e6c64531a7e76a5d3030ff7a8d8d9c04b2b723adc8e027534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1f36a81fd455fdc607027727491f6387c1e59055ee25f348a34726defd33550
MD5 0975972a5b6b967cd0db40a8bbaa19a8
BLAKE2b-256 c94076434349be33141ddd0cd443e6fb1fe0852106941e1d104f13a5345ca8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1de4bc6b1290c9bf37288437cf04bf4e1ff4c33e75704a24cfaff09f61af1d7a
MD5 21ed1d9c22e17646b1e22cc90f60a525
BLAKE2b-256 2c8bedcae93818c415cbec365aa2e70646f6d49206884d92f3706fe33fa528ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03e6bd9e3bf95d9218186ae596fea6131421fd8c7b97ecf948c793190d8b9e67
MD5 4eb471e1ae1af3e57cebbd8f982efffa
BLAKE2b-256 ade43d2dda5186f50814c4c6b6ef28a1bdabca75471d355c4d793dc77f4bfa78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2f4e70db3929d192e324cbcc396b71526ce35158073d1ba66c501d21b68503b
MD5 96b5de0750ace28363f63f700745c206
BLAKE2b-256 d6dfd80ecad0342c0a46c86145ed5fecae0586114e1a673931455836f7a845f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14ed1a3606e19a500e8bdcb9021efa726c76cb63fcc436d96ffe14e02bbd8da0
MD5 64dbd82e45a8d0f2d99972574d035d72
BLAKE2b-256 7fb64c713b568ca9927e063caf5ef1e44c76effc7995e67671b39278a2c4dcc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dba0e28d212615289737a80d057b781a9e6a79009f47ef413b9101547fa5aaa
MD5 34e7628dad03b3e054b0f8e704db0dac
BLAKE2b-256 21f8900fff0da9bd4cbfc843ce61ba8ddc4a15fa37b79bc60d1278a87735633d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff23d3c62cf8ed9249ccd654b98d0687a683c93e21ff392bdeacc60c0265699d
MD5 bf5ba9e8c6a9e02c3efb3e49f0b5cc83
BLAKE2b-256 d87ebc9da85839cbb60ffebc2721ab6996a3c74f5cead3a5cb91106671685343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfc26f8e55790bb006b2ea8739c13e0de068bda12046561931ad45a03504e923
MD5 ab0e722d6b555a46e0b8bbddbebf62b1
BLAKE2b-256 f7f909aadb72e5c9694d22ff48c8ce3272cf3c2482ad125a9d2f7d4b149d7cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d31088de3d86e9c3b92652b792083aa7bf95e57db809ca376b59f3b90d89468f
MD5 b811c0f0fb07fcfb438a6f5486171f62
BLAKE2b-256 f7216cf8eabf5c5b66c4bd763feb3ceadef2aedb405adc170ee2674f4225a441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd8a9b948688bdcfe6ece8fe8d93abe8de78acf4262db62c66f8854cebdaefcc
MD5 bcda9a9e9b00ba1ef81f1cb40ef22d77
BLAKE2b-256 5704a81b1e7e8aa44e6916eff60b544631d54ea65164b9fe3241ffaf36880b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1f75b1d5ad8e778ade55e73e7fdb8f32f27478766144d93e6ebdef7514a62e0
MD5 30cf48177bb90f9581ad559e9534caa6
BLAKE2b-256 4d074324ec2225542b9c7235bdd4d86cb70b73dcff02d12b91a35be9f0e0c86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 176a17b079c36104bdac4559e48d317a7b911b00448723f4cd91ec03259c8cb8
MD5 e5acb1d8937ec1318876807748cd7ef0
BLAKE2b-256 46f5f51d1196268694d7bc7fb86ec8414dd91f39771ab5b42b1e8fdd215255d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96cc771087522b9cebb5f25bfea1c2e28f9cc9e7f9a5e971d6f3413012536259
MD5 000c152c1c1ef841860a0e54c73712a8
BLAKE2b-256 a9400198ee34deddc59ecee43c9d93d15a4cb099ce16ceb57cf34c4100a0493c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e46c0e9cef0f72ed4f0e273afae9997bf6285c4f7a5359c1ad939cebfa3bf28a
MD5 3ab9f697c300f9ecceaf7464f10d6228
BLAKE2b-256 700d5d7350fc3e9d0200e37a8b2e1dfdaaac801af96e710f3192e7f3b5898ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a32c36ef92e92758459c60a372288edd8d85d72c668cd7de1fde6c54c5eb157f
MD5 1f3957f4eca89f69d6139dbdf30529c0
BLAKE2b-256 d8e2c4a9a9677961c53f2ffb6799e1d2ce8b36981b09316f4dfe9c9f180b2f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b6c76480974aa26a44e25aa940b6c8552f99e8771cdf747b93f3dc791e8b982
MD5 da239a56f02ac060a7fd7e67a545bb41
BLAKE2b-256 b7a4cdd063d18721bab46c1abd9d566fb2b12fa2107b28f45903244dfa70a11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f6eb13044b51c15e4ab56b4f22445d66d93d71808c5362274a1c4f62182c0b9
MD5 626e8cf455943f29c7a7632274a9e260
BLAKE2b-256 106eacc637ca6f94f8fd24a75043b32851469e042d778c645e49bae0f3affddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 647e381b913f1da7972977cbbf3e79d4e874aea78ecf85963b4c32622547036a
MD5 45c51253578dd86f8816ce9bc6d92849
BLAKE2b-256 f3ff0efb4e6a4d279d54944b46d46f90ee13c54911136d5a0042a8148f2fbbf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79dc4be47d9bcf1bd8bc10defd21c922361756ff5f9b8a8a6ce9e1cc6be2b26f
MD5 e99418142428e485b0268f7d67d6c280
BLAKE2b-256 151e916951618f7cea368ba5c2e0501303b60bee3003d47f758c7de18187bb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d47fda4d09a398c650259a8a6d0cc8ab865f72840f0f2072aff369c3f754aa43
MD5 d1e86be2648b51aac4b63680720192b4
BLAKE2b-256 138115ac1158ee6355b83b2119bae955e9b6d098da159d9a9c7441ff2116a4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c7b62a20ab7828f1a547021d0e0ba5fde7a2073ea716870a8532e6be805136ac
MD5 f83dc215c9687977d1d36e8d5c0049eb
BLAKE2b-256 6fc7327a832e1f11ed731dd4a27e2c82ceb4a9deaf7022f7297e951cd60ad0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7c3a1304ac556eb16552475f2bcf999d171041a8a8dc12e100ecedf47841ce9
MD5 31480d4037d1067285fe20c96b1f1873
BLAKE2b-256 353a18f401b4b14ce7ab3cb6c1164930958237848bcc6c02c9ef465171df10a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17edaa81a4da76c020384b761292dd3a48ecd3f6c90086bd61f006b3aaba2120
MD5 90c7531eb0694ce2cc711f56d22b2ecc
BLAKE2b-256 4ae26ed27bd209bb35a9cabe5122522d27a3f50854970152fdf3b5de01543e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c885790fd4d7561ba9b6af2b0bced507f5cd1dc95778eefdfdd1cf384c2a7962
MD5 d9c694a3fb7577a86c548a628bbcf76c
BLAKE2b-256 fcb23119635da931808f9a42494f954a434bb49411edee17ad8a418f89f2101e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01f33e1b45463388f09eeaee162f1bdfd6dc3777e3d789af6229dce83a369bb7
MD5 7dcd3c8917900f599d19a4ac4de96d43
BLAKE2b-256 324996c44237ddfefc57fc9d980847b17952781c5d38ca6212260648512571c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 788187cd97307d63aa04e3d240d4880da69fc14ffbb5e3ed1d3fcdbbde8fbdd5
MD5 9563a40204eeca341760dd10ee709961
BLAKE2b-256 8f479c8f082e5579ab4af0fc475fc2da7ecce5c9f2f09fa9282134f93a8c7380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 028dccfb1e23b4ca2134be4c50e33025d8815baf586d73a387fb7acd9331fefb
MD5 42f313ea2472ec287e653565727346ae
BLAKE2b-256 2035ae70a5c14355b77b6dd1117cacd982278b4dff8881824c883862defc1f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5313c8c8fde73471797f49b3036817e93dc22a149884579212f2858138cf5268
MD5 798fe4ecc1fbd4035c7f8ebdef99601f
BLAKE2b-256 055c3f4fba4e68cfdf2111466380acc673a137d140c2cf19d1d59b7b012395b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61be137ee2e114ceeb9043fffb32e453532cbc388c5e78127b259b5f24e00a23
MD5 e5263c5ad8ad31d09c4f86fcd352d644
BLAKE2b-256 ac01f924280373de53e6bedd7dc2ef7923f4d99803b3c87b38dcadb138abc6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c3a1995ab0948c0c22d31749b6e4504c250c5a5f60f4f75bda25fccab35cfe2
MD5 735ef535047f8a3695fef261ec76c5ca
BLAKE2b-256 f04edf92f90febbf58efda8fb6aff68da10348d1031387eee38a0cbd0b4eb225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8b6bcdd214369d856708069e90fda14bc5656c29e44bac954f2b319ad7726e0
MD5 b295556d25ff9335e3a7dc367b0e16e7
BLAKE2b-256 6dcf94d29442e3b146e97067689cf55da9a912a14f7e57e579fd87c1697495d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52451f717b0a0ab01470d3e697a95a20dea03c0e02661780d85ffa11c67eb269
MD5 7d6038d605a4e9c43b9bc63d10832694
BLAKE2b-256 188234eb6252b09f75015c6a0339aa68219d2553ffe5fc98b4b8aa6a54dae159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b202c46e8b4958afa089eae0966496d1605413c5019f10a86806a67c5e203f4e
MD5 210f017afbd089ae71cbcfcad72a85a8
BLAKE2b-256 afbc8021fc5a3956370e857e9b514cfd25fc2f0fb987d57e41533d96bce16cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5cb5bb4a449451567a3a6053460a95b89f5ce6d635ac927b3b21ad60fdcd189f
MD5 5d1b8b45f7729d6dc428e6db36b65474
BLAKE2b-256 ef95eb71700bdcfc2c908c0a5ad2730c488cfaccb2d985e3dea6413b21b7421e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 162eb6545661a5ae660ebe4b78f8e3a214266b5abc58c9ebbdd7b69edd0dd84c
MD5 d52bdb751bc0dbd65bff3115a570f13f
BLAKE2b-256 c3601c01825d0dfdec5a1e07c1f9de721df7e78d0bb678f4ac27ce1b7525a6c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21a30e13e12677b363a8bb1f4c08a1458d2fcfabf4840dfa85cd38f2bcfe37cb
MD5 2da0f1569e1a46e564a17a9a4abfb163
BLAKE2b-256 34587f5c2be49597f2652f667e832391e14c75c8c2eb0c182322fd227f0bef9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8b3c2cb4d4381a2a21fd0430e68d5820aed8ae513bd4b6bf79242cae2ecf4b6
MD5 092fb322353971ac60c753f81f8b1066
BLAKE2b-256 d6ae2e884265deb087f194405572e2bfc7c369bf25c2c1bcec1afa96cf9f5178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e796cbfc2dbef1a1bf1120db18bec07a7ee99ccd5df1cd041b8d204473346329
MD5 83eab208c27446b34d3e97ecf2068f47
BLAKE2b-256 4c92978caf837a2d3cb600416ed30a5e50cde8bb10b6e6de8e0ee02f6dd55b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2618e6069934fc107decd9dbc03fb5923032fe91dd3f82edcccbebac3fff22a0
MD5 4fc5cbc4eee5da561a982e5a88c64664
BLAKE2b-256 b505df81c591cde5a88c2f2ab5ec07e16ab895f18156908079b20255fe4193ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93f1f042a4dfb413a965c7b3cb13db26e6a75d2e19f96c8d75436389798500a2
MD5 ae686885587fd826921f68948fd22f4b
BLAKE2b-256 7f5df629a6ff81de7a2f614d0393d2457c165aad8b1df2911bc0a12b920262a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 036b7b6c4aee26cc634f2dfc75af37f2f06de0ba773712d3eddcba7ded6fbb33
MD5 bb08fae7611875816b270eb25f74b5a2
BLAKE2b-256 1d52bcb5f6fd65d1455d01e06fcd59c9e6c72eecb0011f26d4f88e6733772c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e25e2fa5f50204b67bfd0b0784682ad0026b3d352da43f403797653b02fbdc0
MD5 f0d94db8279040dd740d9d1b699c8f21
BLAKE2b-256 e15ef7abdf3e2fb0ce21eec6f0ce7c58e157afd9f0e67d6574dd6ec9aaa3d5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f0755a421d49808c14b321d03874ebab6df9c80f2c55fe4a53063e3b2e14ad5
MD5 e4945a49e47e5adfde4eec9223b249a7
BLAKE2b-256 e35274e87f81ec91064fa52ceadbaa920e6bc8a46f4218b7f8b8d2abc955a47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc54dc24034437cf18f9d5bd23596525d61eb93d644c635851c2913731ff430c
MD5 8b039ea837e7e5369fb86c6fa7183b74
BLAKE2b-256 2ac9dd10a6581201e60184300cf6abf25ea011f7e3b2a9fd6a2a0fa00eab89ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c5edf37f18e737d71688d9df12af2e5bc7092885ce95cb66a989479a7625976
MD5 e3a2a70a18322445223b86b31b402be2
BLAKE2b-256 ca42069b9287e8cf012e332829adb95c6e1ca51e243c09f3e1b7ebf0d53f16e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5520e26981880ee64f6074ebba930f05872dfdf9155808f0fd7fc0e6fa3bdfc4
MD5 2ff22f2e092daf3c9a763cfc833d0cce
BLAKE2b-256 4d154ce30c3785cf59c63977df0e5dbd96960620555964eb180dd814e601c7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f80f6c4284fd9f4b8bf51698a726318a8231c93cc404a7ff63d38460b8bf423
MD5 4a3c3689c91c33e3c36e8ab8ddce1097
BLAKE2b-256 b24ba0f2dcb6867d431b12148ec37d8becea479ef1bfbb35a714dbe38d419b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8c4a876a0e72927a9c97189208030de7c7bbddd6f4e5d4ce496fc99b5fa61443
MD5 16538c6ce30cb77ab8990a3c9fba4479
BLAKE2b-256 5d89c3a296d716db0efefb204277f030b7cc75aacc9fa48c5c08862e3e80887f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 af52b7d4a47d91759ab084360bbc25abe9a8f671c4d808dae4aa247c9c999cb1
MD5 4e07b4e13d783df00fee48901a618dd1
BLAKE2b-256 8e739ae668acbe8578081d54c5a3cd5f979aa6c367003731eee66bd3e3aea5d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfa68e728e73fe58af4d7569a4647f5eca59243e6b1117e3b44a06b61d745c87
MD5 0b2a311cbb0947d5fdf4d4f7eb294d59
BLAKE2b-256 095dc0ac82abaa0301090c7b13b954c1a274aa73598cecb4d5019df7e07ab84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26c1b4c3e3403896eda500f77019de82792b4ed19a7c08f0b68e4f386d0dc5f3
MD5 39ba9c032602b2829359bb53a61b5b8d
BLAKE2b-256 13dafb7fb05c86c57d49b5c44b66376278bfa24148d07ae06ef7120a17222553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd23dc1fc3acbefc200379763545689054abab5e084fdf8d870f7fcf15f5d1c5
MD5 0abab4d551d7f72260ef42b5c42fa48c
BLAKE2b-256 f23bfcd50f19bb246a1b8f6222b27a4f28a073e8623a3941b752cb09bce67907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73619d95ebdd0f580148d497fbdbf4f22c236f652b80d36dee2bbd63a47e7005
MD5 2434ec803dd2f5a9e8d5c2dc430de21e
BLAKE2b-256 9a9aecdf538d7a79f4c18cdf1a0a31b7420eb6fd1715d1a6351d3b8c714019a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c91678c4976b8c27e4d5c020017de5bea47e0c082373fb071aa04ef5f4fffb0d
MD5 5051b755ab220226f4351a475119b434
BLAKE2b-256 f503a30ebc1531af10e520c96db769266021facbd47f278abca09ca4217d2004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7985d88c4dbc293b9283d0a1c8b8c24861e061e234f89bed374b5c626678590
MD5 f60f96295f4f38cae985cf26d17d86b6
BLAKE2b-256 f26cd584d32292751e1b8c4efded8507a3cdc7906b44b5a2fadcc34035771608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0220e04a0e678cfa379df81b6c45bc0e019d899ea4da5bf80a3c1b026cad909a
MD5 543f0053ce3d2ef399e240351447cf4f
BLAKE2b-256 60dd4d1c11806d3d1d3f6b53a51a4dc90d62def46a3096f049ec59efcbb04620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 551832f8e952152c6a78c671e7415f377acb75588e677719199c384e9006ab6a
MD5 02a4cfcf287718244de2f773dad17dff
BLAKE2b-256 206cb742c3f10b321492429557d3adc183f7991e866087102f57abb58b44b590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5d862b2774b2cd1d4ec9276d63bf9c55047386936bf13278a5e51e25afd9f6f
MD5 b5d5c69e2195e09b8579ee4f62e507bc
BLAKE2b-256 0185c66347c20f331a692760bdad54586356243c89a325d9950037dad6d0e824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c445550083eda1878ca263097384ae88e63deb78c8e3d90abd0eee64113233d9
MD5 065a50ddf78e29d52b5477768c6a69f7
BLAKE2b-256 b87532737c271e8d55a6d00424b4ffdd28db24f21cdb8ce26a2c39bfe145318f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c18df595a6b6c171b8674b566928ff6914ecdb7297f33c91f32170f8384ff223
MD5 1f01ad8dc410f01001304a5985930665
BLAKE2b-256 35eb48a753e8c07f3719d490dec4de0dcef5a87ec1d1ae2dd0099b5e76be94f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5e18be1f280c6d7eb9c602e3ad468b0b4b7fdcdf34262adf44d7f4b38f785e9f
MD5 3b96f66880cc3ddc1002b1d1895b05da
BLAKE2b-256 7291368fb527d2f6c234a4b0f9f7458534c231a918c7fb15e4805613c3695e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 66b3c46830ea0ca1e041d024a149977bf7d292c60b46a53d6636ead252870fbd
MD5 8669f89f140fca905e72d9b50195858b
BLAKE2b-256 b0c1805332a416f8263685623b11e945ee5639d551736e8dacb9fb7e25f481bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ced5b0c384fa4afa2e9bcdff1f04a47a9bccab1298173eeb4080abdefe241dd1
MD5 ba67f00cd34dd4a5b4bc244c03f5baa1
BLAKE2b-256 efb326230a03f648f52e19353d0fcfd3b8452b3cd59491be2094e439faf5f8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e47087742dcafa0f7aa2d88587cd73c4ee8de454bd89f8883afa90a9aa79f4c8
MD5 5318fd569ec9b1bde04a860906f9b991
BLAKE2b-256 dbd1beec726e870745df9596615f146bf9398d62f19dc61da11f7ba0a06525a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6fbabddc95fc5aae061cb9290271076ab8ac6ced1fd4d83ffbfa44ebf57cc837
MD5 ffeb0e03c0711bf7a2373139f43e68ef
BLAKE2b-256 9d1872f381b50ef645850346eac39d8618850e8ce966c2b172d20b8145638d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d913ec6934e2fea41c6651d1413e3c28c4e8d1980252f624883e4f9c5d70fe0f
MD5 1f8e44689504a60f81edd5bd42e7fa66
BLAKE2b-256 aa77364601db0454448d89e88d1babb8f97c9c352062cfcaa7c316a4f525f478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca5b2469e03ece2f850fb64759702cc8f8a254176e43ed577f4ccf2830f208c7
MD5 a002e7a1f34bc9b25d786ae8880f1b8f
BLAKE2b-256 f3e14c29038a436297046803ba9371ae80e37311d483ce25bcf19795b3e5a16b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b401af12225f1fb015299be033c44e164f73a68c362357be0bcaf2a53a227a0
MD5 ad33481c66b1da2cf6d6f61c997840a2
BLAKE2b-256 a249999008480bf8bd18da96ba1c69be8067b52a4774c2f497cc14c8f8db6799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f882646237ad0e4e21a5721d592b2bab590dd06f3989942404a27bb70a6c8264
MD5 b55a8431bde8297247be25af8d4f7d54
BLAKE2b-256 28a6dc3a567bbda21e3f7a1636798f054c2235a28e18443cbce61fa49e9b1fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b72690c94081b1ac58b1f2434f39fa0a3a680ad67138963a9361b941d95b95e7
MD5 7a1ded22b4ac7ef8fedbe31cf88e1a77
BLAKE2b-256 3e1c0f153f4fdd7376c040b40497f0db67796c98d831808dfcd53440340c5b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d56429f691017da151622df04c0ec69c7bf52631e0eea3f75e01efb2327df19
MD5 52f56c20e88e817048743ab98db5dac6
BLAKE2b-256 a4d2d6e8f20e88286fe13623b38e780a759c84125cd2d21bee15fcdf0e3d13f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8daccce646d16d6a728ba2d0caf20740e492cda2778b6571b1419b9adef0f74d
MD5 23b092cb04b60d283f73fafb9fd75da7
BLAKE2b-256 09bab1379c5bfbe78e6e766e44e03d8689d609a7994db4f0547d0ac72c21f0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63f161516db681cc54c4d46000b0166a4a138220a8b679779b86c9c3fe2d6cf3
MD5 bfe73d54d9a1c118fb1d16d10be13d79
BLAKE2b-256 d8f2a0705da447e645b9e50815bd7eb7182d3020a391ffc65de451f7aa0a78cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 866e5a0d28bd22102fe05e88b0041b52cd4d2893b126cc17e946806dd4e23df8
MD5 6821e16823191faefbf7f2e8a90a82e8
BLAKE2b-256 221192b085d5eb25846e86d3187e23eca572f5ea26627857469f74c070c79cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 4362733d66102ad837c00a11d1d30791eae1f1878d5c3955dd5b0d304d31f47e
MD5 8301081bfd2524f472745627ca6abbc7
BLAKE2b-256 beb9ecc347239f00284db57c39ef0d5cd3f10d0f43fc3f1c42c97b5823cd5031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85276ab727245bdfb18e315eb1a9fd3d342186ea131fe36171482af3089adad9
MD5 1715b7f5dfcb23070a939a3e2bab7667
BLAKE2b-256 2e28e7813c316c45c0ec0e42b6078dbcea3b40596de31655466c0c6c1c792398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93cd1c2650a155281c10c23e1e2c0cec46ea3322d65db4d3e431c3fcfae56d6c
MD5 4fb83e4213fe08106cf8a5d11f511e3e
BLAKE2b-256 431d56540be97a7d29f83442bf3a5284b5453ac8e93aa0cc9f36d1c1d5a92b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f52f4fb28f877eb2ee4756f6361a44c4ed063fe3e52a5c1c06975d78812ac476
MD5 f584965d03703039dcffb56e2de71e62
BLAKE2b-256 99a8685160b4898a7ed3c4cdaf33f43eae58a4a2ead03bc65cc0f57e38dab159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18d214cbe6ee6c7489c7e8d9c2123d96cf928e6a1c4ebe762eb2047f4a45ad57
MD5 42e2a78584639692ed1598523267083d
BLAKE2b-256 26a9b65d416b7688cd50099a689f6773a0989033caac8c645c7d977278906cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94c547d474173a95e8f78d09d95b3f6205afaa8732f6634628e00a9687ad1e57
MD5 e19d38a92efad4fe6eaccd8ac9532371
BLAKE2b-256 dc9f5c2f4015fa8c449a927ac1bfd6fb0e5c22e08cc1d81c41acd7746760eb86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c0ab7ab65e017495d55e2d94439cff7e0c762480c5b94c2023a44c2d79a9a13
MD5 86b17fb0188875c0285230110b745cfa
BLAKE2b-256 d4af1c91c91905914137633bd9f800ae3fbee2b2b090ce2de3f27459f80ce06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f073c53e71fb88bb398c8154abe024c340cf86d797a8e7d218ad2c17efb278b0
MD5 c97055b1f9aad50e7b5d309473e496b3
BLAKE2b-256 855690372093920f02d4a2984301651d47ce270775712016d5fd4c9c1a9dd723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06098cbb583b59b343053077506604fb4b4f328278ea5a30d361962d69f8e89e
MD5 0d23512f3e5e968ac394293723458956
BLAKE2b-256 48403462be77a4771da4bc9aae2b08c45e62c936dfe304e3e92b7310030d88c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee632b4149623a00b829e86351bec397abacbceee0809204f3c3e8273aae1839
MD5 84d13ca6fd47a95bc04b5de81947acb3
BLAKE2b-256 fafb4ae1fad280b26aa6eae0216e00fa0f82abe2452739b528e98d3607ad020a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for abbreviation_extractor-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c65f35ccc45155404e8c242046a72fad3bca5915040f4ce05553d61e32b03b6c
MD5 90eecb25eec5936bec416e3120d51b65
BLAKE2b-256 05e099a755a2817089b477ce914f04b890b84ec90f225f707c2e005c2df137a2

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