abbreviation-extractor


Nameabbreviation-extractor JSON
Version 0.1.4 PyPI version JSON
download
home_pageNone
SummaryA library for extracting abbreviations from text.
upload_time2024-09-14 20:02:14
maintainerNone
docs_urlNone
authorPraise Oketola <oketola.praise@gmail.com>
requires_python>=3.8
licenseMIT
keywords abbreviation extraction nlp text-processing biomedical
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# 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](https://psb.stanford.edu/psb-online/proceedings/psb03/schwartz.pdf), offering enhanced accuracy and speed. It's based the original [python implementation](https://github.com/philgooch/abbreviation-extraction).

[Speed Comparison With Other Abbreviation Extraction Libraries](#performance-comparison-of-abbreviation-extractor-against-other-libraries)

[Extraction Accuracy Comparison With Other Abbreviation Extraction Libraries](#performance-comparison-of-abbreviation-extractor-against-other-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`:

```toml
abbreviation-extractor = "0.1.3"
```

### Python

pip install abbreviation-extractor-rs

## Basic Usage

### Rust

```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

```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

```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

```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);
}
```


## Parallel Processing

For processing multiple texts in parallel, you can use the `extract_abbreviation_definition_pairs_parallel` function:

### Rust

```rust
use abbreviation_extractor::{extract_abbreviation_definition_pairs_parallel, AbbreviationOptions};

let texts = vec![
    "The World Health Organization (WHO) is a specialized agency.",
    "The United Nations (UN) works closely with WHO.",
    "The European Union (EU) is a political and economic union.",
];

let options = AbbreviationOptions::default();
let result = extract_abbreviation_definition_pairs_parallel(texts, options);

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

### Python

```python
from abbreviation_extractor import extract_abbreviation_definition_pairs_parallel

texts = [
    "The World Health Organization (WHO) is a specialized agency.",
    "The United Nations (UN) works closely with WHO.",
    "The European Union (EU) is a political and economic union.",
]

result = extract_abbreviation_definition_pairs_parallel(texts)

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

## Processing Large Files

For extracting abbreviations from large files, you can use the `extract_abbreviations_from_file` function:

### Rust

```rust
use abbreviation_extractor::{extract_abbreviations_from_file, AbbreviationOptions, FileExtractionOptions};

let file_path = "path/to/your/large/file.txt";
let abbreviation_options = AbbreviationOptions::default();
let file_options = FileExtractionOptions::default();

let result = extract_abbreviations_from_file(file_path, abbreviation_options, file_options);

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

### Python

