errant-prep


Nameerrant-prep JSON
Version 3.2.3 PyPI version JSON
download
home_pagehttps://github.com/chrisjbryant/errant
SummaryThe ERRor ANnotation Toolkit (ERRANT). Automatically extract and classify edits in parallel sentences.
upload_time2024-01-27 14:57:53
maintainer
docs_urlNone
authorChristopher Bryant, Mariano Felice
requires_python>= 3.9
licenseMIT
keywords automatic annotation grammatical errors natural language processing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ERRANT v3.0.0

This repository contains the grammatical ERRor ANnotation Toolkit (ERRANT) described in:

> Christopher Bryant, Mariano Felice, and Ted Briscoe. 2017. [**Automatic annotation and evaluation of error types for grammatical error correction**](https://www.aclweb.org/anthology/P17-1074/). In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers). Vancouver, Canada.

> Mariano Felice, Christopher Bryant, and Ted Briscoe. 2016. [**Automatic extraction of learner errors in ESL sentences using linguistically enhanced alignments**](https://www.aclweb.org/anthology/C16-1079/). In Proceedings of COLING 2016, the 26th International Conference on Computational Linguistics: Technical Papers. Osaka, Japan.

If you make use of this code, please cite the above papers. More information about ERRANT can be found [here](https://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-938.html). In particular, see Chapter 5 for definitions of error types.

---

# Overview

The main aim of ERRANT is to automatically annotate parallel English sentences with error type information. Specifically, given an original and corrected sentence pair, ERRANT will extract the edits that transform the former to the latter and classify them according to a rule-based error type framework. This can be used to standardise parallel datasets or facilitate detailed error type evaluation. Annotated output files are in M2 format and an evaluation script is provided.

### Example:  

**Original**: This are gramamtical sentence .  
**Corrected**: This is a grammatical sentence .  
**Output M2**: 

```text
S This are gramamtical sentence .  
A 1 2|||R:VERB:SVA|||is|||REQUIRED|||-NONE-|||0  
A 2 2|||M:DET|||a|||REQUIRED|||-NONE-|||0  
A 2 3|||R:SPELL|||grammatical|||REQUIRED|||-NONE-|||0  
A -1 -1|||noop|||-NONE-|||REQUIRED|||-NONE-|||1
```


In M2 format, a line preceded by S denotes an original sentence while a line preceded by A indicates an edit annotation. Each edit line consists of the start and end token offset of the edit, the error type, and the tokenized correction string. The next two fields are included for historical reasons (see the CoNLL-2014 shared task) while the last field is the annotator id.

A "noop" edit is a special kind of edit that explicitly indicates an annotator/system made no changes to the original sentence. If there is only one annotator, noop edits are optional, otherwise a noop edit should be included whenever at least 1 out of n annotators considered the original sentence to be correct. This is something to be aware of when combining individual M2 files, as missing noops can affect evaluation. 

---
# Installation

## Pip Install

The easiest way to install ERRANT and its dependencies is using `pip`. We also recommend installing it in a clean virtual environment (e.g. with `venv`). The latest version of ERRANT only supports Python >= 3.9.

Establish a virtual environment using Conda.
```bash
$ conda create -n errant python=3.9
$ conda activate errant
```

You have two options for installing ERRANT version 3.0.0:

- Option 1: Install ERRANT using pip with the following commands:
```bash
$ pip install -U pip setuptools wheel
$ pip install errant-prep
```
- Option 2: Alternatively, if you want to install ERRANT from the source, you can follow these steps:

```bash
$ git clone https://gitlab.testsprep.online/nlp/research/errant
$ cd errant
$ pip install -U pip setuptools wheel
$ pip install -e .
```


Please obtain a Spacy model by using the following command:
```bash
$ python -m spacy download en_core_web_sm
```
You can verify the available models at [this](https://spacy.io/models/en) location.

**Important Note:** ERRANT version 3.0.0 is specifically designed for the English language model. Additionally, ERRANT was initially crafted to function with spaCy version 3.6.1.

---
# Usage

## CLI

Three main commands are provided with ERRANT: `errant_parallel`, `errant_m2` and `errant_compare`. You can run them from anywhere on the command line without having to invoke a specific python script.  

1. `errant_parallel`  

     This is the main annotation command that takes an original text file and at least one parallel corrected text file as input, and outputs an annotated M2 file. By default, it is assumed that the original and corrected text files are word tokenised with one sentence per line.
	 Example:
	 ```
	 errant_parallel -orig <orig_file> -cor <cor_file1> [<cor_file2> ...] -out <out_m2>
	 ```

2. `errant_m2`  

     This is a variant of `errant_parallel` that operates on an M2 file instead of parallel text files. This makes it easier to reprocess existing M2 files. You must also specify whether you want to use gold or auto edits; i.e. `-gold` will only classify the existing edits, while `-auto` will extract and classify automatic edits. In both settings, uncorrected edits and noops are preserved.  
     Example:
	 ```
	 errant_m2 {-auto|-gold} m2_file -out <out_m2>
	 ```

3. `errant_compare`  

     This is the evaluation command that compares a hypothesis M2 file against a reference M2 file. The default behaviour evaluates the hypothesis overall in terms of span-based correction. The `-cat {1,2,3}` flag can be used to evaluate error types at increasing levels of granularity, while the `-ds` or `-dt` flag can be used to evaluate in terms of span-based or token-based detection (i.e. ignoring the correction). All scores are presented in terms of Precision, Recall and F-score (default: F0.5), and counts for True Positives (TP), False Positives (FP) and False Negatives (FN) are also shown.  
	 Examples:
	 ```
     errant_compare -hyp <hyp_m2> -ref <ref_m2> 
     errant_compare -hyp <hyp_m2> -ref <ref_m2> -cat {1,2,3}
     errant_compare -hyp <hyp_m2> -ref <ref_m2> -ds
     errant_compare -hyp <hyp_m2> -ref <ref_m2> -ds -cat {1,2,3}
	 ```	

All these scripts also have additional advanced command line options which can be displayed using the `-h` flag. 

## API

As of v3.0.0, ERRANT now also comes with an API.

### Quick Start

```python
import errant

annotator = errant.load('en')

orig = 'My    name    is   the     John'
cor = 'My name is John'
edits = annotator.annotate_raw_text(orig, cor)

for e in edits:
    print(e.o_start, e.o_end, e.o_str, e.c_start, e.c_end, e.c_str, e.type)
    print(e.o_toks.start_char, e.o_toks.end_char)
```

### Loading

`errant.load(lang, model_name, nlp=None)`

Instantiate an ERRANT Annotator object. Presently, the lang parameter exclusively accepts 'en' for English, though we aspire to broaden its language support in future iterations. The model_name corresponds to the name of the SpaCy model being utilized. Optionally, you can provide the nlp parameter if you've previously loaded SpaCy and wish to prevent ERRANT from loading it redundantly.

### Annotator Objects

An Annotator object is the main interface for ERRANT.

#### Methods

<details>
<summary>annotator.parse</summary>

`annotator.parse(string, tokenise=False)`

Lemmatise, POS tag, and parse a text string with spacy. Set `tokenise` to True to also word tokenise with spacy. Returns a spacy Doc object.

</details>

<details>
<summary>annotator.align</summary>

`annotator.align(orig, cor, lev=False)`

Align spacy-parsed original and corrected text. The default uses a linguistically-enhanced Damerau-Levenshtein alignment, but the `lev` flag can be used for a standard Levenshtein alignment. Returns an Alignment object.

</details>

<details>
<summary>annotator.merge</summary>

`annotator.merge(alignment, merging='rules')`

Extract edits from the optimum alignment in an Alignment object. Four different merging strategies are available:
1. rules: Use a rule-based merging strategy (default)
2. all-split: Merge nothing: MSSDI -> M, S, S, D, I
3. all-merge: Merge adjacent non-matches: MSSDI -> M, SSDI
4. all-equal: Merge adjacent same-type non-matches: MSSDI -> M, SS, D, I

Returns a list of Edit objects.
</details>

<details>
<summary>annotator.classify</summary>

`annotatorclassify(edit)`

Classify an edit. Sets the `edit.type` attribute in an Edit object and returns the same Edit object. 

</details>



<details>
<summary>annotator.annotate</summary>

`annotator.annotate(orig, cor, lev=False, merging='rules')`

Run the full annotation pipeline to align two sequences and extract and classify the edits. Equivalent to running `annotator.align`, `annotator.merge` and `annotator.classify` in sequence. Returns a list of Edit objects.

```python
import errant

annotator = errant.load(lang="en", model_name="en_core_web_sm")
orig = annotator.parse('This are gramamtical sentence .')
cor = annotator.parse('This is a grammatical sentence .')
alignment = annotator.align(orig, cor)
edits = annotator.merge(alignment)
for e in edits:
    e = annotator.classify(e)
```

</details>

<details>
<summary>annotator.import_edit</summary>

`annotator.import_edit(orig, cor, edit, min=True, old_cat=False)`

Load an Edit object from a list. `orig` and `cor` must be spacy-parsed Doc objects and the edit must be of the form: `[o_start, o_end, c_start, c_end(, type)]`. The values must be integers that correspond to the token start and end offsets in the original and corrected Doc objects. The `type` value is an optional string that denotes the error type of the edit (if known). Set `min` to True to minimise the edit (e.g. [a b -> a c] = [b -> c]) and `old_cat` to True to preserve the old error type category (i.e. turn off the classifier).

```python
import errant

annotator = errant.load('en')
orig = annotator.parse('This are gramamtical sentence .')
cor = annotator.parse('This is a grammatical sentence .')
edit = [1, 2, 1, 2, 'SVA'] # are -> is
edit = annotator.import_edit(orig, cor, edit)
print(edit.to_m2())
```

</details>

### Alignment Objects

An Alignment object is created from two spacy-parsed text sequences.

#### Attributes

`alignment`.**orig**  
`alignment`.**cor**  
The spacy-parsed original and corrected text sequences.

`alignment`.**cost_matrix**   
`alignment`.**op_matrix**  
The cost matrix and operation matrix produced by the alignment.

`alignment`.**align_seq**  
The first cheapest alignment between the two sequences.

### Edit Objects

An Edit object represents a transformation between two text sequences.

#### Attributes

`edit`.**o_start**  
`edit`.**o_end**  
`edit`.**o_toks**  
`edit`.**o_str**  
The start and end offsets, the spacy tokens, and the string for the edit in the *original* text.

`edit`.**c_start**  
`edit`.**c_end**  
`edit`.**c_toks**  
`edit`.**c_str**  
The start and end offsets, the spacy tokens, and the string for the edit in the *corrected* text.

`edit`.**type**  
The error type string.

#### Methods

`edit`.**to_m2**(id=0)  
Format the edit for an output M2 file. `id` is the annotator id.	

## Development for Other Languages

If you want to develop ERRANT for other languages, you should mimic the `errant/en` directory structure. For example, ERRANT for French should import a merger from `errant.fr.merger` and a classifier from `errant.fr.classifier` that respectively have equivalent `get_rule_edits` and `classify` methods. You will also need to add `'fr'` to the list of supported languages in `errant/__init__.py`.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/chrisjbryant/errant",
    "name": "errant-prep",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">= 3.9",
    "maintainer_email": "",
    "keywords": "automatic annotation,grammatical errors,natural language processing",
    "author": "Christopher Bryant, Mariano Felice",
    "author_email": "christopher.bryant@cl.cam.ac.uk",
    "download_url": "https://files.pythonhosted.org/packages/9a/c2/4c7b8bb4c24e87b92e4b448035980366837fb26dbee1426304b81e18ccb5/errant-prep-3.2.3.tar.gz",
    "platform": null,
    "description": "# ERRANT v3.0.0\n\nThis repository contains the grammatical ERRor ANnotation Toolkit (ERRANT) described in:\n\n> Christopher Bryant, Mariano Felice, and Ted Briscoe. 2017. [**Automatic annotation and evaluation of error types for grammatical error correction**](https://www.aclweb.org/anthology/P17-1074/). In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers). Vancouver, Canada.\n\n> Mariano Felice, Christopher Bryant, and Ted Briscoe. 2016. [**Automatic extraction of learner errors in ESL sentences using linguistically enhanced alignments**](https://www.aclweb.org/anthology/C16-1079/). In Proceedings of COLING 2016, the 26th International Conference on Computational Linguistics: Technical Papers. Osaka, Japan.\n\nIf you make use of this code, please cite the above papers. More information about ERRANT can be found [here](https://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-938.html). In particular, see Chapter 5 for definitions of error types.\n\n---\n\n# Overview\n\nThe main aim of ERRANT is to automatically annotate parallel English sentences with error type information. Specifically, given an original and corrected sentence pair, ERRANT will extract the edits that transform the former to the latter and classify them according to a rule-based error type framework. This can be used to standardise parallel datasets or facilitate detailed error type evaluation. Annotated output files are in M2 format and an evaluation script is provided.\n\n### Example:  \n\n**Original**: This are gramamtical sentence .  \n**Corrected**: This is a grammatical sentence .  \n**Output M2**: \n\n```text\nS This are gramamtical sentence .  \nA 1 2|||R:VERB:SVA|||is|||REQUIRED|||-NONE-|||0  \nA 2 2|||M:DET|||a|||REQUIRED|||-NONE-|||0  \nA 2 3|||R:SPELL|||grammatical|||REQUIRED|||-NONE-|||0  \nA -1 -1|||noop|||-NONE-|||REQUIRED|||-NONE-|||1\n```\n\n\nIn M2 format, a line preceded by S denotes an original sentence while a line preceded by A indicates an edit annotation. Each edit line consists of the start and end token offset of the edit, the error type, and the tokenized correction string. The next two fields are included for historical reasons (see the CoNLL-2014 shared task) while the last field is the annotator id.\n\nA \"noop\" edit is a special kind of edit that explicitly indicates an annotator/system made no changes to the original sentence. If there is only one annotator, noop edits are optional, otherwise a noop edit should be included whenever at least 1 out of n annotators considered the original sentence to be correct. This is something to be aware of when combining individual M2 files, as missing noops can affect evaluation. \n\n---\n# Installation\n\n## Pip Install\n\nThe easiest way to install ERRANT and its dependencies is using `pip`. We also recommend installing it in a clean virtual environment (e.g. with `venv`). The latest version of ERRANT only supports Python >= 3.9.\n\nEstablish a virtual environment using Conda.\n```bash\n$ conda create -n errant python=3.9\n$ conda activate errant\n```\n\nYou have two options for installing ERRANT version 3.0.0:\n\n- Option 1: Install ERRANT using pip with the following commands:\n```bash\n$ pip install -U pip setuptools wheel\n$ pip install errant-prep\n```\n- Option 2: Alternatively, if you want to install ERRANT from the source, you can follow these steps:\n\n```bash\n$ git clone https://gitlab.testsprep.online/nlp/research/errant\n$ cd errant\n$ pip install -U pip setuptools wheel\n$ pip install -e .\n```\n\n\nPlease obtain a Spacy model by using the following command:\n```bash\n$ python -m spacy download en_core_web_sm\n```\nYou can verify the available models at [this](https://spacy.io/models/en) location.\n\n**Important Note:** ERRANT version 3.0.0 is specifically designed for the English language model. Additionally, ERRANT was initially crafted to function with spaCy version 3.6.1.\n\n---\n# Usage\n\n## CLI\n\nThree main commands are provided with ERRANT: `errant_parallel`, `errant_m2` and `errant_compare`. You can run them from anywhere on the command line without having to invoke a specific python script.  \n\n1. `errant_parallel`  \n\n     This is the main annotation command that takes an original text file and at least one parallel corrected text file as input, and outputs an annotated M2 file. By default, it is assumed that the original and corrected text files are word tokenised with one sentence per line.\n\t Example:\n\t ```\n\t errant_parallel -orig <orig_file> -cor <cor_file1> [<cor_file2> ...] -out <out_m2>\n\t ```\n\n2. `errant_m2`  \n\n     This is a variant of `errant_parallel` that operates on an M2 file instead of parallel text files. This makes it easier to reprocess existing M2 files. You must also specify whether you want to use gold or auto edits; i.e. `-gold` will only classify the existing edits, while `-auto` will extract and classify automatic edits. In both settings, uncorrected edits and noops are preserved.  \n     Example:\n\t ```\n\t errant_m2 {-auto|-gold} m2_file -out <out_m2>\n\t ```\n\n3. `errant_compare`  \n\n     This is the evaluation command that compares a hypothesis M2 file against a reference M2 file. The default behaviour evaluates the hypothesis overall in terms of span-based correction. The `-cat {1,2,3}` flag can be used to evaluate error types at increasing levels of granularity, while the `-ds` or `-dt` flag can be used to evaluate in terms of span-based or token-based detection (i.e. ignoring the correction). All scores are presented in terms of Precision, Recall and F-score (default: F0.5), and counts for True Positives (TP), False Positives (FP) and False Negatives (FN) are also shown.  \n\t Examples:\n\t ```\n     errant_compare -hyp <hyp_m2> -ref <ref_m2> \n     errant_compare -hyp <hyp_m2> -ref <ref_m2> -cat {1,2,3}\n     errant_compare -hyp <hyp_m2> -ref <ref_m2> -ds\n     errant_compare -hyp <hyp_m2> -ref <ref_m2> -ds -cat {1,2,3}\n\t ```\t\n\nAll these scripts also have additional advanced command line options which can be displayed using the `-h` flag. \n\n## API\n\nAs of v3.0.0, ERRANT now also comes with an API.\n\n### Quick Start\n\n```python\nimport errant\n\nannotator = errant.load('en')\n\norig = 'My    name    is   the     John'\ncor = 'My name is John'\nedits = annotator.annotate_raw_text(orig, cor)\n\nfor e in edits:\n    print(e.o_start, e.o_end, e.o_str, e.c_start, e.c_end, e.c_str, e.type)\n    print(e.o_toks.start_char, e.o_toks.end_char)\n```\n\n### Loading\n\n`errant.load(lang, model_name, nlp=None)`\n\nInstantiate an ERRANT Annotator object. Presently, the lang parameter exclusively accepts 'en' for English, though we aspire to broaden its language support in future iterations. The model_name corresponds to the name of the SpaCy model being utilized. Optionally, you can provide the nlp parameter if you've previously loaded SpaCy and wish to prevent ERRANT from loading it redundantly.\n\n### Annotator Objects\n\nAn Annotator object is the main interface for ERRANT.\n\n#### Methods\n\n<details>\n<summary>annotator.parse</summary>\n\n`annotator.parse(string, tokenise=False)`\n\nLemmatise, POS tag, and parse a text string with spacy. Set `tokenise` to True to also word tokenise with spacy. Returns a spacy Doc object.\n\n</details>\n\n<details>\n<summary>annotator.align</summary>\n\n`annotator.align(orig, cor, lev=False)`\n\nAlign spacy-parsed original and corrected text. The default uses a linguistically-enhanced Damerau-Levenshtein alignment, but the `lev` flag can be used for a standard Levenshtein alignment. Returns an Alignment object.\n\n</details>\n\n<details>\n<summary>annotator.merge</summary>\n\n`annotator.merge(alignment, merging='rules')`\n\nExtract edits from the optimum alignment in an Alignment object. Four different merging strategies are available:\n1. rules: Use a rule-based merging strategy (default)\n2. all-split: Merge nothing: MSSDI -> M, S, S, D, I\n3. all-merge: Merge adjacent non-matches: MSSDI -> M, SSDI\n4. all-equal: Merge adjacent same-type non-matches: MSSDI -> M, SS, D, I\n\nReturns a list of Edit objects.\n</details>\n\n<details>\n<summary>annotator.classify</summary>\n\n`annotatorclassify(edit)`\n\nClassify an edit. Sets the `edit.type` attribute in an Edit object and returns the same Edit object. \n\n</details>\n\n\n\n<details>\n<summary>annotator.annotate</summary>\n\n`annotator.annotate(orig, cor, lev=False, merging='rules')`\n\nRun the full annotation pipeline to align two sequences and extract and classify the edits. Equivalent to running `annotator.align`, `annotator.merge` and `annotator.classify` in sequence. Returns a list of Edit objects.\n\n```python\nimport errant\n\nannotator = errant.load(lang=\"en\", model_name=\"en_core_web_sm\")\norig = annotator.parse('This are gramamtical sentence .')\ncor = annotator.parse('This is a grammatical sentence .')\nalignment = annotator.align(orig, cor)\nedits = annotator.merge(alignment)\nfor e in edits:\n    e = annotator.classify(e)\n```\n\n</details>\n\n<details>\n<summary>annotator.import_edit</summary>\n\n`annotator.import_edit(orig, cor, edit, min=True, old_cat=False)`\n\nLoad an Edit object from a list. `orig` and `cor` must be spacy-parsed Doc objects and the edit must be of the form: `[o_start, o_end, c_start, c_end(, type)]`. The values must be integers that correspond to the token start and end offsets in the original and corrected Doc objects. The `type` value is an optional string that denotes the error type of the edit (if known). Set `min` to True to minimise the edit (e.g. [a b -> a c] = [b -> c]) and `old_cat` to True to preserve the old error type category (i.e. turn off the classifier).\n\n```python\nimport errant\n\nannotator = errant.load('en')\norig = annotator.parse('This are gramamtical sentence .')\ncor = annotator.parse('This is a grammatical sentence .')\nedit = [1, 2, 1, 2, 'SVA'] # are -> is\nedit = annotator.import_edit(orig, cor, edit)\nprint(edit.to_m2())\n```\n\n</details>\n\n### Alignment Objects\n\nAn Alignment object is created from two spacy-parsed text sequences.\n\n#### Attributes\n\n`alignment`.**orig**  \n`alignment`.**cor**  \nThe spacy-parsed original and corrected text sequences.\n\n`alignment`.**cost_matrix**   \n`alignment`.**op_matrix**  \nThe cost matrix and operation matrix produced by the alignment.\n\n`alignment`.**align_seq**  \nThe first cheapest alignment between the two sequences.\n\n### Edit Objects\n\nAn Edit object represents a transformation between two text sequences.\n\n#### Attributes\n\n`edit`.**o_start**  \n`edit`.**o_end**  \n`edit`.**o_toks**  \n`edit`.**o_str**  \nThe start and end offsets, the spacy tokens, and the string for the edit in the *original* text.\n\n`edit`.**c_start**  \n`edit`.**c_end**  \n`edit`.**c_toks**  \n`edit`.**c_str**  \nThe start and end offsets, the spacy tokens, and the string for the edit in the *corrected* text.\n\n`edit`.**type**  \nThe error type string.\n\n#### Methods\n\n`edit`.**to_m2**(id=0)  \nFormat the edit for an output M2 file. `id` is the annotator id.\t\n\n## Development for Other Languages\n\nIf you want to develop ERRANT for other languages, you should mimic the `errant/en` directory structure. For example, ERRANT for French should import a merger from `errant.fr.merger` and a classifier from `errant.fr.classifier` that respectively have equivalent `get_rule_edits` and `classify` methods. You will also need to add `'fr'` to the list of supported languages in `errant/__init__.py`.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "The ERRor ANnotation Toolkit (ERRANT).         Automatically extract and classify edits in parallel sentences.",
    "version": "3.2.3",
    "project_urls": {
        "Homepage": "https://github.com/chrisjbryant/errant"
    },
    "split_keywords": [
        "automatic annotation",
        "grammatical errors",
        "natural language processing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff0a4bfe56219e24d260b19ecf3a6abb0481e73f401df54e40dc3bc57b7bec1c",
                "md5": "02c46cfc91e27ac48e389c4470f04543",
                "sha256": "0a3dc87a085d594748ebc986ced5026df8a4916d9f4c83ee8ccadfb8a40a49bd"
            },
            "downloads": -1,
            "filename": "errant_prep-3.2.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "02c46cfc91e27ac48e389c4470f04543",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">= 3.9",
            "size": 507832,
            "upload_time": "2024-01-27T14:57:40",
            "upload_time_iso_8601": "2024-01-27T14:57:40.822007Z",
            "url": "https://files.pythonhosted.org/packages/ff/0a/4bfe56219e24d260b19ecf3a6abb0481e73f401df54e40dc3bc57b7bec1c/errant_prep-3.2.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ac24c7b8bb4c24e87b92e4b448035980366837fb26dbee1426304b81e18ccb5",
                "md5": "2ee6b8bae2e35560fc79d8536114e3b5",
                "sha256": "918719d8894636daa003357e6ba74fc4779f5227fcd942242cd7bf120e8649e5"
            },
            "downloads": -1,
            "filename": "errant-prep-3.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "2ee6b8bae2e35560fc79d8536114e3b5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">= 3.9",
            "size": 507351,
            "upload_time": "2024-01-27T14:57:53",
            "upload_time_iso_8601": "2024-01-27T14:57:53.104329Z",
            "url": "https://files.pythonhosted.org/packages/9a/c2/4c7b8bb4c24e87b92e4b448035980366837fb26dbee1426304b81e18ccb5/errant-prep-3.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-27 14:57:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "chrisjbryant",
    "github_project": "errant",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "errant-prep"
}
        
Elapsed time: 0.20118s