thinc


Namethinc JSON
Version 8.2.3 PyPI version JSON
download
home_pagehttps://github.com/explosion/thinc
SummaryA refreshing functional take on deep learning, compatible with your favorite libraries
upload_time2024-02-07 18:18:05
maintainer
docs_urlNone
authorExplosion
requires_python>=3.6
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a href="https://explosion.ai"><img src="https://explosion.ai/assets/img/logo.svg" width="125" height="125" align="right" /></a>

# Thinc: A refreshing functional take on deep learning, compatible with your favorite libraries

### From the makers of [spaCy](https://spacy.io) and [Prodigy](https://prodi.gy)

[Thinc](https://thinc.ai) is a **lightweight deep learning library** that offers
an elegant, type-checked, functional-programming API for **composing models**,
with support for layers defined in other frameworks such as **PyTorch,
TensorFlow and MXNet**. You can use Thinc as an interface layer, a standalone
toolkit or a flexible way to develop new models. Previous versions of Thinc have
been running quietly in production in thousands of companies, via both
[spaCy](https://spacy.io) and [Prodigy](https://prodi.gy). We wrote the new
version to let users **compose, configure and deploy custom models** built with
their favorite framework.

[![tests](https://github.com/explosion/thinc/actions/workflows/tests.yml/badge.svg)](https://github.com/explosion/thinc/actions/workflows/tests.yml)
[![Current Release Version](https://img.shields.io/github/v/release/explosion/thinc.svg?include_prereleases&sort=semver&style=flat-square&logo=github)](https://github.com/explosion/thinc/releases)
[![PyPi Version](https://img.shields.io/pypi/v/thinc.svg?include_prereleases&sort=semver&style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/thinc)
[![conda Version](https://img.shields.io/conda/vn/conda-forge/thinc.svg?style=flat-square&logo=conda-forge&logoColor=white)](https://anaconda.org/conda-forge/thinc)
[![Python wheels](https://img.shields.io/badge/wheels-%E2%9C%93-4c1.svg?longCache=true&style=flat-square&logo=python&logoColor=white)](https://github.com/explosion/wheelwright/releases)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/ambv/black)
[![Open demo in Colab][colab]][intro_to_thinc_colab]

## 🔥 Features

- **Type-check** your model definitions with custom types and
  [`mypy`](https://mypy.readthedocs.io/en/latest/) plugin.
- Wrap **PyTorch**, **TensorFlow** and **MXNet** models for use in your network.
- Concise **functional-programming** approach to model definition, using
  composition rather than inheritance.
- Optional custom infix notation via **operator overloading**.
- Integrated **config system** to describe trees of objects and hyperparameters.
- Choice of **extensible backends**.
- **[Read more &rarr;](https://thinc.ai/docs)**

## 🚀 Quickstart

Thinc is compatible with **Python 3.6+** and runs on **Linux**, **macOS** and
**Windows**. The latest releases with binary wheels are available from
[pip](https://pypi.python.org/pypi/thinc). Before you install Thinc and its
dependencies, make sure that your `pip`, `setuptools` and `wheel` are up to
date. For the most recent releases, pip 19.3 or newer is recommended.

```bash
pip install -U pip setuptools wheel
pip install thinc
```

See the [extended installation docs](https://thinc.ai/docs/install#extended) for
details on optional dependencies for different backends and GPU. You might also
want to
[set up static type checking](https://thinc.ai/docs/install#type-checking) to
take advantage of Thinc's type system.

> ⚠️ If you have installed PyTorch and you are using Python 3.7+, uninstall the
> package `dataclasses` with `pip uninstall dataclasses`, since it may have been
> installed by PyTorch and is incompatible with Python 3.7+.

### 📓 Selected examples and notebooks

Also see the [`/examples`](examples) directory and
[usage documentation](https://thinc.ai/docs) for more examples. Most examples
are Jupyter notebooks – to launch them on
[Google Colab](https://colab.research.google.com) (with GPU support!) click on
the button next to the notebook name.

| Notebook                                                                                                              | Description                                                                                                                                                                                       |
| --------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`intro_to_thinc`][intro_to_thinc]<br />[![Open in Colab][colab]][intro_to_thinc_colab]                               | Everything you need to know to get started. Composing and training a model on the MNIST data, using config files, registering custom functions and wrapping PyTorch, TensorFlow and MXNet models. |
| [`transformers_tagger_bert`][transformers_tagger_bert]<br />[![Open in Colab][colab]][transformers_tagger_bert_colab] | How to use Thinc, `transformers` and PyTorch to train a part-of-speech tagger. From model definition and config to the training loop.                                                             |
| [`pos_tagger_basic_cnn`][pos_tagger_basic_cnn]<br />[![Open in Colab][colab]][pos_tagger_basic_cnn_colab]             | Implementing and training a basic CNN for part-of-speech tagging model without external dependencies and using different levels of Thinc's config system.                                         |
| [`parallel_training_ray`][parallel_training_ray]<br />[![Open in Colab][colab]][parallel_training_ray_colab]          | How to set up synchronous and asynchronous parameter server training with Thinc and [Ray](https://ray.readthedocs.io/en/latest/).                                                                 |

**[View more &rarr;](examples)**

[colab]:
  https://gistcdn.githack.com/ines/dcf354aa71a7665ae19871d7fd14a4e0/raw/461fc1f61a7bc5860f943cd4b6bcfabb8c8906e7/colab-badge.svg
[intro_to_thinc]: examples/00_intro_to_thinc.ipynb
[intro_to_thinc_colab]:
  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/00_intro_to_thinc.ipynb
[transformers_tagger_bert]: examples/02_transformers_tagger_bert.ipynb
[transformers_tagger_bert_colab]:
  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/02_transformers_tagger_bert.ipynb
[pos_tagger_basic_cnn]: examples/03_pos_tagger_basic_cnn.ipynb
[pos_tagger_basic_cnn_colab]:
  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/03_pos_tagger_basic_cnn.ipynb
[parallel_training_ray]: examples/04_parallel_training_ray.ipynb
[parallel_training_ray_colab]:
  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/04_parallel_training_ray.ipynb

### 📖 Documentation & usage guides

| Documentation                                                                     | Description                                           |
| --------------------------------------------------------------------------------- | ----------------------------------------------------- |
| [Introduction](https://thinc.ai/docs)                                             | Everything you need to know.                          |
| [Concept & Design](https://thinc.ai/docs/concept)                                 | Thinc's conceptual model and how it works.            |
| [Defining and using models](https://thinc.ai/docs/usage-models)                   | How to compose models and update state.               |
| [Configuration system](https://thinc.ai/docs/usage-config)                        | Thinc's config system and function registry.          |
| [Integrating PyTorch, TensorFlow & MXNet](https://thinc.ai/docs/usage-frameworks) | Interoperability with machine learning frameworks     |
| [Layers API](https://thinc.ai/docs/api-layers)                                    | Weights layers, transforms, combinators and wrappers. |
| [Type Checking](https://thinc.ai/docs/usage-type-checking)                        | Type-check your model definitions and more.           |

## 🗺 What's where

| Module                                    | Description                                                                       |
| ----------------------------------------- | --------------------------------------------------------------------------------- |
| [`thinc.api`](thinc/api.py)               | **User-facing API.** All classes and functions should be imported from here.      |
| [`thinc.types`](thinc/types.py)           | Custom [types and dataclasses](https://thinc.ai/docs/api-types).                  |
| [`thinc.model`](thinc/model.py)           | The `Model` class. All Thinc models are an instance (not a subclass) of `Model`.  |
| [`thinc.layers`](thinc/layers)            | The layers. Each layer is implemented in its own module.                          |
| [`thinc.shims`](thinc/shims)              | Interface for external models implemented in PyTorch, TensorFlow etc.             |
| [`thinc.loss`](thinc/loss.py)             | Functions to calculate losses.                                                    |
| [`thinc.optimizers`](thinc/optimizers.py) | Functions to create optimizers. Currently supports "vanilla" SGD, Adam and RAdam. |
| [`thinc.schedules`](thinc/schedules.py)   | Generators for different rates, schedules, decays or series.                      |
| [`thinc.backends`](thinc/backends)        | Backends for `numpy` and `cupy`.                                                  |
| [`thinc.config`](thinc/config.py)         | Config parsing and validation and function registry system.                       |
| [`thinc.util`](thinc/util.py)             | Utilities and helper functions.                                                   |

## 🐍 Development notes

Thinc uses [`black`](https://github.com/psf/black) for auto-formatting,
[`flake8`](http://flake8.pycqa.org/en/latest/) for linting and
[`mypy`](https://mypy.readthedocs.io/en/latest/) for type checking. All code is
written compatible with **Python 3.6+**, with type hints wherever possible. See
the [type reference](https://thinc.ai/docs/api-types) for more details on
Thinc's custom types.

### 👷‍♀️ Building Thinc from source

Building Thinc from source requires the full dependencies listed in
[`requirements.txt`](requirements.txt) to be installed. You'll also need a
compiler to build the C extensions.

```bash
git clone https://github.com/explosion/thinc
cd thinc
python -m venv .env
source .env/bin/activate
pip install -U pip setuptools wheel
pip install -r requirements.txt
pip install --no-build-isolation .
```

Alternatively, install in editable mode:

```bash
pip install -r requirements.txt
pip install --no-build-isolation --editable .
```

Or by setting `PYTHONPATH`:

```bash
export PYTHONPATH=`pwd`
pip install -r requirements.txt
python setup.py build_ext --inplace
```

### 🚦 Running tests

Thinc comes with an [extensive test suite](thinc/tests). The following should
all pass and not report any warnings or errors:

```bash
python -m pytest thinc    # test suite
python -m mypy thinc      # type checks
python -m flake8 thinc    # linting
```

To view test coverage, you can run `python -m pytest thinc --cov=thinc`. We aim
for a 100% test coverage. This doesn't mean that we meticulously write tests for
every single line – we ignore blocks that are not relevant or difficult to test
and make sure that the tests execute all code paths.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/explosion/thinc",
    "name": "thinc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Explosion",
    "author_email": "contact@explosion.ai",
    "download_url": "https://files.pythonhosted.org/packages/a4/97/064317586536d825c36037a9e99046f76b174d966f281291803f6991799b/thinc-8.2.3.tar.gz",
    "platform": null,
    "description": "<a href=\"https://explosion.ai\"><img src=\"https://explosion.ai/assets/img/logo.svg\" width=\"125\" height=\"125\" align=\"right\" /></a>\n\n# Thinc: A refreshing functional take on deep learning, compatible with your favorite libraries\n\n### From the makers of [spaCy](https://spacy.io) and [Prodigy](https://prodi.gy)\n\n[Thinc](https://thinc.ai) is a **lightweight deep learning library** that offers\nan elegant, type-checked, functional-programming API for **composing models**,\nwith support for layers defined in other frameworks such as **PyTorch,\nTensorFlow and MXNet**. You can use Thinc as an interface layer, a standalone\ntoolkit or a flexible way to develop new models. Previous versions of Thinc have\nbeen running quietly in production in thousands of companies, via both\n[spaCy](https://spacy.io) and [Prodigy](https://prodi.gy). We wrote the new\nversion to let users **compose, configure and deploy custom models** built with\ntheir favorite framework.\n\n[![tests](https://github.com/explosion/thinc/actions/workflows/tests.yml/badge.svg)](https://github.com/explosion/thinc/actions/workflows/tests.yml)\n[![Current Release Version](https://img.shields.io/github/v/release/explosion/thinc.svg?include_prereleases&sort=semver&style=flat-square&logo=github)](https://github.com/explosion/thinc/releases)\n[![PyPi Version](https://img.shields.io/pypi/v/thinc.svg?include_prereleases&sort=semver&style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/thinc)\n[![conda Version](https://img.shields.io/conda/vn/conda-forge/thinc.svg?style=flat-square&logo=conda-forge&logoColor=white)](https://anaconda.org/conda-forge/thinc)\n[![Python wheels](https://img.shields.io/badge/wheels-%E2%9C%93-4c1.svg?longCache=true&style=flat-square&logo=python&logoColor=white)](https://github.com/explosion/wheelwright/releases)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/ambv/black)\n[![Open demo in Colab][colab]][intro_to_thinc_colab]\n\n## \ud83d\udd25 Features\n\n- **Type-check** your model definitions with custom types and\n  [`mypy`](https://mypy.readthedocs.io/en/latest/) plugin.\n- Wrap **PyTorch**, **TensorFlow** and **MXNet** models for use in your network.\n- Concise **functional-programming** approach to model definition, using\n  composition rather than inheritance.\n- Optional custom infix notation via **operator overloading**.\n- Integrated **config system** to describe trees of objects and hyperparameters.\n- Choice of **extensible backends**.\n- **[Read more &rarr;](https://thinc.ai/docs)**\n\n## \ud83d\ude80 Quickstart\n\nThinc is compatible with **Python 3.6+** and runs on **Linux**, **macOS** and\n**Windows**. The latest releases with binary wheels are available from\n[pip](https://pypi.python.org/pypi/thinc). Before you install Thinc and its\ndependencies, make sure that your `pip`, `setuptools` and `wheel` are up to\ndate. For the most recent releases, pip 19.3 or newer is recommended.\n\n```bash\npip install -U pip setuptools wheel\npip install thinc\n```\n\nSee the [extended installation docs](https://thinc.ai/docs/install#extended) for\ndetails on optional dependencies for different backends and GPU. You might also\nwant to\n[set up static type checking](https://thinc.ai/docs/install#type-checking) to\ntake advantage of Thinc's type system.\n\n> \u26a0\ufe0f If you have installed PyTorch and you are using Python 3.7+, uninstall the\n> package `dataclasses` with `pip uninstall dataclasses`, since it may have been\n> installed by PyTorch and is incompatible with Python 3.7+.\n\n### \ud83d\udcd3 Selected examples and notebooks\n\nAlso see the [`/examples`](examples) directory and\n[usage documentation](https://thinc.ai/docs) for more examples. Most examples\nare Jupyter notebooks \u2013 to launch them on\n[Google Colab](https://colab.research.google.com) (with GPU support!) click on\nthe button next to the notebook name.\n\n| Notebook                                                                                                              | Description                                                                                                                                                                                       |\n| --------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| [`intro_to_thinc`][intro_to_thinc]<br />[![Open in Colab][colab]][intro_to_thinc_colab]                               | Everything you need to know to get started. Composing and training a model on the MNIST data, using config files, registering custom functions and wrapping PyTorch, TensorFlow and MXNet models. |\n| [`transformers_tagger_bert`][transformers_tagger_bert]<br />[![Open in Colab][colab]][transformers_tagger_bert_colab] | How to use Thinc, `transformers` and PyTorch to train a part-of-speech tagger. From model definition and config to the training loop.                                                             |\n| [`pos_tagger_basic_cnn`][pos_tagger_basic_cnn]<br />[![Open in Colab][colab]][pos_tagger_basic_cnn_colab]             | Implementing and training a basic CNN for part-of-speech tagging model without external dependencies and using different levels of Thinc's config system.                                         |\n| [`parallel_training_ray`][parallel_training_ray]<br />[![Open in Colab][colab]][parallel_training_ray_colab]          | How to set up synchronous and asynchronous parameter server training with Thinc and [Ray](https://ray.readthedocs.io/en/latest/).                                                                 |\n\n**[View more &rarr;](examples)**\n\n[colab]:\n  https://gistcdn.githack.com/ines/dcf354aa71a7665ae19871d7fd14a4e0/raw/461fc1f61a7bc5860f943cd4b6bcfabb8c8906e7/colab-badge.svg\n[intro_to_thinc]: examples/00_intro_to_thinc.ipynb\n[intro_to_thinc_colab]:\n  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/00_intro_to_thinc.ipynb\n[transformers_tagger_bert]: examples/02_transformers_tagger_bert.ipynb\n[transformers_tagger_bert_colab]:\n  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/02_transformers_tagger_bert.ipynb\n[pos_tagger_basic_cnn]: examples/03_pos_tagger_basic_cnn.ipynb\n[pos_tagger_basic_cnn_colab]:\n  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/03_pos_tagger_basic_cnn.ipynb\n[parallel_training_ray]: examples/04_parallel_training_ray.ipynb\n[parallel_training_ray_colab]:\n  https://colab.research.google.com/github/explosion/thinc/blob/master/examples/04_parallel_training_ray.ipynb\n\n### \ud83d\udcd6 Documentation & usage guides\n\n| Documentation                                                                     | Description                                           |\n| --------------------------------------------------------------------------------- | ----------------------------------------------------- |\n| [Introduction](https://thinc.ai/docs)                                             | Everything you need to know.                          |\n| [Concept & Design](https://thinc.ai/docs/concept)                                 | Thinc's conceptual model and how it works.            |\n| [Defining and using models](https://thinc.ai/docs/usage-models)                   | How to compose models and update state.               |\n| [Configuration system](https://thinc.ai/docs/usage-config)                        | Thinc's config system and function registry.          |\n| [Integrating PyTorch, TensorFlow & MXNet](https://thinc.ai/docs/usage-frameworks) | Interoperability with machine learning frameworks     |\n| [Layers API](https://thinc.ai/docs/api-layers)                                    | Weights layers, transforms, combinators and wrappers. |\n| [Type Checking](https://thinc.ai/docs/usage-type-checking)                        | Type-check your model definitions and more.           |\n\n## \ud83d\uddfa What's where\n\n| Module                                    | Description                                                                       |\n| ----------------------------------------- | --------------------------------------------------------------------------------- |\n| [`thinc.api`](thinc/api.py)               | **User-facing API.** All classes and functions should be imported from here.      |\n| [`thinc.types`](thinc/types.py)           | Custom [types and dataclasses](https://thinc.ai/docs/api-types).                  |\n| [`thinc.model`](thinc/model.py)           | The `Model` class. All Thinc models are an instance (not a subclass) of `Model`.  |\n| [`thinc.layers`](thinc/layers)            | The layers. Each layer is implemented in its own module.                          |\n| [`thinc.shims`](thinc/shims)              | Interface for external models implemented in PyTorch, TensorFlow etc.             |\n| [`thinc.loss`](thinc/loss.py)             | Functions to calculate losses.                                                    |\n| [`thinc.optimizers`](thinc/optimizers.py) | Functions to create optimizers. Currently supports \"vanilla\" SGD, Adam and RAdam. |\n| [`thinc.schedules`](thinc/schedules.py)   | Generators for different rates, schedules, decays or series.                      |\n| [`thinc.backends`](thinc/backends)        | Backends for `numpy` and `cupy`.                                                  |\n| [`thinc.config`](thinc/config.py)         | Config parsing and validation and function registry system.                       |\n| [`thinc.util`](thinc/util.py)             | Utilities and helper functions.                                                   |\n\n## \ud83d\udc0d Development notes\n\nThinc uses [`black`](https://github.com/psf/black) for auto-formatting,\n[`flake8`](http://flake8.pycqa.org/en/latest/) for linting and\n[`mypy`](https://mypy.readthedocs.io/en/latest/) for type checking. All code is\nwritten compatible with **Python 3.6+**, with type hints wherever possible. See\nthe [type reference](https://thinc.ai/docs/api-types) for more details on\nThinc's custom types.\n\n### \ud83d\udc77\u200d\u2640\ufe0f Building Thinc from source\n\nBuilding Thinc from source requires the full dependencies listed in\n[`requirements.txt`](requirements.txt) to be installed. You'll also need a\ncompiler to build the C extensions.\n\n```bash\ngit clone https://github.com/explosion/thinc\ncd thinc\npython -m venv .env\nsource .env/bin/activate\npip install -U pip setuptools wheel\npip install -r requirements.txt\npip install --no-build-isolation .\n```\n\nAlternatively, install in editable mode:\n\n```bash\npip install -r requirements.txt\npip install --no-build-isolation --editable .\n```\n\nOr by setting `PYTHONPATH`:\n\n```bash\nexport PYTHONPATH=`pwd`\npip install -r requirements.txt\npython setup.py build_ext --inplace\n```\n\n### \ud83d\udea6 Running tests\n\nThinc comes with an [extensive test suite](thinc/tests). The following should\nall pass and not report any warnings or errors:\n\n```bash\npython -m pytest thinc    # test suite\npython -m mypy thinc      # type checks\npython -m flake8 thinc    # linting\n```\n\nTo view test coverage, you can run `python -m pytest thinc --cov=thinc`. We aim\nfor a 100% test coverage. This doesn't mean that we meticulously write tests for\nevery single line \u2013 we ignore blocks that are not relevant or difficult to test\nand make sure that the tests execute all code paths.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A refreshing functional take on deep learning, compatible with your favorite libraries",
    "version": "8.2.3",
    "project_urls": {
        "Homepage": "https://github.com/explosion/thinc"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d6e774c111e93259ee34a65ae4544e4842527f9ac88ca0ae199041115752972",
                "md5": "1e8b4d507a282f5d68c05bfe98626ba8",
                "sha256": "27950dc8a14e1ead09dec329ad98edf1b8f7cc71ec9d5ce5f301073de9d7dadf"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e8b4d507a282f5d68c05bfe98626ba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 872597,
            "upload_time": "2024-02-07T18:16:46",
            "upload_time_iso_8601": "2024-02-07T18:16:46.669347Z",
            "url": "https://files.pythonhosted.org/packages/6d/6e/774c111e93259ee34a65ae4544e4842527f9ac88ca0ae199041115752972/thinc-8.2.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95630eb03dd058205536d557748df089e8310212a6657582047cefe6df4f4999",
                "md5": "bb7a8d024badae9b4407764c2c8699d6",
                "sha256": "fce09571619f344983f915f5deb5b8346304b56d3a9ae1bc5ac8c5872eee0738"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bb7a8d024badae9b4407764c2c8699d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 789617,
            "upload_time": "2024-02-07T18:16:50",
            "upload_time_iso_8601": "2024-02-07T18:16:50.655734Z",
            "url": "https://files.pythonhosted.org/packages/95/63/0eb03dd058205536d557748df089e8310212a6657582047cefe6df4f4999/thinc-8.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22f43c03fa4ab5b4437c7cb8c344ef87381edbd94fc5ecb2b7f5598d3cf95365",
                "md5": "8cdda265c583e28cec174f049a2caf7a",
                "sha256": "ce0fb4e534c978ff4b429678ab28db2f81503549f97ed61b2b752c07c08b2083"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8cdda265c583e28cec174f049a2caf7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 868687,
            "upload_time": "2024-02-07T18:16:52",
            "upload_time_iso_8601": "2024-02-07T18:16:52.429221Z",
            "url": "https://files.pythonhosted.org/packages/22/f4/3c03fa4ab5b4437c7cb8c344ef87381edbd94fc5ecb2b7f5598d3cf95365/thinc-8.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e05fdae07e6bca8a16a2a26099cc0c1cad73b47b597518cb3bfcb549e64f8ba4",
                "md5": "ad05bc64f8e744c22cdfac4122f86df0",
                "sha256": "607223c178ae5fba36a3b35fa82d94a453694551bcfbe7f9ac04a01a9e87ebad"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad05bc64f8e744c22cdfac4122f86df0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 922336,
            "upload_time": "2024-02-07T18:16:54",
            "upload_time_iso_8601": "2024-02-07T18:16:54.647471Z",
            "url": "https://files.pythonhosted.org/packages/e0/5f/dae07e6bca8a16a2a26099cc0c1cad73b47b597518cb3bfcb549e64f8ba4/thinc-8.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa397e2aa8b46b430c4d19676a4ff9f36b329788723c05e6187539daca209da2",
                "md5": "b141ea0a68adb0964b993a1db91f8ecb",
                "sha256": "53b48a6ae43b0e4054816a378163237b1d2120a49c71994682037437d64b7f84"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b141ea0a68adb0964b993a1db91f8ecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1482081,
            "upload_time": "2024-02-07T18:16:57",
            "upload_time_iso_8601": "2024-02-07T18:16:57.074227Z",
            "url": "https://files.pythonhosted.org/packages/aa/39/7e2aa8b46b430c4d19676a4ff9f36b329788723c05e6187539daca209da2/thinc-8.2.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a82a1f2a6c583fc90a4e13efbd42352389d8c082f9810724ff6526374b471c2",
                "md5": "97451b7ecc85b081006f8b08dec35581",
                "sha256": "9db67f460dae2e3aada1ff166394ce13c2dabb4db93d6bd79cd256f5beab9599"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97451b7ecc85b081006f8b08dec35581",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 863679,
            "upload_time": "2024-02-07T18:16:59",
            "upload_time_iso_8601": "2024-02-07T18:16:59.836340Z",
            "url": "https://files.pythonhosted.org/packages/2a/82/a1f2a6c583fc90a4e13efbd42352389d8c082f9810724ff6526374b471c2/thinc-8.2.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05482cf60744d60d07d789ce5cf6230fe2140612bc3f8ae70a89bc980ea27a28",
                "md5": "a58adbe72f527a7700dc80d9e6ceae22",
                "sha256": "0d57bdf43e0acd1406d681bf988179f677cf1b385c86f744bf314d827383ce31"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a58adbe72f527a7700dc80d9e6ceae22",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 781147,
            "upload_time": "2024-02-07T18:17:03",
            "upload_time_iso_8601": "2024-02-07T18:17:03.123253Z",
            "url": "https://files.pythonhosted.org/packages/05/48/2cf60744d60d07d789ce5cf6230fe2140612bc3f8ae70a89bc980ea27a28/thinc-8.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "270141948a3f480af5c82675bc265178884037822070e0e7725e20c6b30e35ea",
                "md5": "c858f9e435802d74302bb06701acb7e4",
                "sha256": "78311a593b8bf3f03af52bf71d6b364463c598f3540ea8387c00017d2a0e0a5d"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c858f9e435802d74302bb06701acb7e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 868299,
            "upload_time": "2024-02-07T18:17:05",
            "upload_time_iso_8601": "2024-02-07T18:17:05.181391Z",
            "url": "https://files.pythonhosted.org/packages/27/01/41948a3f480af5c82675bc265178884037822070e0e7725e20c6b30e35ea/thinc-8.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78c1720e91ab46b4bf95d28f2e7c7e1f4c222a8340c4f88ebb21cd961a34d37a",
                "md5": "3bd1e60660d8e68e47ad64e60ef44c86",
                "sha256": "b9489ae7fec427064a50a0c3e7c661a95251756032e31316add2c8c13f98f93c"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bd1e60660d8e68e47ad64e60ef44c86",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 920113,
            "upload_time": "2024-02-07T18:17:07",
            "upload_time_iso_8601": "2024-02-07T18:17:07.297637Z",
            "url": "https://files.pythonhosted.org/packages/78/c1/720e91ab46b4bf95d28f2e7c7e1f4c222a8340c4f88ebb21cd961a34d37a/thinc-8.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dea5c242d57dc7a8afe677aa48ce370d84be3d04523cbb819c4a36b64f35155c",
                "md5": "bd9c4e470b86653fc91ad1b8443e86c6",
                "sha256": "d0bf3840d434e3dbdf294643e6d54d2042d0e652abc68dee16673f28269fc456"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bd9c4e470b86653fc91ad1b8443e86c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1480104,
            "upload_time": "2024-02-07T18:17:09",
            "upload_time_iso_8601": "2024-02-07T18:17:09.939982Z",
            "url": "https://files.pythonhosted.org/packages/de/a5/c242d57dc7a8afe677aa48ce370d84be3d04523cbb819c4a36b64f35155c/thinc-8.2.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cf1f896adb7703a6bc8cb89d196f2c203bcc7332ed33c6970a11ea00fbfb471",
                "md5": "b5d4892a80816021fb3dae1053d6c931",
                "sha256": "bb7c64d0cb8066c47af9441cd611e89a0e2b28b85f2fffbdec791724c81e1915"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5d4892a80816021fb3dae1053d6c931",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 829603,
            "upload_time": "2024-02-07T18:17:12",
            "upload_time_iso_8601": "2024-02-07T18:17:12.628731Z",
            "url": "https://files.pythonhosted.org/packages/1c/f1/f896adb7703a6bc8cb89d196f2c203bcc7332ed33c6970a11ea00fbfb471/thinc-8.2.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5011d7409b468b49a18e574d60ff7c9b086ad86303215588df1c65f6ec48c47",
                "md5": "0d8574c83b38077eb5efad7481b2db19",
                "sha256": "c11ab3236e56311568f1e84099bfbeea3a4ee2434758a32982b224ddf8bad9c5"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0d8574c83b38077eb5efad7481b2db19",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 760484,
            "upload_time": "2024-02-07T18:17:14",
            "upload_time_iso_8601": "2024-02-07T18:17:14.506662Z",
            "url": "https://files.pythonhosted.org/packages/e5/01/1d7409b468b49a18e574d60ff7c9b086ad86303215588df1c65f6ec48c47/thinc-8.2.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4524bd8021f1755078ef994544dfbe5ad9e95c8abd43e2ede057e88db26a5dc8",
                "md5": "c029952c55dcaf9ce031706e98e45583",
                "sha256": "d0a7f29ad534b6e761ee24d0c9e7402447e8ed4e772922795f77c98d88d7f99c"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c029952c55dcaf9ce031706e98e45583",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 818794,
            "upload_time": "2024-02-07T18:17:16",
            "upload_time_iso_8601": "2024-02-07T18:17:16.422329Z",
            "url": "https://files.pythonhosted.org/packages/45/24/bd8021f1755078ef994544dfbe5ad9e95c8abd43e2ede057e88db26a5dc8/thinc-8.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c38cad31382cf98865a33155aca2baa697c8367949a2f3f24414775a4292e1c8",
                "md5": "2d91a1a3cef8e6b8a28d9333bd99ae00",
                "sha256": "2817bde75c92f98fee747efdbebca68d16158b808401c5a922ba54a5f2619e9b"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d91a1a3cef8e6b8a28d9333bd99ae00",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 865010,
            "upload_time": "2024-02-07T18:17:18",
            "upload_time_iso_8601": "2024-02-07T18:17:18.707249Z",
            "url": "https://files.pythonhosted.org/packages/c3/8c/ad31382cf98865a33155aca2baa697c8367949a2f3f24414775a4292e1c8/thinc-8.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "619e4456a32dc45d351a4dfb340832943a87a9b7e221a1c3e8c9196a2c192f7e",
                "md5": "703aaf5ebd6aef7ff6b5b2e3f2aa9c31",
                "sha256": "a336f8cae7374d1768a52e63a5084a1208e30b8761eede113d2703e43e7839f1"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "703aaf5ebd6aef7ff6b5b2e3f2aa9c31",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1447880,
            "upload_time": "2024-02-07T18:17:20",
            "upload_time_iso_8601": "2024-02-07T18:17:20.906487Z",
            "url": "https://files.pythonhosted.org/packages/61/9e/4456a32dc45d351a4dfb340832943a87a9b7e221a1c3e8c9196a2c192f7e/thinc-8.2.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "648b45287f17b4c9044d752a2442e7e5561798cd9de3310af059b0c9a8e255ea",
                "md5": "17dc292360d7992192cab990f94369f8",
                "sha256": "45c1a2880329eae53da1d77a4898b7fd30faad445b28fdf92c5557dbf6492ff0"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17dc292360d7992192cab990f94369f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 851772,
            "upload_time": "2024-02-07T18:17:23",
            "upload_time_iso_8601": "2024-02-07T18:17:23.057837Z",
            "url": "https://files.pythonhosted.org/packages/64/8b/45287f17b4c9044d752a2442e7e5561798cd9de3310af059b0c9a8e255ea/thinc-8.2.3-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7eb3b089f3ebf4ed2789b9932b810a7a4be702a79ebc239a53c5fbf562bc8001",
                "md5": "be5a0a657409d861c5f563fc73b35d28",
                "sha256": "5c899b25442ed915bc77fa4cf07e908dea1bccab7c4b8d854cc0b261026d6a06"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be5a0a657409d861c5f563fc73b35d28",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 873311,
            "upload_time": "2024-02-07T18:17:26",
            "upload_time_iso_8601": "2024-02-07T18:17:26.027482Z",
            "url": "https://files.pythonhosted.org/packages/7e/b3/b089f3ebf4ed2789b9932b810a7a4be702a79ebc239a53c5fbf562bc8001/thinc-8.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95b0c9cb2d4325da00ac4d7576b480cccdf7087bbab506c75aed1cf96e806ced",
                "md5": "e5b7023b9f59c7cde5ff2c210ced139b",
                "sha256": "83a6b46d5f0accf0c2b2e5ff05b1bffd4d99721513b6d0374574009b0aab292c"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5b7023b9f59c7cde5ff2c210ced139b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 920690,
            "upload_time": "2024-02-07T18:17:29",
            "upload_time_iso_8601": "2024-02-07T18:17:29.209705Z",
            "url": "https://files.pythonhosted.org/packages/95/b0/c9cb2d4325da00ac4d7576b480cccdf7087bbab506c75aed1cf96e806ced/thinc-8.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9685d2bb0e9342f6bd6860ea595b3bc72b7888d11474538f1393f5d602e44d86",
                "md5": "8b64466e9082297f527f9918cba19b9c",
                "sha256": "9a29a9ca7a5060c923866f16ba7823a4540cfd708eafa7202ee89ac029e0b78b"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b64466e9082297f527f9918cba19b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1551746,
            "upload_time": "2024-02-07T18:17:31",
            "upload_time_iso_8601": "2024-02-07T18:17:31.439736Z",
            "url": "https://files.pythonhosted.org/packages/96/85/d2bb0e9342f6bd6860ea595b3bc72b7888d11474538f1393f5d602e44d86/thinc-8.2.3-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d4b895f39ef56c9ea894f77d3fb68592599a346a9d802c8b111ce4401b5b3e5",
                "md5": "59e614c6bf63c0de03499e4f17ef73e6",
                "sha256": "bd25b781faae71c52ba053157ab1865f4163be1a6485e70a007855a037ba060f"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59e614c6bf63c0de03499e4f17ef73e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 853738,
            "upload_time": "2024-02-07T18:17:33",
            "upload_time_iso_8601": "2024-02-07T18:17:33.725246Z",
            "url": "https://files.pythonhosted.org/packages/2d/4b/895f39ef56c9ea894f77d3fb68592599a346a9d802c8b111ce4401b5b3e5/thinc-8.2.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e92afc93503054b248c6e13c81ef432b7588323f54a68f62a7ec7fd0046235b5",
                "md5": "290989cf5c19d6f82c46c6c9a3919ae4",
                "sha256": "f01a7107c36c4fc60b60fdbda30d76a0ac9bc8f4f9c7f6872db62250e2f836a5"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "290989cf5c19d6f82c46c6c9a3919ae4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 872325,
            "upload_time": "2024-02-07T18:17:36",
            "upload_time_iso_8601": "2024-02-07T18:17:36.224827Z",
            "url": "https://files.pythonhosted.org/packages/e9/2a/fc93503054b248c6e13c81ef432b7588323f54a68f62a7ec7fd0046235b5/thinc-8.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de7d14a5963e579e1ca09ef142319de744c0b39ba0a07624a7eb534d900c85bc",
                "md5": "12623a0d38119c1704740f2406de8a65",
                "sha256": "aa65182424efda03be9359c3540928bf2985792f89826a76ee475c7c6b2ec64f"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12623a0d38119c1704740f2406de8a65",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 921447,
            "upload_time": "2024-02-07T18:17:38",
            "upload_time_iso_8601": "2024-02-07T18:17:38.177292Z",
            "url": "https://files.pythonhosted.org/packages/de/7d/14a5963e579e1ca09ef142319de744c0b39ba0a07624a7eb534d900c85bc/thinc-8.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e64f8cca5c448ee0a4f32ed41a98cf449d7e84af7fa6985395a084ec67566fe",
                "md5": "683dab94600a2434310f673cc54440f6",
                "sha256": "4d448c8a870f594125cbfadc91024ce67683eae5698207101d2ea4793ab222a1"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "683dab94600a2434310f673cc54440f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1496775,
            "upload_time": "2024-02-07T18:17:40",
            "upload_time_iso_8601": "2024-02-07T18:17:40.015841Z",
            "url": "https://files.pythonhosted.org/packages/5e/64/f8cca5c448ee0a4f32ed41a98cf449d7e84af7fa6985395a084ec67566fe/thinc-8.2.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb48165d5386a60369bd1d804e80a20a54b37bfdf4663569101cdf91012c4b04",
                "md5": "db7fec96be9a2459d68fc0fd7121761d",
                "sha256": "97605421b898441733fda24c6dda74a85325fbeebc808176857b0a8e6e7a9d47"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db7fec96be9a2459d68fc0fd7121761d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 862586,
            "upload_time": "2024-02-07T18:17:42",
            "upload_time_iso_8601": "2024-02-07T18:17:42.761010Z",
            "url": "https://files.pythonhosted.org/packages/eb/48/165d5386a60369bd1d804e80a20a54b37bfdf4663569101cdf91012c4b04/thinc-8.2.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f7caeda4dc216bab0a07ad50d9546e85e60d48e5d35a9805687b65e087a7343",
                "md5": "bcf608be1ebd648243969ef7a4472e9a",
                "sha256": "8b0309d14bcfdad24b1e8bb87f8b245acfd7eb5305be466c284c788adf026ffa"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bcf608be1ebd648243969ef7a4472e9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 781052,
            "upload_time": "2024-02-07T18:17:45",
            "upload_time_iso_8601": "2024-02-07T18:17:45.008194Z",
            "url": "https://files.pythonhosted.org/packages/3f/7c/aeda4dc216bab0a07ad50d9546e85e60d48e5d35a9805687b65e087a7343/thinc-8.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e75f2953b5e2bded56ebd0c37bc093ba8ebb8a2db58cd257e5c6e09ad9de35c6",
                "md5": "86f9279d6782468baedb90f26f495c40",
                "sha256": "aead20abe233adade3c37daeb9d08e5429dfcada81856b1f2b1b7e4a67a671a0"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "86f9279d6782468baedb90f26f495c40",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 878048,
            "upload_time": "2024-02-07T18:17:46",
            "upload_time_iso_8601": "2024-02-07T18:17:46.995193Z",
            "url": "https://files.pythonhosted.org/packages/e7/5f/2953b5e2bded56ebd0c37bc093ba8ebb8a2db58cd257e5c6e09ad9de35c6/thinc-8.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4acaaf45017ab6e666ded32db8c94d083e5f26d0c304b6b41188646a5b9d5260",
                "md5": "88f1eb75eb93f02090900a261b23851b",
                "sha256": "324e5d2c98f787d82d239cf33cee425e1c11e34a3c96cb3f4e1ee5661abef50c"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88f1eb75eb93f02090900a261b23851b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 934379,
            "upload_time": "2024-02-07T18:17:49",
            "upload_time_iso_8601": "2024-02-07T18:17:49.361838Z",
            "url": "https://files.pythonhosted.org/packages/4a/ca/af45017ab6e666ded32db8c94d083e5f26d0c304b6b41188646a5b9d5260/thinc-8.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee506837eb91d4e037e783059bbead4625886ca954201503ef9d3631263a8875",
                "md5": "06201a1777094aa2ccd1d751c6470d3e",
                "sha256": "45e6416e56d5101d0557e31cd06235d80fc89e9ac455ef1b444c440cb3c1ce64"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06201a1777094aa2ccd1d751c6470d3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1508687,
            "upload_time": "2024-02-07T18:17:52",
            "upload_time_iso_8601": "2024-02-07T18:17:52.253480Z",
            "url": "https://files.pythonhosted.org/packages/ee/50/6837eb91d4e037e783059bbead4625886ca954201503ef9d3631263a8875/thinc-8.2.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d05356debd3c284263ab555c11bc46e265fcc84f913bd82d645818243e95f345",
                "md5": "479f68fc57258b0f6f68098f7bfa489e",
                "sha256": "5e6ebf63a185d7691b38655a184e30554fbe589805a802d97230eed07af8ea39"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "479f68fc57258b0f6f68098f7bfa489e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 880299,
            "upload_time": "2024-02-07T18:17:54",
            "upload_time_iso_8601": "2024-02-07T18:17:54.349741Z",
            "url": "https://files.pythonhosted.org/packages/d0/53/56debd3c284263ab555c11bc46e265fcc84f913bd82d645818243e95f345/thinc-8.2.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59b5b19edc785568a7097864784e9430bc10286c984927e9b9386b3be8e4d79f",
                "md5": "c23281a6c0f3d0805a8257233c7cbc09",
                "sha256": "4d29ee871cfd0d40f4a0436e154640c0965b163b91a088a85bcd5658c1cc3ed4"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c23281a6c0f3d0805a8257233c7cbc09",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 795366,
            "upload_time": "2024-02-07T18:17:56",
            "upload_time_iso_8601": "2024-02-07T18:17:56.259363Z",
            "url": "https://files.pythonhosted.org/packages/59/b5/b19edc785568a7097864784e9430bc10286c984927e9b9386b3be8e4d79f/thinc-8.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02206307e0fc5f2932a2d1993637f75639d75f4c2375cd73fa82f449894a3d69",
                "md5": "a5876cca3d1dbd25287551050f23f1c1",
                "sha256": "a8709d114131680bc7c02b0c97817bd7692eda50beb7849c7908666cf15a6cfd"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a5876cca3d1dbd25287551050f23f1c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 882038,
            "upload_time": "2024-02-07T18:17:58",
            "upload_time_iso_8601": "2024-02-07T18:17:58.159638Z",
            "url": "https://files.pythonhosted.org/packages/02/20/6307e0fc5f2932a2d1993637f75639d75f4c2375cd73fa82f449894a3d69/thinc-8.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b0cf402740a7ff33752317d5645821e47067b7f616cc7228336139f173b67d0",
                "md5": "55b7e03c11a0fe2e47020c33b68c6c8f",
                "sha256": "d9b81e3c1e89c8ed6dff5a8440f584cda623ec77a3bd8c0ed059936405b8a7ca"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55b7e03c11a0fe2e47020c33b68c6c8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 937771,
            "upload_time": "2024-02-07T18:18:00",
            "upload_time_iso_8601": "2024-02-07T18:18:00.653553Z",
            "url": "https://files.pythonhosted.org/packages/4b/0c/f402740a7ff33752317d5645821e47067b7f616cc7228336139f173b67d0/thinc-8.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83e66bec8d6fd6312ea86f02fdbdd887f4d3a39c300ed9ea2b4b46e094cb628e",
                "md5": "45d76ab2f32b4dd2965df16d32fb21ba",
                "sha256": "1df983af74952d4818703e6bac8af64fad338eaaef8b017fa05d372e3c68e577"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45d76ab2f32b4dd2965df16d32fb21ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1491811,
            "upload_time": "2024-02-07T18:18:03",
            "upload_time_iso_8601": "2024-02-07T18:18:03.085925Z",
            "url": "https://files.pythonhosted.org/packages/83/e6/6bec8d6fd6312ea86f02fdbdd887f4d3a39c300ed9ea2b4b46e094cb628e/thinc-8.2.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a497064317586536d825c36037a9e99046f76b174d966f281291803f6991799b",
                "md5": "e39442e620ad94664cbeede96fa8d02f",
                "sha256": "f5afc5222912a80bda8bdcec958362a2ba538d7027dc8db6154845d2859dca76"
            },
            "downloads": -1,
            "filename": "thinc-8.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "e39442e620ad94664cbeede96fa8d02f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 192870,
            "upload_time": "2024-02-07T18:18:05",
            "upload_time_iso_8601": "2024-02-07T18:18:05.708012Z",
            "url": "https://files.pythonhosted.org/packages/a4/97/064317586536d825c36037a9e99046f76b174d966f281291803f6991799b/thinc-8.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-07 18:18:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "explosion",
    "github_project": "thinc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "thinc"
}
        
Elapsed time: 0.24042s