```python
from abbreviation_extractor import extract_abbreviations_from_file

file_path = "path/to/your/large/file.txt"
result = extract_abbreviations_from_file(file_path)

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

You can customize the file extraction process by specifying additional parameters:

```python
result = extract_abbreviations_from_file(
    file_path,
    most_common_definition=True,
    first_definition=False,
    tokenize=True,
    num_threads=4,
    show_progress=True,
    chunk_size=2048 * 1024  # 2MB chunks
)
```

# 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

<img src="https://github.com/praise2112/abbreviation-extractor/raw/main/benches/abbreviation_extraction_benchmark.png" alt="Abbreviation Extraction Benchmark" width="1100"/>

## API Reference

For detailed API documentation, please refer to the [Rust docs](https://docs.rs/abbreviation_extractor) 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](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.](https://psb.stanford.edu/psb-online/proceedings/psb03/schwartz.pdf)

The implementation is inspired by the original Python variant by Phil Gooch: [abbreviation-extractor](https://github.com/philgooch/abbreviation-extraction)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "abbreviation-extractor",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "abbreviation, extraction, nlp, text-processing, biomedical",
    "author": "Praise Oketola <oketola.praise@gmail.com>",
    "author_email": "Praise Oketola <oketola.praise@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/00/c1/7dad9d81712d9924f92886db2f0d457976a9b6baa4f028efbe8644c1ba8e/abbreviation_extractor-0.1.4.tar.gz",
    "platform": null,
    "description": "\n# Abbreviation Extractor\n\nAbbreviation 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](https://psb.stanford.edu/psb-online/proceedings/psb03/schwartz.pdf), offering enhanced accuracy and speed. It's based the original [python implementation](https://github.com/philgooch/abbreviation-extraction).\n\n[Speed Comparison With Other Abbreviation Extraction Libraries](#performance-comparison-of-abbreviation-extractor-against-other-libraries)\n\n[Extraction Accuracy Comparison With Other Abbreviation Extraction Libraries](#performance-comparison-of-abbreviation-extractor-against-other-libraries)\n\n## Features\n\n- Fast and accurate extraction of abbreviation-definition pairs with tokenization.\n- Support for both single-threaded and parallel processing\n- Python bindings for easy integration with Python projects\n- Customizable extraction parameters like selecting the most common or first definition for each abbreviation\n\n## Installation\n\n### Rust\n\nAdd this to your `Cargo.toml`:\n\n```toml\nabbreviation-extractor = \"0.1.3\"\n```\n\n### Python\n\npip install abbreviation-extractor-rs\n\n## Basic Usage\n\n### Rust\n\n```rust\nuse abbreviation_extractor::{extract_abbreviation_definition_pairs, AbbreviationOptions};\n\nlet text = \"The World Health Organization (WHO) is a specialized agency.\";\nlet options = AbbreviationOptions::default();\nlet result = extract_abbreviation_definition_pairs(text, options);\n\nfor pair in result {\n    println!(\"Abbreviation: {}, Definition: {}\", pair.abbreviation, pair.definition);\n}\n```\n\n### Python\n\n```python\nfrom abbreviation_extractor import extract_abbreviation_definition_pairs\n\ntext = \"The World Health Organization (WHO) is a specialized agency.\"\nresult = extract_abbreviation_definition_pairs(text)\n\nfor pair in result:\n    print(f\"Abbreviation: {pair.abbreviation}, Definition: {pair.definition}\")\n```\n\n### Customizing Extraction\n\n#### Python\n\n```python\nfrom abbreviation_extractor import extract_abbreviation_definition_pairs\n\ntext = \"The World Health Organization (WHO) is a specialized agency. The World Heritage Organization (WHO) is different.\"\n\n# Get only the most common definition for each abbreviation\nresult = extract_abbreviation_definition_pairs(text, most_common_definition=True)\n\n# Get only the first definition for each abbreviation\nresult = extract_abbreviation_definition_pairs(text, first_definition=True)\n\n# Disable tokenization (if the input is already tokenized)\nresult = extract_abbreviation_definition_pairs(text, tokenize=False)\n\n# Combine options\nresult = extract_abbreviation_definition_pairs(text, most_common_definition=True, tokenize=True)\n\nfor pair in result:\n    print(f\"Abbreviation: {pair.abbreviation}, Definition: {pair.definition}\")\n```\n\n#### Rust\n\n```rust\nuse abbreviation_extractor::{extract_abbreviation_definition_pairs, AbbreviationOptions};\n\nlet text = \"The World Health Organization (WHO) is a specialized agency. The World Heritage Organization (WHO) is different.\";\n\n// Get only the most common definition for each abbreviation\nlet options = AbbreviationOptions::new(true, false, true);\nlet result = extract_abbreviation_definition_pairs(text, options);\n\n// Get only the first definition for each abbreviation\nlet options = AbbreviationOptions::new(false, true, true);\nlet result = extract_abbreviation_definition_pairs(text, options);\n\n// Disable tokenization (if the input is already tokenized)\nlet options = AbbreviationOptions::new(false, false, false);\nlet result = extract_abbreviation_definition_pairs(text, options);\n\nfor pair in result {\n    println!(\"Abbreviation: {}, Definition: {}\", pair.abbreviation, pair.definition);\n}\n```\n\n\n## Parallel Processing\n\nFor processing multiple texts in parallel, you can use the `extract_abbreviation_definition_pairs_parallel` function:\n\n### Rust\n\n```rust\nuse abbreviation_extractor::{extract_abbreviation_definition_pairs_parallel, AbbreviationOptions};\n\nlet texts = vec![\n    \"The World Health Organization (WHO) is a specialized agency.\",\n    \"The United Nations (UN) works closely with WHO.\",\n    \"The European Union (EU) is a political and economic union.\",\n];\n\nlet options = AbbreviationOptions::default();\nlet result = extract_abbreviation_definition_pairs_parallel(texts, options);\n\nfor extraction in result.extractions {\n    println!(\"Abbreviation: {}, Definition: {}\", extraction.abbreviation, extraction.definition);\n}\n```\n\n### Python\n\n```python\nfrom abbreviation_extractor import extract_abbreviation_definition_pairs_parallel\n\ntexts = [\n    \"The World Health Organization (WHO) is a specialized agency.\",\n    \"The United Nations (UN) works closely with WHO.\",\n    \"The European Union (EU) is a political and economic union.\",\n]\n\nresult = extract_abbreviation_definition_pairs_parallel(texts)\n\nfor extraction in result.extractions:\n    print(f\"Abbreviation: {extraction.abbreviation}, Definition: {extraction.definition}\")\n```\n\n## Processing Large Files\n\nFor extracting abbreviations from large files, you can use the `extract_abbreviations_from_file` function:\n\n### Rust\n\n```rust\nuse abbreviation_extractor::{extract_abbreviations_from_file, AbbreviationOptions, FileExtractionOptions};\n\nlet file_path = \"path/to/your/large/file.txt\";\nlet abbreviation_options = AbbreviationOptions::default();\nlet file_options = FileExtractionOptions::default();\n\nlet result = extract_abbreviations_from_file(file_path, abbreviation_options, file_options);\n\nfor extraction in result.extractions {\n    println!(\"Abbreviation: {}, Definition: {}\", extraction.abbreviation, extraction.definition);\n}\n```\n\n### Python\n\n```python\nfrom abbreviation_extractor import extract_abbreviations_from_file\n\nfile_path = \"path/to/your/large/file.txt\"\nresult = extract_abbreviations_from_file(file_path)\n\nfor extraction in result.extractions:\n    print(f\"Abbreviation: {extraction.abbreviation}, Definition: {extraction.definition}\")\n```\n\nYou can customize the file extraction process by specifying additional parameters:\n\n```python\nresult = extract_abbreviations_from_file(\n    file_path,\n    most_common_definition=True,\n    first_definition=False,\n    tokenize=True,\n    num_threads=4,\n    show_progress=True,\n    chunk_size=2048 * 1024  # 2MB chunks\n)\n```\n\n# Benchmark\n\nBelow 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.\n\n## Performance Comparison of Abbreviation Extractor Against Other Libraries\n\n| Abbrv     | Ground Truth | abbreviation-extractor (This Library)         | abbreviation-extraction         | ScispaCy |\n|-----------|------------------------------------------------------------------------------|-----------------------------------------------|---------------------------------|------------|\n| '3-meAde' | '3-methyl-adenine' | '3-methyl-adenine'                            | '3-methyl-adenine'              | 'N/A' |\n| '5'UTR'   | '5' untranslated region' | '5' untranslated region'                      | 'N/A'                           | 'N/A' |\n| '5LO'     | '5-lipoxygenase' | '5-lipoxygenase'                              | '5-lipoxygenase'                | 'N/A' |\n| 'AAV'     | 'adeno-associated virus' | 'adeno-associated virus'                      | 'associated virus'              | 'adeno-associated virus' |\n| 'ACP'     | 'Enoyl-acyl carrier protein' | 'Enoyl-acyl carrier protein'                  | 'acyl carrier protein'          | 'Enoyl-acyl carrier protein' |\n| 'ADIOL'   | '5-androstene-3beta, 17beta-diol' | '5-androstene-3beta, 17beta-diol'             | 'androstene-3beta, 17beta-diol' | '5-androstene-3beta, 17beta-diol' |\n| cAMP      | 'cyclic AMP' | 'cyclic AMP'                                  | 'N/A'                           | |\n| 'ALAD'    | '5-aminolaevulinic acid dehydratase' | '5-aminolaevulinic acid dehydratase'          | 'N/A'                           | '5-aminolaevulinic acid dehydratase' |\n| 'AMPK'    | 'AMP-activated protein kinase' | 'AMP-activated protein kinase'                | 'N/A'                           | 'AMP-activated protein kinase' |\n| 'AP'      | 'apurinic/apyrimidinic site' | 'apurinic/apyrimidinic site'                  | 'apyrimidinic site'             | 'apurinic/apyrimidinic site' |\n| 'AcCoA'   | 'acetyl coenzyme A' | 'acetyl coenzyme A'                           | 'N/A'                           | 'acetyl coenzyme A' |\n| 'Ahr'     | 'aryl hydrocarbon receptor' | 'aryl hydrocarbon receptor'                   | 'N/A'                           | 'aryl hydrocarbon receptor' |\n| 'BD'      | 'binding domain' | 'binding domain'                              | 'N/A'                           | 'binding domain' |\n| '8-OxoG'  | '7,8-dihydro-8-oxoguanine' | '7,8-dihydro-8-oxoguanine'                    | '8-oxoguanine'                  | 'N/A' |\n| dsRNA     | double-stranded RNA | double-stranded RNA                           | double-stranded RNA             | 'N/A' |\n| 'BERI'    | 'Biomolecular Engineering Research Institute' | 'Biomolecular Engineering Research Institute' | 'N/A'                           | 'Biomolecular Engineering Research Institute' |\n| 'CTLs     | 'cytotoxic T lymphocytes'              | 'cytotoxic T lymphocytes'                     | 'N/A'                           | 'N/A'                                       |\n| 'C-RBD'   | 'C-terminal RNA binding domain' | 'C-terminal RNA binding domain'               | 'N/A'                           | 'C-terminal RNA binding domain' |\n| 'CAP'     | 'cyclase-associated protein' | 'cyclase-associated protein'                  | 'N/A'                           | 'cyclase-associated protein' |\n\n## Speed Comparison with Other Abbreviation Extraction Libraries\n\n<img src=\"https://github.com/praise2112/abbreviation-extractor/raw/main/benches/abbreviation_extraction_benchmark.png\" alt=\"Abbreviation Extraction Benchmark\" width=\"1100\"/>\n\n## API Reference\n\nFor detailed API documentation, please refer to the [Rust docs](https://docs.rs/abbreviation_extractor) or the Python module docstrings.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n## Acknowledgements\n\nThis library is based on the Schwartz-Hearst algorithm:\n\n[A. Schwartz and M. Hearst (2003) A Simple Algorithm for Identifying Abbreviations Definitions in Biomedical Text. Biocomputing, 451-462.](https://psb.stanford.edu/psb-online/proceedings/psb03/schwartz.pdf)\n\nThe implementation is inspired by the original Python variant by Phil Gooch: [abbreviation-extractor](https://github.com/philgooch/abbreviation-extraction)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A library for extracting abbreviations from text.",
    "version": "0.1.4",
    "project_urls": {
        "Source Code": "https://github.com/praise2112/abbreviation-extractor"
    },
    "split_keywords": [
        "abbreviation",
        " extraction",
        " nlp",
        " text-processing",
        " biomedical"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8777e2c21458df5479941e5074135721f30fe8966e0e119dbe9347a10599cc6b",
                "md5": "f61e02fdf2fb9edee09f4d4fe569fd2d",
                "sha256": "ad1589390b782800f0b920d8bdeb675c80a66a185f5eb90cc7bc30028fdd639c"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f61e02fdf2fb9edee09f4d4fe569fd2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1220557,
            "upload_time": "2024-09-14T20:01:17",
            "upload_time_iso_8601": "2024-09-14T20:01:17.983168Z",
            "url": "https://files.pythonhosted.org/packages/87/77/e2c21458df5479941e5074135721f30fe8966e0e119dbe9347a10599cc6b/abbreviation_extractor-0.1.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f63ee4fc9ce0fefe27351396f371bb308f9f89db2f31a1f3c9114e8f96fdf79",
                "md5": "8ab8aed6f61bcb46ac167a8cb54845cf",
                "sha256": "120ca725432e5a27d5769c33487c3eaa57c85c1a783199a073a1fda97763d984"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ab8aed6f61bcb46ac167a8cb54845cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1417818,
            "upload_time": "2024-09-14T20:00:04",
            "upload_time_iso_8601": "2024-09-14T20:00:04.760963Z",
            "url": "https://files.pythonhosted.org/packages/1f/63/ee4fc9ce0fefe27351396f371bb308f9f89db2f31a1f3c9114e8f96fdf79/abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca51e14cb28f63997a9c9e84bcb13773b858d5cca669e41caedd67dac63cfa22",
                "md5": "85ad1eea84d070b1b88f60e7888bc2f5",
                "sha256": "65897cb19581e8631f1ef23202221048c442ebbe39ffd711f31cee64e74b332f"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "85ad1eea84d070b1b88f60e7888bc2f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1352602,
            "upload_time": "2024-09-14T20:00:19",
            "upload_time_iso_8601": "2024-09-14T20:00:19.763497Z",
            "url": "https://files.pythonhosted.org/packages/ca/51/e14cb28f63997a9c9e84bcb13773b858d5cca669e41caedd67dac63cfa22/abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3417898af17b36374c36edad1f1e2802d19f95e917dbfa9531e1cc283a14800b",
                "md5": "0d94ca3f64e75a0c0c33958576e66ad1",
                "sha256": "6ad36590ac1612caee7521c6c96f3aac2c16599112e315fc0f0075f958bab4e8"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0d94ca3f64e75a0c0c33958576e66ad1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1458002,
            "upload_time": "2024-09-14T20:00:57",
            "upload_time_iso_8601": "2024-09-14T20:00:57.218300Z",
            "url": "https://files.pythonhosted.org/packages/34/17/898af17b36374c36edad1f1e2802d19f95e917dbfa9531e1cc283a14800b/abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48c454428c965be20765310cc777fdf021665b97b92aaf6a6340285c47177cc2",
                "md5": "4ba6a529a93fd92c60374ce42b41d175",
                "sha256": "cc862781fd391ae33648beb5b72166ee204d56ce72253e08e2d8d67849d64be9"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4ba6a529a93fd92c60374ce42b41d175",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1507181,
            "upload_time": "2024-09-14T20:00:33",
            "upload_time_iso_8601": "2024-09-14T20:00:33.296003Z",
            "url": "https://files.pythonhosted.org/packages/48/c4/54428c965be20765310cc777fdf021665b97b92aaf6a6340285c47177cc2/abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9050903ee062f1b225888f6b428162586976cd8bb76fc3976510c8973331176e",
                "md5": "849b35b053daf896263ca6064f647886",
                "sha256": "08b03c1d5e9267f8b3346db773e4447fdb4a5b22ab29738b15c9547bc4ba97ee"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "849b35b053daf896263ca6064f647886",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1573748,
            "upload_time": "2024-09-14T20:00:44",
            "upload_time_iso_8601": "2024-09-14T20:00:44.495909Z",
            "url": "https://files.pythonhosted.org/packages/90/50/903ee062f1b225888f6b428162586976cd8bb76fc3976510c8973331176e/abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ed809e3ba2d8a525f40aa8afaf4b0ec0a81b6b0cb78a0c7cd30856b9b104f0d",
                "md5": "15783388086fe10baced32235c5e845f",
                "sha256": "3219dea833d7211719ce640822c7a344ff4e5af590738e344fa51aedc7996a46"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15783388086fe10baced32235c5e845f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1446833,
            "upload_time": "2024-09-14T20:01:07",
            "upload_time_iso_8601": "2024-09-14T20:01:07.814501Z",
            "url": "https://files.pythonhosted.org/packages/9e/d8/09e3ba2d8a525f40aa8afaf4b0ec0a81b6b0cb78a0c7cd30856b9b104f0d/abbreviation_extractor-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc6729ae2eb916260e08e82eee4a3eda2357fb76e0d67b92cf9595863fdf070b",
                "md5": "5a9dc4d1201cbad598da6ffd4256302e",
                "sha256": "be7d151cd75befa497e6ae7a7347f1a48a97b54f3babf480e9e2fe0de86fa4b0"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5a9dc4d1201cbad598da6ffd4256302e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1568048,
            "upload_time": "2024-09-14T20:01:27",
            "upload_time_iso_8601": "2024-09-14T20:01:27.433501Z",
            "url": "https://files.pythonhosted.org/packages/cc/67/29ae2eb916260e08e82eee4a3eda2357fb76e0d67b92cf9595863fdf070b/abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "572244d31e6a33f9cf5ee2ddc29969f79fa4a490d8b76bc895b078926a51920e",
                "md5": "1fe6e90242b141a271fbf3f3f3500cbe",
                "sha256": "69726dea1477c537a1db0b8e868ff7cb5d3bdddb6be0dd211f150e8bb53dafb9"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1fe6e90242b141a271fbf3f3f3500cbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1589159,
            "upload_time": "2024-09-14T20:01:39",
            "upload_time_iso_8601": "2024-09-14T20:01:39.695146Z",
            "url": "https://files.pythonhosted.org/packages/57/22/44d31e6a33f9cf5ee2ddc29969f79fa4a490d8b76bc895b078926a51920e/abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0b5c65cfbef893803e241a43bc871eef253d231a66b931ab45384e909b826fe",
                "md5": "48973ea29c2f29b5e67a9e92e81d860b",
                "sha256": "2cc2756eb80e920c521e65fe6cd71de4dbbc8bd377583454b385b8a51d396b5c"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "48973ea29c2f29b5e67a9e92e81d860b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1557393,
            "upload_time": "2024-09-14T20:01:51",
            "upload_time_iso_8601": "2024-09-14T20:01:51.024093Z",
            "url": "https://files.pythonhosted.org/packages/c0/b5/c65cfbef893803e241a43bc871eef253d231a66b931ab45384e909b826fe/abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e24ddafbfbb4ec107e62465c8d0a92d835f2c72c9c328b440c0a1955a0b2b71",
                "md5": "c6235358f21b747a22c7dfb5d14d5d5b",
                "sha256": "bcdc40d45abc36e885657287957af27789f9486ebc76db6a086a4519f3337892"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6235358f21b747a22c7dfb5d14d5d5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1599549,
            "upload_time": "2024-09-14T20:02:03",
            "upload_time_iso_8601": "2024-09-14T20:02:03.468401Z",
            "url": "https://files.pythonhosted.org/packages/6e/24/ddafbfbb4ec107e62465c8d0a92d835f2c72c9c328b440c0a1955a0b2b71/abbreviation_extractor-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7208931005f15843024eaf0259e43473507790cb659c9e89a91a33c5d1b2271e",
                "md5": "30654dcbb3e18bd21b44d19e5606445e",
                "sha256": "69202c13a3dfbd2e7a744c44637fb95581dbb54b8ffd14f45ba114b5270c94c4"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "30654dcbb3e18bd21b44d19e5606445e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1006863,
            "upload_time": "2024-09-14T20:02:25",
            "upload_time_iso_8601": "2024-09-14T20:02:25.140100Z",
            "url": "https://files.pythonhosted.org/packages/72/08/931005f15843024eaf0259e43473507790cb659c9e89a91a33c5d1b2271e/abbreviation_extractor-0.1.4-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5e892448bc2cd069d487ce811daee841b5343e9d7468a3f4eb368036959ddac",
                "md5": "a44d48ebf162d8d9593c7c9684adfaf5",
                "sha256": "047558779bee3fb08311c8b708f73c9f5c01f83d04577d91ef7ef06a20ab33df"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a44d48ebf162d8d9593c7c9684adfaf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1108935,
            "upload_time": "2024-09-14T20:02:16",
            "upload_time_iso_8601": "2024-09-14T20:02:16.529892Z",
            "url": "https://files.pythonhosted.org/packages/d5/e8/92448bc2cd069d487ce811daee841b5343e9d7468a3f4eb368036959ddac/abbreviation_extractor-0.1.4-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a8e41da4ddcd77b6873a3a4e5eac1ce55f3088a12b3268fc5992c915967a6e1",
                "md5": "b0e0743684c80b123de666d9df69b02f",
                "sha256": "f233a8d7cae1987c2d8c3e3cb16f6e2db3ccda071421653ba09167c830f847f0"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0e0743684c80b123de666d9df69b02f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1278377,
            "upload_time": "2024-09-14T20:01:24",
            "upload_time_iso_8601": "2024-09-14T20:01:24.723632Z",
            "url": "https://files.pythonhosted.org/packages/8a/8e/41da4ddcd77b6873a3a4e5eac1ce55f3088a12b3268fc5992c915967a6e1/abbreviation_extractor-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7151356977e78dc8bcc6f4d5940eb6d851ebc1bb079c694a846d4e224d665eb2",
                "md5": "26385eda87bd4c4954c5beed55e6708e",
                "sha256": "910eaea95be5842833b79d963618d92a5b4f669aa4fba02127bf34fc47b6d28e"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "26385eda87bd4c4954c5beed55e6708e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1220347,
            "upload_time": "2024-09-14T20:01:19",
            "upload_time_iso_8601": "2024-09-14T20:01:19.989782Z",
            "url": "https://files.pythonhosted.org/packages/71/51/356977e78dc8bcc6f4d5940eb6d851ebc1bb079c694a846d4e224d665eb2/abbreviation_extractor-0.1.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af3b05ddc8422933291a9cc749cceac83210eacc3e877861a084fa16cd1ced3c",
                "md5": "61eb23065580cdd02e8fd2b3fc0d527a",
                "sha256": "6c16a466c6981acb3267ace56df8a8f9518527e6f914f005d1ff3d1d0243d0bd"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "61eb23065580cdd02e8fd2b3fc0d527a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1417774,
            "upload_time": "2024-09-14T20:00:06",
            "upload_time_iso_8601": "2024-09-14T20:00:06.960598Z",
            "url": "https://files.pythonhosted.org/packages/af/3b/05ddc8422933291a9cc749cceac83210eacc3e877861a084fa16cd1ced3c/abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae47a12cef58c4fbdd994387f5064b859c653e287a54efdbd7bc1bab8bab644d",
                "md5": "ab4451e00dd40d2b07afb5c047c16697",
                "sha256": "ba63c3f1daff59c458415bc14a65e8bbf83a115abb863a915de5fd790de185bc"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ab4451e00dd40d2b07afb5c047c16697",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1352586,
            "upload_time": "2024-09-14T20:00:21",
            "upload_time_iso_8601": "2024-09-14T20:00:21.778969Z",
            "url": "https://files.pythonhosted.org/packages/ae/47/a12cef58c4fbdd994387f5064b859c653e287a54efdbd7bc1bab8bab644d/abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0a248890f9d7ba7959a59e58feec70d20f9cffd8a5f2ff1670cfc48b4f45c06",
                "md5": "9960125ae02d201cc1a2ddd9b98ac33c",
                "sha256": "9a33564a1e75108f957ab33ab73c1ce1fea453d2536134d02b25ef4199b4b550"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9960125ae02d201cc1a2ddd9b98ac33c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1458809,
            "upload_time": "2024-09-14T20:00:59",
            "upload_time_iso_8601": "2024-09-14T20:00:59.200372Z",
            "url": "https://files.pythonhosted.org/packages/c0/a2/48890f9d7ba7959a59e58feec70d20f9cffd8a5f2ff1670cfc48b4f45c06/abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd48f902b1f1c2c2fae4a0af10ce4a5338684ece86ab96a1e8c79451f3b8d919",
                "md5": "681ec0477d659a0b9a820fc0c07fcfcf",
                "sha256": "cba361a04d9855c9ba30557c79924d26f88b7f6a6f1f8495a120380af2db3d2d"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "681ec0477d659a0b9a820fc0c07fcfcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1506435,
            "upload_time": "2024-09-14T20:00:34",
            "upload_time_iso_8601": "2024-09-14T20:00:34.844680Z",
            "url": "https://files.pythonhosted.org/packages/bd/48/f902b1f1c2c2fae4a0af10ce4a5338684ece86ab96a1e8c79451f3b8d919/abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbb3a2a9af04d2a8fd00618ff60054c40b6a7efc6ca9895985a2a7cd5e8e3e64",
                "md5": "945cee6ea342d79e1463a273e8a400b1",
                "sha256": "f72e4f237f28bce84bcd8736532bdca0efbd926829f1cf011553a6d0142d9111"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "945cee6ea342d79e1463a273e8a400b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1572482,
            "upload_time": "2024-09-14T20:00:45",
            "upload_time_iso_8601": "2024-09-14T20:00:45.865299Z",
            "url": "https://files.pythonhosted.org/packages/cb/b3/a2a9af04d2a8fd00618ff60054c40b6a7efc6ca9895985a2a7cd5e8e3e64/abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe48e0f0f038c3b0d322a7c59c1e8187ed4e910d2fc2bd585220736a6438c56d",
                "md5": "bfa2774f0110f9921e57d6a7f6f80354",
                "sha256": "06b4102c98afdcec8630e73971d071b89eb10d4caf38883e41b7c4b3e1ebda9d"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfa2774f0110f9921e57d6a7f6f80354",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1446553,
            "upload_time": "2024-09-14T20:01:09",
            "upload_time_iso_8601": "2024-09-14T20:01:09.428750Z",
            "url": "https://files.pythonhosted.org/packages/fe/48/e0f0f038c3b0d322a7c59c1e8187ed4e910d2fc2bd585220736a6438c56d/abbreviation_extractor-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3717f1ffd70a14476e1985a320fd76d6c2aa4f2d690e6fbd4287defa6d78e1b",
                "md5": "26bba0626f90171d4686777893748697",
                "sha256": "6cd29550680a43ab0d706bd4806bf9d1d5c5e4b1aa779590272e52d2fc07f25a"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "26bba0626f90171d4686777893748697",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1567995,
            "upload_time": "2024-09-14T20:01:29",
            "upload_time_iso_8601": "2024-09-14T20:01:29.187529Z",
            "url": "https://files.pythonhosted.org/packages/f3/71/7f1ffd70a14476e1985a320fd76d6c2aa4f2d690e6fbd4287defa6d78e1b/abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98abb730ad25b2a85feffc30bbe2efaf6d1b7bfac93b9db7403fba928d45c9a2",
                "md5": "4548dd0ca71361011885fa0d5aa83f0d",
                "sha256": "c0d6f6d76575491237cbbf1db48b960d4a433355898b21f80f8abb78468b75c8"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4548dd0ca71361011885fa0d5aa83f0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1588797,
            "upload_time": "2024-09-14T20:01:41",
            "upload_time_iso_8601": "2024-09-14T20:01:41.125448Z",
            "url": "https://files.pythonhosted.org/packages/98/ab/b730ad25b2a85feffc30bbe2efaf6d1b7bfac93b9db7403fba928d45c9a2/abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b397d2011ad312765d104aae3c6641c7921b9d21683be3a237a2d83f9ae75b85",
                "md5": "9412f8a457aef71f33ca544478632d32",
                "sha256": "82f9bc1fd4756024dab9a4c22c46aa97d3fa3565ea1cb7f1745a04a1538b13ac"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9412f8a457aef71f33ca544478632d32",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1557739,
            "upload_time": "2024-09-14T20:01:52",
            "upload_time_iso_8601": "2024-09-14T20:01:52.268984Z",
            "url": "https://files.pythonhosted.org/packages/b3/97/d2011ad312765d104aae3c6641c7921b9d21683be3a237a2d83f9ae75b85/abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "befa9091005142ff586f240a7fb3e34b8ed468275d9d029dcf5182a9d9c14b7a",
                "md5": "3213a0931bdaa8a737671f91818d87b4",
                "sha256": "b177bfe8c96e7ba5dabcbac1e18fcec40a2a81ee959fd0f3af74a029bf16327e"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3213a0931bdaa8a737671f91818d87b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1598038,
            "upload_time": "2024-09-14T20:02:04",
            "upload_time_iso_8601": "2024-09-14T20:02:04.891088Z",
            "url": "https://files.pythonhosted.org/packages/be/fa/9091005142ff586f240a7fb3e34b8ed468275d9d029dcf5182a9d9c14b7a/abbreviation_extractor-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "358a1c78bb16fac97693c9ca2737d08c434922b66b07213dfa69c774cdb873cc",
                "md5": "c9471bdde240e6a55b7a0dfefe36230f",
                "sha256": "24e7e81a80610f07a42bbbe7ba7186c4d144b4e004880afbe441dd13157e2ba4"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c9471bdde240e6a55b7a0dfefe36230f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1007130,
            "upload_time": "2024-09-14T20:02:27",
            "upload_time_iso_8601": "2024-09-14T20:02:27.022372Z",
            "url": "https://files.pythonhosted.org/packages/35/8a/1c78bb16fac97693c9ca2737d08c434922b66b07213dfa69c774cdb873cc/abbreviation_extractor-0.1.4-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44280318823d29ada13aba14ff9d3b760fa8ccfa3d62e508910a5cb9db4427a1",
                "md5": "88a292690852824040577ddef412e3da",
                "sha256": "335db34f4c53b84a5ab6f84217a20bd9f4cd213eb8107269b0c9910226d39345"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "88a292690852824040577ddef412e3da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1109067,
            "upload_time": "2024-09-14T20:02:18",
            "upload_time_iso_8601": "2024-09-14T20:02:18.021157Z",
            "url": "https://files.pythonhosted.org/packages/44/28/0318823d29ada13aba14ff9d3b760fa8ccfa3d62e508910a5cb9db4427a1/abbreviation_extractor-0.1.4-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69b06b9e3e7bc0c58571e9195801bcdb315f537018c9767e663e336cbd81a720",
                "md5": "8499733c720adeac1947f346ad30c407",
                "sha256": "dd2651e7160f50edd3eddc7ebc62eee637bffa9dbd443e991d5a56bbdb883f46"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8499733c720adeac1947f346ad30c407",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1277777,
            "upload_time": "2024-09-14T20:01:25",
            "upload_time_iso_8601": "2024-09-14T20:01:25.949622Z",
            "url": "https://files.pythonhosted.org/packages/69/b0/6b9e3e7bc0c58571e9195801bcdb315f537018c9767e663e336cbd81a720/abbreviation_extractor-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0091f2562b1bb90f65931b408903a3e2b9bccc788b1da82cccc099b98b736455",
                "md5": "c7f25bd4fc494eb2f3927c21cd37adee",
                "sha256": "c920a6f0ae913aa61e5aa10e087de9a451679e480e74378536dc24543e7856a3"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7f25bd4fc494eb2f3927c21cd37adee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1220242,
            "upload_time": "2024-09-14T20:01:21",
            "upload_time_iso_8601": "2024-09-14T20:01:21.250549Z",
            "url": "https://files.pythonhosted.org/packages/00/91/f2562b1bb90f65931b408903a3e2b9bccc788b1da82cccc099b98b736455/abbreviation_extractor-0.1.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97f04cb85b766b9ccb43a8ef6cdc26b488133a8d077a19f48c7d3fd6c47594e2",
                "md5": "87f0b02f30ea8d9faeed25ba72d94daa",
                "sha256": "d1a78884775f4776ec8422768aca52aad0dedba2e2297e2f791b959625b2a2db"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "87f0b02f30ea8d9faeed25ba72d94daa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1416042,
            "upload_time": "2024-09-14T20:00:08",
            "upload_time_iso_8601": "2024-09-14T20:00:08.795397Z",
            "url": "https://files.pythonhosted.org/packages/97/f0/4cb85b766b9ccb43a8ef6cdc26b488133a8d077a19f48c7d3fd6c47594e2/abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdf30ded031ce8e3b620991f118a61c637149317a33610966805ef7dabe6ce98",
                "md5": "0252dff0ab3f76f9e4d06ea4fbc9cabb",
                "sha256": "f86a9f99397dc486b2a6d6a92c1941865f621169ee1112f658d81752cea1fe08"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0252dff0ab3f76f9e4d06ea4fbc9cabb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1355555,
            "upload_time": "2024-09-14T20:00:23",
            "upload_time_iso_8601": "2024-09-14T20:00:23.234564Z",
            "url": "https://files.pythonhosted.org/packages/fd/f3/0ded031ce8e3b620991f118a61c637149317a33610966805ef7dabe6ce98/abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4d0a5e1513999de03e7e6d2a5ed30af81027e77138e945579d92db9b563fe8b",
                "md5": "beb7639674387fde2eac3ea9312814cb",
                "sha256": "3b973dd2694c80b822921d7ee941d9ef842835e4443f2232d3163d6302536f06"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "beb7639674387fde2eac3ea9312814cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1460045,
            "upload_time": "2024-09-14T20:01:00",
            "upload_time_iso_8601": "2024-09-14T20:01:00.742444Z",
            "url": "https://files.pythonhosted.org/packages/d4/d0/a5e1513999de03e7e6d2a5ed30af81027e77138e945579d92db9b563fe8b/abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d969baf2b6accfb6129b293ec374716ae62d33b935159b6e0298f910d35a89d3",
                "md5": "ec02467f18eec536b9794d4da5f300c5",
                "sha256": "c394766772fe72f5abe11d20eb9190a65191e2820ca6edd05263184dc7c68050"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ec02467f18eec536b9794d4da5f300c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1502600,
            "upload_time": "2024-09-14T20:00:36",
            "upload_time_iso_8601": "2024-09-14T20:00:36.035658Z",
            "url": "https://files.pythonhosted.org/packages/d9/69/baf2b6accfb6129b293ec374716ae62d33b935159b6e0298f910d35a89d3/abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c0ede910242f717f4636cfb6a523058071fe3114ab40a1b5fad657e3d0d8741",
                "md5": "dffac1ddbc4ace7075c9ec3419d26438",
                "sha256": "9257309bae09d5ef5c1e907bba52f496d11354a96c49e28a0bc1df1ec704c98b"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dffac1ddbc4ace7075c9ec3419d26438",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1569189,
            "upload_time": "2024-09-14T20:00:47",
            "upload_time_iso_8601": "2024-09-14T20:00:47.055223Z",
            "url": "https://files.pythonhosted.org/packages/5c/0e/de910242f717f4636cfb6a523058071fe3114ab40a1b5fad657e3d0d8741/abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "426c6afe6657a8611a0d0fade751a92e2780f4e8f223e9152e944e43a421076c",
                "md5": "ababcf3af2c3c04f5097f8eee773887b",
                "sha256": "40c2827519d48b6974d5e1f8e42ccdfc961d45b1635c6c8f658e95a75e051d01"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ababcf3af2c3c04f5097f8eee773887b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1446304,
            "upload_time": "2024-09-14T20:01:10",
            "upload_time_iso_8601": "2024-09-14T20:01:10.872498Z",
            "url": "https://files.pythonhosted.org/packages/42/6c/6afe6657a8611a0d0fade751a92e2780f4e8f223e9152e944e43a421076c/abbreviation_extractor-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5270ec20473e12f9178ee5fe8be5bce0190e7e19b2d4f059fed6aa08761a74df",
                "md5": "aeb3c6c0e203dc6898e51dd65703b85d",
                "sha256": "740ded4ebc0c16933396a652325b27cae9976c5af6c4f80f1e3dc5f003a22575"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aeb3c6c0e203dc6898e51dd65703b85d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1566251,
            "upload_time": "2024-09-14T20:01:30",
            "upload_time_iso_8601": "2024-09-14T20:01:30.435864Z",
            "url": "https://files.pythonhosted.org/packages/52/70/ec20473e12f9178ee5fe8be5bce0190e7e19b2d4f059fed6aa08761a74df/abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22a4aafdee6012baf9e44cc6e862178742c9395430d5cf5da72b2cbba9fc3efa",
                "md5": "472f395368976f1ecee6d5211200454f",
                "sha256": "80600a198a7415c778333e9d88e0598898c1ef99c0fd85e210be928d439cab97"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "472f395368976f1ecee6d5211200454f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1592642,
            "upload_time": "2024-09-14T20:01:42",
            "upload_time_iso_8601": "2024-09-14T20:01:42.475208Z",
            "url": "https://files.pythonhosted.org/packages/22/a4/aafdee6012baf9e44cc6e862178742c9395430d5cf5da72b2cbba9fc3efa/abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20e74b250c7b21a84acc12b77126ed3fcb9487778ff8bd7b908725d5cd986ae3",
                "md5": "f41d1b761fcd91d5b79fd3c56f8100bd",
                "sha256": "2582ef626508637b4aabc377b51e2d132ac50f228a57023ea7db196eaaa6ccd4"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f41d1b761fcd91d5b79fd3c56f8100bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1555665,
            "upload_time": "2024-09-14T20:01:53",
            "upload_time_iso_8601": "2024-09-14T20:01:53.566919Z",
            "url": "https://files.pythonhosted.org/packages/20/e7/4b250c7b21a84acc12b77126ed3fcb9487778ff8bd7b908725d5cd986ae3/abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf0c017fc5bde191470c308c36a7d36375f15433ee5e41e896dee9acc3dc6685",
                "md5": "2648484296b994e28d0c254275803ac2",
                "sha256": "9f3efd6290f473cb371a88a100058ddc71473f1f22f69c2f5cbf04340c6fdf6b"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2648484296b994e28d0c254275803ac2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1597254,
            "upload_time": "2024-09-14T20:02:06",
            "upload_time_iso_8601": "2024-09-14T20:02:06.849840Z",
            "url": "https://files.pythonhosted.org/packages/bf/0c/017fc5bde191470c308c36a7d36375f15433ee5e41e896dee9acc3dc6685/abbreviation_extractor-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18c41af350751710f938dc172ea9567c0fcf13b51119e51ed1cf312665807558",
                "md5": "f8ae94845a84d145805d577e7c807e34",
                "sha256": "712a489e0f7161354c5cb316e2660c4ed6485df6d9ed5e4241c77f516f9895b3"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f8ae94845a84d145805d577e7c807e34",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1006955,
            "upload_time": "2024-09-14T20:02:28",
            "upload_time_iso_8601": "2024-09-14T20:02:28.461048Z",
            "url": "https://files.pythonhosted.org/packages/18/c4/1af350751710f938dc172ea9567c0fcf13b51119e51ed1cf312665807558/abbreviation_extractor-0.1.4-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ef335646fc4bc83d16ea58b14bc01378f6d1ffcbb69fdd0678274dca591f495",
                "md5": "fad770b3d4d70a1542c57ddfe7728399",
                "sha256": "c72380315543cabfe41f8d84187a2b37303b3a5caa0211c318156c58ce7c353c"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fad770b3d4d70a1542c57ddfe7728399",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1106120,
            "upload_time": "2024-09-14T20:02:19",
            "upload_time_iso_8601": "2024-09-14T20:02:19.996224Z",
            "url": "https://files.pythonhosted.org/packages/7e/f3/35646fc4bc83d16ea58b14bc01378f6d1ffcbb69fdd0678274dca591f495/abbreviation_extractor-0.1.4-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03ff86a8e78d73d6a1020a4422a7bf630d1a73800b1c1b3a9707cc62c861d1d9",
                "md5": "c3c9adf8b010adbe70170c5618e914c9",
                "sha256": "0a44dd2fcf11bc19fe9a49753849fb304daa7f9243b08abc663597145ee30d0a"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c3c9adf8b010adbe70170c5618e914c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1418113,
            "upload_time": "2024-09-14T20:00:10",
            "upload_time_iso_8601": "2024-09-14T20:00:10.648346Z",
            "url": "https://files.pythonhosted.org/packages/03/ff/86a8e78d73d6a1020a4422a7bf630d1a73800b1c1b3a9707cc62c861d1d9/abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d010839e02dc990a4ce7c52c0dda6c30592b1c07702a900fa4cbd88fcb2ceed",
                "md5": "550ab520eb651d45918903e9b6ab0e55",
                "sha256": "56a8b3549ca1bef27ffec778b530dd5c51fa12316a2e9899792bb59ed7323f57"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "550ab520eb651d45918903e9b6ab0e55",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1353142,
            "upload_time": "2024-09-14T20:00:25",
            "upload_time_iso_8601": "2024-09-14T20:00:25.153202Z",
            "url": "https://files.pythonhosted.org/packages/7d/01/0839e02dc990a4ce7c52c0dda6c30592b1c07702a900fa4cbd88fcb2ceed/abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92696c1a74177ec553495f92bf9c2a5412acac48eb111ff9093c407bf2a0f514",
                "md5": "eb37dd14c17721414b507540a59c9680",
                "sha256": "cbce7a2c8e58ddddb802958cf4364a9c88da97337cf89b9ed1a5ad59d990f007"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eb37dd14c17721414b507540a59c9680",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1457921,
            "upload_time": "2024-09-14T20:01:02",
            "upload_time_iso_8601": "2024-09-14T20:01:02.689562Z",
            "url": "https://files.pythonhosted.org/packages/92/69/6c1a74177ec553495f92bf9c2a5412acac48eb111ff9093c407bf2a0f514/abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ec29b4a6461bfa3e0598672750bea46e01a1125f19b488807135873019ba476",
                "md5": "b11a1f789796a919c7e6fd241f1fefeb",
                "sha256": "d4d3564a461ef0fbe824b7774cf6cb0c40788d345800c49466a546cba7fa3e21"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b11a1f789796a919c7e6fd241f1fefeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1507114,
            "upload_time": "2024-09-14T20:00:37",
            "upload_time_iso_8601": "2024-09-14T20:00:37.245967Z",
            "url": "https://files.pythonhosted.org/packages/7e/c2/9b4a6461bfa3e0598672750bea46e01a1125f19b488807135873019ba476/abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85047ea26b69db8de9e86e9a934d9ab58ca5a96c61a450da508b7496acd5fcc3",
                "md5": "27ac2dccd9d4cfa9eac99d8c347f9a80",
                "sha256": "33f26bbb8fd3fb15cfe6e4b92af84329136d5afbd080a81474ff34a2f159e95c"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "27ac2dccd9d4cfa9eac99d8c347f9a80",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1573711,
            "upload_time": "2024-09-14T20:00:48",
            "upload_time_iso_8601": "2024-09-14T20:00:48.292152Z",
            "url": "https://files.pythonhosted.org/packages/85/04/7ea26b69db8de9e86e9a934d9ab58ca5a96c61a450da508b7496acd5fcc3/abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b571f2ab1a010e74b4f2d000422b58c5470acf03f9ed7f8ec49c7568d5a6df8",
                "md5": "18ec6dea448fb699bc5beedbad1c9607",
                "sha256": "3837ead0f8c90f9ac239a7a08e1179712de8eed21610ef8e8a321ee696b36dae"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18ec6dea448fb699bc5beedbad1c9607",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1447758,
            "upload_time": "2024-09-14T20:01:12",
            "upload_time_iso_8601": "2024-09-14T20:01:12.850687Z",
            "url": "https://files.pythonhosted.org/packages/0b/57/1f2ab1a010e74b4f2d000422b58c5470acf03f9ed7f8ec49c7568d5a6df8/abbreviation_extractor-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fd7c00979fcdd17314e77ae0c880c45561488e2e0971f798e25bb76713d1bd8",
                "md5": "e4a663f4c62dba5d2b7b8d0c0a6c621e",
                "sha256": "28f92e97c426d19857f86b3409b521481f30f4cc0add725c41aefc51f5abf54e"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e4a663f4c62dba5d2b7b8d0c0a6c621e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1568913,
            "upload_time": "2024-09-14T20:01:31",
            "upload_time_iso_8601": "2024-09-14T20:01:31.981309Z",
            "url": "https://files.pythonhosted.org/packages/7f/d7/c00979fcdd17314e77ae0c880c45561488e2e0971f798e25bb76713d1bd8/abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc3ce32e6dccb4823e5ca2b700841864b68eec4f4f2d557c727ef6a279a486a7",
                "md5": "ade7ea3f10b5c343342a38845c21e65c",
                "sha256": "b544a3202b153f575ec964b8eee614130bc4f8698a69dff7e7316925df354aac"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ade7ea3f10b5c343342a38845c21e65c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1588967,
            "upload_time": "2024-09-14T20:01:43",
            "upload_time_iso_8601": "2024-09-14T20:01:43.933187Z",
            "url": "https://files.pythonhosted.org/packages/cc/3c/e32e6dccb4823e5ca2b700841864b68eec4f4f2d557c727ef6a279a486a7/abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15f324269de2c1b3c22c27ee890a7a0dc699e9651d4d1482acd992187a560480",
                "md5": "33f4179c3bc34f0e80b87a1c22164faf",
                "sha256": "0a6b0a245b8974d01704ef60022f94036fe71645e736da9b9cb0a01ba010ee93"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "33f4179c3bc34f0e80b87a1c22164faf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1558137,
            "upload_time": "2024-09-14T20:01:55",
            "upload_time_iso_8601": "2024-09-14T20:01:55.466402Z",
            "url": "https://files.pythonhosted.org/packages/15/f3/24269de2c1b3c22c27ee890a7a0dc699e9651d4d1482acd992187a560480/abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34bd3ca3255a5918f3c2519ec04ab029f6bc62b097cb0ed57033a23f1aad2b1d",
                "md5": "5a030c624a4fa4471510d964bb10c6b9",
                "sha256": "14b4b4f739ef9b49e15a86e99b313c18eb1f26ea225d918aa7cb65612886f5d6"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a030c624a4fa4471510d964bb10c6b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1600030,
            "upload_time": "2024-09-14T20:02:08",
            "upload_time_iso_8601": "2024-09-14T20:02:08.154052Z",
            "url": "https://files.pythonhosted.org/packages/34/bd/3ca3255a5918f3c2519ec04ab029f6bc62b097cb0ed57033a23f1aad2b1d/abbreviation_extractor-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43832611345e66d3ab62e0ecfcbefe428c81f8bf3e1ef01463d42dff6d5e4210",
                "md5": "d8b80482c7bc936817b9e920da694e50",
                "sha256": "d9e9f40e059f22ee9919e4fd85bc592df5b19726c1e769a9da730714ccb31714"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d8b80482c7bc936817b9e920da694e50",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1007082,
            "upload_time": "2024-09-14T20:02:29",
            "upload_time_iso_8601": "2024-09-14T20:02:29.688898Z",
            "url": "https://files.pythonhosted.org/packages/43/83/2611345e66d3ab62e0ecfcbefe428c81f8bf3e1ef01463d42dff6d5e4210/abbreviation_extractor-0.1.4-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44459fa0ce9a95a3d2a86a4481d9f18d07c2c151fcaae5a0c16760a3fc0f31bd",
                "md5": "1e90054b139493c754a0e5ad6ce08871",
                "sha256": "2c5c42427b6f97a150db1699b05e09eb2eed430ea9de8a4f0f5926a29b9714d3"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1e90054b139493c754a0e5ad6ce08871",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1109073,
            "upload_time": "2024-09-14T20:02:21",
            "upload_time_iso_8601": "2024-09-14T20:02:21.907026Z",
            "url": "https://files.pythonhosted.org/packages/44/45/9fa0ce9a95a3d2a86a4481d9f18d07c2c151fcaae5a0c16760a3fc0f31bd/abbreviation_extractor-0.1.4-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf44d6c6bf2c8fc594c32eb4c74359ae745b2c9333accdf262a5c7fd835e9318",
                "md5": "9d975781a2e4cc62c879e45fc47ccd95",
                "sha256": "82b8838e344a0616df5bc19f9482cfb906dcfa3a04702de5257e66ca91048356"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9d975781a2e4cc62c879e45fc47ccd95",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1220883,
            "upload_time": "2024-09-14T20:01:23",
            "upload_time_iso_8601": "2024-09-14T20:01:23.052760Z",
            "url": "https://files.pythonhosted.org/packages/cf/44/d6c6bf2c8fc594c32eb4c74359ae745b2c9333accdf262a5c7fd835e9318/abbreviation_extractor-0.1.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "345c099dac5b227f5620e276e790299867c063eeb3207ffe8a951f3d70161a89",
                "md5": "ec315d7b118f6837585245bb84645ae9",
                "sha256": "8f0e2ba7c8b06dda3994a0496f8cc449731c3dace4a142f23ac0c8008936cba9"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec315d7b118f6837585245bb84645ae9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1418186,
            "upload_time": "2024-09-14T20:00:12",
            "upload_time_iso_8601": "2024-09-14T20:00:12.375765Z",
            "url": "https://files.pythonhosted.org/packages/34/5c/099dac5b227f5620e276e790299867c063eeb3207ffe8a951f3d70161a89/abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04ca64e729a17212444f3f359e07c2ca4ff2ea9a236e279e113caefce103d058",
                "md5": "2823d670d9fc1f82e8f9e32d66a89375",
                "sha256": "b040ada2fbb1ee618bc8726d65c8953ecb592070e3b117c0b0f5ab127e97f278"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2823d670d9fc1f82e8f9e32d66a89375",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1353297,
            "upload_time": "2024-09-14T20:00:26",
            "upload_time_iso_8601": "2024-09-14T20:00:26.356173Z",
            "url": "https://files.pythonhosted.org/packages/04/ca/64e729a17212444f3f359e07c2ca4ff2ea9a236e279e113caefce103d058/abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6259129cda946f88107271010ff1772813a51ba42090981886ae6b4393a204c",
                "md5": "c7bfc4516d7fa85f286521ea8ee9768c",
                "sha256": "dedbf11089d0d334c6ce6097445049dd87017766f33b52facb8ee597a167af3f"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c7bfc4516d7fa85f286521ea8ee9768c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1458611,
            "upload_time": "2024-09-14T20:01:04",
            "upload_time_iso_8601": "2024-09-14T20:01:04.056258Z",
            "url": "https://files.pythonhosted.org/packages/c6/25/9129cda946f88107271010ff1772813a51ba42090981886ae6b4393a204c/abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0597fc771ff15651ff9a403991bc6aedc64b8e30c014bac388ecf91b6d5b116",
                "md5": "8e79121b7851c73549b05d49656d72c7",
                "sha256": "0214a325aa0834cff34e74646a61bac540b21b5efe39c6b8b3b8ce7f6d61b20a"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8e79121b7851c73549b05d49656d72c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1507495,
            "upload_time": "2024-09-14T20:00:39",
            "upload_time_iso_8601": "2024-09-14T20:00:39.208806Z",
            "url": "https://files.pythonhosted.org/packages/c0/59/7fc771ff15651ff9a403991bc6aedc64b8e30c014bac388ecf91b6d5b116/abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65b79cd087c6a3925c6641926157c2ae908992ec8ab0f60c2411057aa22a78d8",
                "md5": "0478e2fb262e313154d48e722fbeb32a",
                "sha256": "6d91fefdc87d2bb022f54b2a43f6622e8de9cd65d54457d059bd7ec3fdf7a5fb"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0478e2fb262e313154d48e722fbeb32a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1573581,
            "upload_time": "2024-09-14T20:00:50",
            "upload_time_iso_8601": "2024-09-14T20:00:50.378198Z",
            "url": "https://files.pythonhosted.org/packages/65/b7/9cd087c6a3925c6641926157c2ae908992ec8ab0f60c2411057aa22a78d8/abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8763050a6a5458f8dac28b018ce85345cbbcb6ff9aefa181f6c1606f81c6e9ab",
                "md5": "7501bbcc27a0e46292a539909ab33db2",
                "sha256": "9549fed6e9093ce689cba444d9986a2bdedc3f7bac308112e3580d8ac624f57a"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7501bbcc27a0e46292a539909ab33db2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1447403,
            "upload_time": "2024-09-14T20:01:14",
            "upload_time_iso_8601": "2024-09-14T20:01:14.043034Z",
            "url": "https://files.pythonhosted.org/packages/87/63/050a6a5458f8dac28b018ce85345cbbcb6ff9aefa181f6c1606f81c6e9ab/abbreviation_extractor-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f880ab781968d1302437795ffd73b4bed8a65c248de4270269761dfd9a54026f",
                "md5": "b6424815b5a39359e4df9f67afd48d95",
                "sha256": "469c3822206cecf0c3fe2054540209ded4b92655ff335b12fbc13355b926fa85"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6424815b5a39359e4df9f67afd48d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1568652,
            "upload_time": "2024-09-14T20:01:33",
            "upload_time_iso_8601": "2024-09-14T20:01:33.523723Z",
            "url": "https://files.pythonhosted.org/packages/f8/80/ab781968d1302437795ffd73b4bed8a65c248de4270269761dfd9a54026f/abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "424545348f3bd1825bc38111763c332f496ec0c77a845c2fe871a507c64bd855",
                "md5": "fb49f390270588df57600b46948daded",
                "sha256": "7ef6aefde08806d082dad18991a9579442b948050bed4020caa86941b186ab53"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fb49f390270588df57600b46948daded",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1589674,
            "upload_time": "2024-09-14T20:01:45",
            "upload_time_iso_8601": "2024-09-14T20:01:45.158836Z",
            "url": "https://files.pythonhosted.org/packages/42/45/45348f3bd1825bc38111763c332f496ec0c77a845c2fe871a507c64bd855/abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e574281f42401a117d6f9ce7493105f3c4b4f687e19ce1044792f0135a4cad8",
                "md5": "02d510dd388c88a69a019391f9ac00da",
                "sha256": "efce74f4c837d4b2025192d8117778d448b1f02a6e383310894b7c95e3c13d07"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "02d510dd388c88a69a019391f9ac00da",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1558174,
            "upload_time": "2024-09-14T20:01:57",
            "upload_time_iso_8601": "2024-09-14T20:01:57.331706Z",
            "url": "https://files.pythonhosted.org/packages/2e/57/4281f42401a117d6f9ce7493105f3c4b4f687e19ce1044792f0135a4cad8/abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2db45d4ba4db43e9500d856f350af1cb3a0eda0ca80316cb0bbad1dbcaa6e10",
                "md5": "57ef41d403a76b4e3492ab92a629b3a5",
                "sha256": "9767227063cb5c173562e2f2b121dcf67846e6ce3abdefa28a06c7893fd7a77f"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57ef41d403a76b4e3492ab92a629b3a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1600174,
            "upload_time": "2024-09-14T20:02:09",
            "upload_time_iso_8601": "2024-09-14T20:02:09.477242Z",
            "url": "https://files.pythonhosted.org/packages/c2/db/45d4ba4db43e9500d856f350af1cb3a0eda0ca80316cb0bbad1dbcaa6e10/abbreviation_extractor-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca242bf01d93bd8abd53c2f7b7234bab062c1ecb4701cbc94530cdb19185cfa1",
                "md5": "d00290063358261d3617ad71843a7ba8",
                "sha256": "43b9269e7d777de8889b944d961dbe2f7196c053d194367a9456b881f14f6b95"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d00290063358261d3617ad71843a7ba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1007257,
            "upload_time": "2024-09-14T20:02:31",
            "upload_time_iso_8601": "2024-09-14T20:02:31.054515Z",
            "url": "https://files.pythonhosted.org/packages/ca/24/2bf01d93bd8abd53c2f7b7234bab062c1ecb4701cbc94530cdb19185cfa1/abbreviation_extractor-0.1.4-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf0da9360a269c22d40d2bce920fa2a5caa1c7c42a04ea51f6da167edeeddb2e",
                "md5": "7a0a107c00fc3c778350123d93adb510",
                "sha256": "9f65753baf423f15a8aeacf80ab33862b0662a232fb58597e39f869d5d8ef94b"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7a0a107c00fc3c778350123d93adb510",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1109295,
            "upload_time": "2024-09-14T20:02:23",
            "upload_time_iso_8601": "2024-09-14T20:02:23.992010Z",
            "url": "https://files.pythonhosted.org/packages/cf/0d/a9360a269c22d40d2bce920fa2a5caa1c7c42a04ea51f6da167edeeddb2e/abbreviation_extractor-0.1.4-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69a8ff0cf29a3966659cf9a8a1b9df3552c80023d1411a3aa29d212c97dcc9bb",
                "md5": "0f3b6550f86c8202446d06b77aebe2a2",
                "sha256": "e3b197ea99ed6b099f793330f7b6d9997fb9fb26760e24068c0f530983e24042"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f3b6550f86c8202446d06b77aebe2a2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1414138,
            "upload_time": "2024-09-14T20:00:13",
            "upload_time_iso_8601": "2024-09-14T20:00:13.588200Z",
            "url": "https://files.pythonhosted.org/packages/69/a8/ff0cf29a3966659cf9a8a1b9df3552c80023d1411a3aa29d212c97dcc9bb/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04b645b743cb568543c51e9ea5a1cf91e7157038b9bd829ac00d31b8d1911b24",
                "md5": "65a0daeda7e5112f8fb202696350edd2",
                "sha256": "c6b54c33191bdcd5838ebbef5bc58659d0f6d79178affd0477afcbc4642cc7a6"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "65a0daeda7e5112f8fb202696350edd2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1354355,
            "upload_time": "2024-09-14T20:00:28",
            "upload_time_iso_8601": "2024-09-14T20:00:28.355849Z",
            "url": "https://files.pythonhosted.org/packages/04/b6/45b743cb568543c51e9ea5a1cf91e7157038b9bd829ac00d31b8d1911b24/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20b76dc0fc6a63f141b320d64f7f0803ed95f053f092a50af91764e90ee9b2d9",
                "md5": "deb05559c55045758170792dcf6b31bc",
                "sha256": "8d03b32ade5fa016bd9dffe5cf449f0e87fb1ca0d761d965c26f3ac0a669370e"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "deb05559c55045758170792dcf6b31bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1462423,
            "upload_time": "2024-09-14T20:01:05",
            "upload_time_iso_8601": "2024-09-14T20:01:05.324753Z",
            "url": "https://files.pythonhosted.org/packages/20/b7/6dc0fc6a63f141b320d64f7f0803ed95f053f092a50af91764e90ee9b2d9/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2a9a9c551acc5a605c1f94e4406b47ef320c3c77a73d88a93046e39bfeec9c8",
                "md5": "115d924d805f3b948981b9b56e877634",
                "sha256": "e5b87041c2a17483797d43f5be7dfa381194a56c5e528adda4de1f8864252635"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "115d924d805f3b948981b9b56e877634",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1502560,
            "upload_time": "2024-09-14T20:00:40",
            "upload_time_iso_8601": "2024-09-14T20:00:40.492266Z",
            "url": "https://files.pythonhosted.org/packages/d2/a9/a9c551acc5a605c1f94e4406b47ef320c3c77a73d88a93046e39bfeec9c8/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2002b8eb76ac0bd602503a2ae16d648f62abfdd203fbb503a947dc4e4936187d",
                "md5": "dddc6e886c0bdbff900aaff19a657fcf",
                "sha256": "4fd8d378c3c579a7f5f6d6faeb76efcdd8611b065fac4a5828eb97399fe92d40"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dddc6e886c0bdbff900aaff19a657fcf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1570734,
            "upload_time": "2024-09-14T20:00:52",
            "upload_time_iso_8601": "2024-09-14T20:00:52.250847Z",
            "url": "https://files.pythonhosted.org/packages/20/02/b8eb76ac0bd602503a2ae16d648f62abfdd203fbb503a947dc4e4936187d/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21347cd008e75fbfdb6f3040794d7b6e799e68406de564d63b23d175772026d8",
                "md5": "33d75e7a476d8616c9b177fcc96b826c",
                "sha256": "7e9093be36b751155a3582c01b5252bfbccaab3cd1c680d32b6413b185d4bf8f"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33d75e7a476d8616c9b177fcc96b826c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1446920,
            "upload_time": "2024-09-14T20:01:15",
            "upload_time_iso_8601": "2024-09-14T20:01:15.269401Z",
            "url": "https://files.pythonhosted.org/packages/21/34/7cd008e75fbfdb6f3040794d7b6e799e68406de564d63b23d175772026d8/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a6853eb983cdd69ed86a4208b4eabfb3a589b4c033a62778221703563069287",
                "md5": "7f19db5867f0bcb29f05a5357b08621f",
                "sha256": "1edae4ab8e6155d5e992cfca22083e9604a9def04da82e85cd1321997e1beee9"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f19db5867f0bcb29f05a5357b08621f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1569662,
            "upload_time": "2024-09-14T20:01:34",
            "upload_time_iso_8601": "2024-09-14T20:01:34.859390Z",
            "url": "https://files.pythonhosted.org/packages/1a/68/53eb983cdd69ed86a4208b4eabfb3a589b4c033a62778221703563069287/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c8f20167efcdeb855e4579b0420e8cd1b4d17df64298f96727da08db76ecdc1",
                "md5": "a6715c764f70e3363f8fb458b3f48d08",
                "sha256": "c956a0e23479523c438eb7534cc58f6bae03e269eded2ef5beab86af5e31a0b4"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a6715c764f70e3363f8fb458b3f48d08",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1597072,
            "upload_time": "2024-09-14T20:01:46",
            "upload_time_iso_8601": "2024-09-14T20:01:46.479565Z",
            "url": "https://files.pythonhosted.org/packages/7c/8f/20167efcdeb855e4579b0420e8cd1b4d17df64298f96727da08db76ecdc1/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d7026ccff6c3857d83803b926059ca01d76c1b1ca67a257e06761efbec25dd9",
                "md5": "1c7ac4d8a8ec26441cb2e06dbd9b1a1b",
                "sha256": "743f6710ac152e41179ed986e3b97959658ae55c6f39b11926076db1aaf8b1e3"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1c7ac4d8a8ec26441cb2e06dbd9b1a1b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1560398,
            "upload_time": "2024-09-14T20:01:58",
            "upload_time_iso_8601": "2024-09-14T20:01:58.605708Z",
            "url": "https://files.pythonhosted.org/packages/2d/70/26ccff6c3857d83803b926059ca01d76c1b1ca67a257e06761efbec25dd9/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c78bd4c0bdd3973ee25b7e5d2789160ac781116efe0fccc4366f6896b79197df",
                "md5": "46177aaa4fbe1cabfbcb6b01b2ec81db",
                "sha256": "4fb654d8506cdd4744076795f7b385551990eb5e53b182973554ffb2f78c2f0e"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46177aaa4fbe1cabfbcb6b01b2ec81db",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1599215,
            "upload_time": "2024-09-14T20:02:10",
            "upload_time_iso_8601": "2024-09-14T20:02:10.913409Z",
            "url": "https://files.pythonhosted.org/packages/c7/8b/d4c0bdd3973ee25b7e5d2789160ac781116efe0fccc4366f6896b79197df/abbreviation_extractor-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1c861b1d462f307acd8d5bf563fccbc82e51726f5819967b5d2046b7be04da1",
                "md5": "9c0e9632d51b8d8397cb8d5b8aade1e9",
                "sha256": "657cfdf26bde649a012036eadbd485d42a1211cecafb9a0d8bb9ee73354d33e2"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9c0e9632d51b8d8397cb8d5b8aade1e9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1414685,
            "upload_time": "2024-09-14T20:00:15",
            "upload_time_iso_8601": "2024-09-14T20:00:15.599979Z",
            "url": "https://files.pythonhosted.org/packages/a1/c8/61b1d462f307acd8d5bf563fccbc82e51726f5819967b5d2046b7be04da1/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0fa203617fb7bc6820a836b00844431916316396b30b00c99e3b429c8554dca",
                "md5": "9f0f0fdd51b4e70b763d289e03a30852",
                "sha256": "f16064531e292e7a77c3fafe3782190f0927d0c423c0214c7ecb76857b790080"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9f0f0fdd51b4e70b763d289e03a30852",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1356244,
            "upload_time": "2024-09-14T20:00:30",
            "upload_time_iso_8601": "2024-09-14T20:00:30.213995Z",
            "url": "https://files.pythonhosted.org/packages/b0/fa/203617fb7bc6820a836b00844431916316396b30b00c99e3b429c8554dca/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44e115475745b8cad1782fc0e6f4b4fc52ed1f92eab36e90f7d32e1faffb00ad",
                "md5": "da663d2b0330d67e29561285703d0f5a",
                "sha256": "85315fad84c65e6f6275b26986fb8e96827d4849874134a30d10542360f4fb41"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "da663d2b0330d67e29561285703d0f5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1503487,
            "upload_time": "2024-09-14T20:00:41",
            "upload_time_iso_8601": "2024-09-14T20:00:41.702205Z",
            "url": "https://files.pythonhosted.org/packages/44/e1/15475745b8cad1782fc0e6f4b4fc52ed1f92eab36e90f7d32e1faffb00ad/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06f3b6cc3add4571d7a1332f021e77bdefeecb04d107a7c74ff1e6e99cca6b48",
                "md5": "49053b8b17cfad3d2acd30868f80e473",
                "sha256": "b2808af07084fcb30e8ec8ea083d92acaf092eb3a4469152bc1e844379dd1571"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "49053b8b17cfad3d2acd30868f80e473",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1570976,
            "upload_time": "2024-09-14T20:00:54",
            "upload_time_iso_8601": "2024-09-14T20:00:54.099150Z",
            "url": "https://files.pythonhosted.org/packages/06/f3/b6cc3add4571d7a1332f021e77bdefeecb04d107a7c74ff1e6e99cca6b48/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26eb587d94552dbf1729341264bd2ddf7a2f3668618ca15cd22530131b41c3ac",
                "md5": "e93aac4099335e6d341bb75a82ce41de",
                "sha256": "a55cbcd7354f8ee8dc4d3258d74c363a560f18d2bad9a22a63889b7a379f83d2"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e93aac4099335e6d341bb75a82ce41de",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1571301,
            "upload_time": "2024-09-14T20:01:36",
            "upload_time_iso_8601": "2024-09-14T20:01:36.770679Z",
            "url": "https://files.pythonhosted.org/packages/26/eb/587d94552dbf1729341264bd2ddf7a2f3668618ca15cd22530131b41c3ac/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae0ff6c7f216b9d74d76f859db30bc76f7003ae14d1cd80c3ad401a8d10c878c",
                "md5": "98872997b7584b1bfa1be74203912723",
                "sha256": "1c1c6ceff69ff9000b5a1df9bfba44868f077459564d444eb2f841e1265ac480"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "98872997b7584b1bfa1be74203912723",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1598437,
            "upload_time": "2024-09-14T20:01:48",
            "upload_time_iso_8601": "2024-09-14T20:01:48.292321Z",
            "url": "https://files.pythonhosted.org/packages/ae/0f/f6c7f216b9d74d76f859db30bc76f7003ae14d1cd80c3ad401a8d10c878c/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "257a3501ad60e24c0b6ef44a6693f9fca26e25051f4e9a50bb1d0a347ea8315d",
                "md5": "584b0fcf20bbda506f7f687a77966369",
                "sha256": "54016b408cfa63e82d700e2fef9c704d5cffe2eb603ddd19d866c05e76f58c08"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "584b0fcf20bbda506f7f687a77966369",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1561688,
            "upload_time": "2024-09-14T20:01:59",
            "upload_time_iso_8601": "2024-09-14T20:01:59.889988Z",
            "url": "https://files.pythonhosted.org/packages/25/7a/3501ad60e24c0b6ef44a6693f9fca26e25051f4e9a50bb1d0a347ea8315d/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40bc9edf29b36273f7eb2fcf4e28507c26afdfd514bcd7cf055030cf008d3ff9",
                "md5": "6fa6d8a240f5e82811f4bb3e91899a56",
                "sha256": "b35c290883ea4def6f536d603f2cf404ddf8b27a86ba4fd3462e26ef2933d62f"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6fa6d8a240f5e82811f4bb3e91899a56",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1600920,
            "upload_time": "2024-09-14T20:02:12",
            "upload_time_iso_8601": "2024-09-14T20:02:12.315238Z",
            "url": "https://files.pythonhosted.org/packages/40/bc/9edf29b36273f7eb2fcf4e28507c26afdfd514bcd7cf055030cf008d3ff9/abbreviation_extractor-0.1.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "262db5cc3779ffe4d146afa916fe1d3ca5c364e1d2ac10c552a958d93e8b588a",
                "md5": "f0d89f5dcfbdd7122cb259e8193eb385",
                "sha256": "2636e8eb8b38b7cba4f1c43145e1309db30bd6a085402ff0a9e021f45206135c"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f0d89f5dcfbdd7122cb259e8193eb385",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1414784,
            "upload_time": "2024-09-14T20:00:17",
            "upload_time_iso_8601": "2024-09-14T20:00:17.530727Z",
            "url": "https://files.pythonhosted.org/packages/26/2d/b5cc3779ffe4d146afa916fe1d3ca5c364e1d2ac10c552a958d93e8b588a/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0198855fb97016feb291ead3e295c71f0f9ae03d6a01735cd2023d86877eedfc",
                "md5": "5a882c49d07065985f782658c27ebd78",
                "sha256": "e7bb7ecbe95889c5de2638d104e2375449426cd424ff1b66fb267305f88d76cb"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5a882c49d07065985f782658c27ebd78",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1356189,
            "upload_time": "2024-09-14T20:00:31",
            "upload_time_iso_8601": "2024-09-14T20:00:31.440554Z",
            "url": "https://files.pythonhosted.org/packages/01/98/855fb97016feb291ead3e295c71f0f9ae03d6a01735cd2023d86877eedfc/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c66232d5c215e44e07e4a643a9b089426748d889aa25020b517308651ddb425",
                "md5": "24b962d26485f75229300f1d3eadb5f1",
                "sha256": "4d3bcc0cfa20cfb3f3894aaa499269e1c132baed87dbf93ec6a3570c24db3d35"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "24b962d26485f75229300f1d3eadb5f1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1463669,
            "upload_time": "2024-09-14T20:01:06",
            "upload_time_iso_8601": "2024-09-14T20:01:06.569758Z",
            "url": "https://files.pythonhosted.org/packages/3c/66/232d5c215e44e07e4a643a9b089426748d889aa25020b517308651ddb425/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "043357e9170ae3c5f32916dec64a0f6a5186ffe0a32ce54c1851a5204cf87428",
                "md5": "3b441fc2b011a45d98da814ed164ac85",
                "sha256": "8db32f8503389b716aa43b1befc41a1414c6806b7c5000aea1a188f09e29c888"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3b441fc2b011a45d98da814ed164ac85",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1503384,
            "upload_time": "2024-09-14T20:00:43",
            "upload_time_iso_8601": "2024-09-14T20:00:43.053722Z",
            "url": "https://files.pythonhosted.org/packages/04/33/57e9170ae3c5f32916dec64a0f6a5186ffe0a32ce54c1851a5204cf87428/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "461ed15005c3b5fecbaab87f03a9636b95dfebdfabf6ea6803294d1dea9fbcf6",
                "md5": "dd570afc7b62ecccc4701a1cca67aea5",
                "sha256": "94eda6bb5ef5e4e36f48da2d8163f0b238458ef433d09c142aa9c60b4b3a8577"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dd570afc7b62ecccc4701a1cca67aea5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1571426,
            "upload_time": "2024-09-14T20:00:55",
            "upload_time_iso_8601": "2024-09-14T20:00:55.962128Z",
            "url": "https://files.pythonhosted.org/packages/46/1e/d15005c3b5fecbaab87f03a9636b95dfebdfabf6ea6803294d1dea9fbcf6/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bd7bc614259928841b55bbbf9196f96797905679adfbc562ffb60df76c7b6b0",
                "md5": "69d2c93e606e5b4e69b63ffbaaafc78a",
                "sha256": "e4e9459cac3eb6ebe9a8d68e213426e8b5b3ebd52f05f2658713d49d5ceff4dc"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69d2c93e606e5b4e69b63ffbaaafc78a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1447744,
            "upload_time": "2024-09-14T20:01:16",
            "upload_time_iso_8601": "2024-09-14T20:01:16.604578Z",
            "url": "https://files.pythonhosted.org/packages/2b/d7/bc614259928841b55bbbf9196f96797905679adfbc562ffb60df76c7b6b0/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75e6dfa0612f30582c01c51f32d5540c648c397cf7171e50d7a0b5bec11c3418",
                "md5": "3598b57d1c48fef90fbf1dab83a9da2c",
                "sha256": "1216a7c366afad7928acb5f83cf405421adfe401fb5caf53f806dedb514be95f"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3598b57d1c48fef90fbf1dab83a9da2c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1570778,
            "upload_time": "2024-09-14T20:01:38",
            "upload_time_iso_8601": "2024-09-14T20:01:38.281494Z",
            "url": "https://files.pythonhosted.org/packages/75/e6/dfa0612f30582c01c51f32d5540c648c397cf7171e50d7a0b5bec11c3418/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d9c112083dcd5d59b5b5f24bfd05a1023ded39e384b8718e3ff17f9f1ae8799",
                "md5": "72640683898ef06a9bcf729adf4f236a",
                "sha256": "e9ffa52055f9b646dee2a826b3844781625f33e41cb2e1a0c8b77d93d06fdf6b"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "72640683898ef06a9bcf729adf4f236a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1597954,
            "upload_time": "2024-09-14T20:01:49",
            "upload_time_iso_8601": "2024-09-14T20:01:49.687696Z",
            "url": "https://files.pythonhosted.org/packages/7d/9c/112083dcd5d59b5b5f24bfd05a1023ded39e384b8718e3ff17f9f1ae8799/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1fa3524e86d3fce93fc85b548de57f9091ccf6ee9d05d90acd0ab8244a9f284e",
                "md5": "54ac9b6269c85e5c3a35ed2913138501",
                "sha256": "a239bd4a9250decc9075c9431fcc57426ede0ab5e57857ff8c0032ee72e45b9d"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "54ac9b6269c85e5c3a35ed2913138501",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1561563,
            "upload_time": "2024-09-14T20:02:01",
            "upload_time_iso_8601": "2024-09-14T20:02:01.783911Z",
            "url": "https://files.pythonhosted.org/packages/1f/a3/524e86d3fce93fc85b548de57f9091ccf6ee9d05d90acd0ab8244a9f284e/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0268d06df3af75c8dfb3b635de82f5dcc89dfb924d9762dbb13b37d3b9e6717",
                "md5": "6f67f8f9013736e7c6c076d4e09398a1",
                "sha256": "5d6597e90b0bf370908afc1f8acc563414ec95ad7eda6ae6e22d88056bb341d9"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f67f8f9013736e7c6c076d4e09398a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1600561,
            "upload_time": "2024-09-14T20:02:13",
            "upload_time_iso_8601": "2024-09-14T20:02:13.663330Z",
            "url": "https://files.pythonhosted.org/packages/a0/26/8d06df3af75c8dfb3b635de82f5dcc89dfb924d9762dbb13b37d3b9e6717/abbreviation_extractor-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00c17dad9d81712d9924f92886db2f0d457976a9b6baa4f028efbe8644c1ba8e",
                "md5": "03745cd5a657667d524d921a7887f035",
                "sha256": "6ed420f4522f81b434a0af6c6fde499bf6f4a6292eaef9116da6e4146882bfaa"
            },
            "downloads": -1,
            "filename": "abbreviation_extractor-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "03745cd5a657667d524d921a7887f035",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 553811,
            "upload_time": "2024-09-14T20:02:14",
            "upload_time_iso_8601": "2024-09-14T20:02:14.902581Z",
            "url": "https://files.pythonhosted.org/packages/00/c1/7dad9d81712d9924f92886db2f0d457976a9b6baa4f028efbe8644c1ba8e/abbreviation_extractor-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-14 20:02:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "praise2112",
    "github_project": "abbreviation-extractor",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "abbreviation-extractor"
}
        
Elapsed time: 2.25336s