Skip to main content

spaCy: Industrial-strength NLP

spaCy is a library for advanced Natural Language Processing in Python and Cython. It's built on the very latest research, and was designed from day one to be used in real products.

spaCy comes with pretrained pipelines and currently supports tokenization and training for 70+ languages. It features state-of-the-art speed and neural network models for tagging, parsing, named entity recognition, text classification and more, multi-task learning with pretrained transformers like BERT, as well as a production-ready training system and easy model packaging, deployment and workflow management. spaCy is commercial open-source software, released under the MIT license.

💫 Version 3.8 out now! Check out the release notes here.

tests Current Release Version pypi Version conda Version Python wheels Code style: black
PyPi downloads Conda downloads

📖 Documentation

Documentation
⭐️ spaCy 101 New to spaCy? Here's everything you need to know!
📚 Usage Guides How to use spaCy and its features.
🚀 New in v3.0 New features, backwards incompatibilities and migration guide.
🪐 Project Templates End-to-end workflows you can clone, modify and run.
🎛 API Reference The detailed reference for spaCy's API.
GPU Processing Use spaCy with CUDA-compatible GPU processing.
📦 Models Download trained pipelines for spaCy.
🦙 Large Language Models Integrate LLMs into spaCy pipelines.
🌌 Universe Plugins, extensions, demos and books from the spaCy ecosystem.
⚙️ spaCy VS Code Extension Additional tooling and features for working with spaCy's config files.
👩‍🏫 Online Course Learn spaCy in this free and interactive online course.
📰 Blog Read about current spaCy and Prodigy development, releases, talks and more from Explosion.
📺 Videos Our YouTube channel with video tutorials, talks and more.
🔴 Live Stream Join Matt as he works on spaCy and chat about NLP.
🛠 Changelog Changes and version history.
💝 Contribute How to contribute to the spaCy project and code base.
👕 Swag Support us and our work with unique, custom-designed swag!
Tailored Solutions Custom NLP consulting, implementation and strategic advice by spaCy’s core development team. Streamlined, production-ready, predictable and maintainable. Send us an email or take our 5-minute questionnaire, and well'be in touch! Learn more →

💬 Where to ask questions

The spaCy project is maintained by the spaCy team. Please understand that we won't be able to provide individual support via email. We also believe that help is much more valuable if it's shared publicly, so that more people can benefit from it.

Type Platforms
🚨 Bug Reports GitHub Issue Tracker
🎁 Feature Requests & Ideas GitHub Discussions · Live Stream
👩‍💻 Usage Questions GitHub Discussions · Stack Overflow
🗯 General Discussion GitHub Discussions · Live Stream

Features

  • Support for 70+ languages
  • Trained pipelines for different languages and tasks
  • Multi-task learning with pretrained transformers like BERT
  • Support for pretrained word vectors and embeddings
  • State-of-the-art speed
  • Production-ready training system
  • Linguistically-motivated tokenization
  • Components for named entity recognition, part-of-speech-tagging, dependency parsing, sentence segmentation, text classification, lemmatization, morphological analysis, entity linking and more
  • Easily extensible with custom components and attributes
  • Support for custom models in PyTorch, TensorFlow and other frameworks
  • Built in visualizers for syntax and NER
  • Easy model packaging, deployment and workflow management
  • Robust, rigorously evaluated accuracy

📖 For more details, see the facts, figures and benchmarks.

⏳ Install spaCy

For detailed installation instructions, see the documentation.

  • Operating system: macOS / OS X · Linux · Windows (Cygwin, MinGW, Visual Studio)
  • Python version: Python >=3.7, <3.13 (only 64 bit)
  • Package managers: pip · conda (via conda-forge)

pip

Using pip, spaCy releases are available as source packages and binary wheels. Before you install spaCy and its dependencies, make sure that your pip, setuptools and wheel are up to date.

pip install -U pip setuptools wheel
pip install spacy

To install additional data tables for lemmatization and normalization you can run pip install spacy[lookups] or install spacy-lookups-data separately. The lookups package is needed to create blank models with lemmatization data, and to lemmatize in languages that don't yet come with pretrained models and aren't powered by third-party libraries.

When using pip it is generally recommended to install packages in a virtual environment to avoid modifying system state:

python -m venv .env
source .env/bin/activate
pip install -U pip setuptools wheel
pip install spacy

conda

You can also install spaCy from conda via the conda-forge channel. For the feedstock including the build recipe and configuration, check out this repository.

conda install -c conda-forge spacy

Updating spaCy

Some updates to spaCy may require downloading new statistical models. If you're running spaCy v2.0 or higher, you can use the validate command to check if your installed models are compatible and if not, print details on how to update them:

pip install -U spacy
python -m spacy validate

If you've trained your own models, keep in mind that your training and runtime inputs must match. After updating spaCy, we recommend retraining your models with the new version.

📖 For details on upgrading from spaCy 2.x to spaCy 3.x, see the migration guide.

📦 Download model packages

Trained pipelines for spaCy can be installed as Python packages. This means that they're a component of your application, just like any other module. Models can be installed using spaCy's download command, or manually by pointing pip to a path or URL.

Documentation
Available Pipelines Detailed pipeline descriptions, accuracy figures and benchmarks.
Models Documentation Detailed usage and installation instructions.
Training How to train your own pipelines on your data.
# Download best-matching version of specific model for your spaCy installation
python -m spacy download en_core_web_sm

# pip install .tar.gz archive or .whl from path or URL
pip install /Users/you/en_core_web_sm-3.0.0.tar.gz
pip install /Users/you/en_core_web_sm-3.0.0-py3-none-any.whl
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.0.0/en_core_web_sm-3.0.0.tar.gz

Loading and using models

To load a model, use spacy.load() with the model name or a path to the model data directory.

import spacy
nlp = spacy.load("en_core_web_sm")
doc = nlp("This is a sentence.")

You can also import a model directly via its full name and then call its load() method with no arguments.

import spacy
import en_core_web_sm

nlp = en_core_web_sm.load()
doc = nlp("This is a sentence.")

📖 For more info and examples, check out the models documentation.

⚒ Compile from source

The other way to install spaCy is to clone its GitHub repository and build it from source. That is the common way if you want to make changes to the code base. You'll need to make sure that you have a development environment consisting of a Python distribution including header files, a compiler, pip, virtualenv and git installed. The compiler part is the trickiest. How to do that depends on your system.

Platform
Ubuntu Install system-level dependencies via apt-get: sudo apt-get install build-essential python-dev git .
Mac Install a recent version of XCode, including the so-called "Command Line Tools". macOS and OS X ship with Python and git preinstalled.
Windows Install a version of the Visual C++ Build Tools or Visual Studio Express that matches the version that was used to compile your Python interpreter.

For more details and instructions, see the documentation on compiling spaCy from source and the quickstart widget to get the right commands for your platform and Python version.

git clone https://github.com/explosion/spaCy
cd spaCy

python -m venv .env
source .env/bin/activate

# make sure you are using the latest pip
python -m pip install -U pip setuptools wheel

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

To install with extras:

pip install --no-build-isolation --editable .[lookups,cuda102]

🚦 Run tests

spaCy comes with an extensive test suite. In order to run the tests, you'll usually want to clone the repository and build spaCy from source. This will also install the required development dependencies and test utilities defined in the requirements.txt.

Alternatively, you can run pytest on the tests from within the installed spacy package. Don't forget to also install the test utilities via spaCy's requirements.txt:

pip install -r requirements.txt
python -m pytest --pyargs spacy

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spacy-3.8.16.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

spacy-3.8.16-cp314-cp314-win_arm64.whl (14.6 MB view details)

Uploaded CPython 3.14Windows ARM64

spacy-3.8.16-cp314-cp314-win_amd64.whl (15.2 MB view details)

Uploaded CPython 3.14Windows x86-64

spacy-3.8.16-cp314-cp314-musllinux_1_2_x86_64.whl (35.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

spacy-3.8.16-cp314-cp314-musllinux_1_2_aarch64.whl (34.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

spacy-3.8.16-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

spacy-3.8.16-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (34.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

spacy-3.8.16-cp314-cp314-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

spacy-3.8.16-cp314-cp314-macosx_10_15_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

spacy-3.8.16-cp313-cp313-win_arm64.whl (14.5 MB view details)

Uploaded CPython 3.13Windows ARM64

spacy-3.8.16-cp313-cp313-win_amd64.whl (15.2 MB view details)

Uploaded CPython 3.13Windows x86-64

spacy-3.8.16-cp313-cp313-musllinux_1_2_x86_64.whl (35.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

spacy-3.8.16-cp313-cp313-musllinux_1_2_aarch64.whl (34.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

spacy-3.8.16-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (35.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

spacy-3.8.16-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (34.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

spacy-3.8.16-cp313-cp313-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

spacy-3.8.16-cp313-cp313-macosx_10_13_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

spacy-3.8.16-cp312-cp312-win_arm64.whl (14.6 MB view details)

Uploaded CPython 3.12Windows ARM64

spacy-3.8.16-cp312-cp312-win_amd64.whl (15.2 MB view details)

Uploaded CPython 3.12Windows x86-64

spacy-3.8.16-cp312-cp312-musllinux_1_2_x86_64.whl (36.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

spacy-3.8.16-cp312-cp312-musllinux_1_2_aarch64.whl (35.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

spacy-3.8.16-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (35.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

spacy-3.8.16-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (34.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

spacy-3.8.16-cp312-cp312-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

spacy-3.8.16-cp312-cp312-macosx_10_13_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

spacy-3.8.16-cp311-cp311-win_arm64.whl (15.7 MB view details)

Uploaded CPython 3.11Windows ARM64

spacy-3.8.16-cp311-cp311-win_amd64.whl (16.3 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.8.16-cp311-cp311-musllinux_1_2_x86_64.whl (35.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

spacy-3.8.16-cp311-cp311-musllinux_1_2_aarch64.whl (34.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

spacy-3.8.16-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (34.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

spacy-3.8.16-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

spacy-3.8.16-cp311-cp311-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-3.8.16-cp311-cp311-macosx_10_9_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.8.16-cp310-cp310-win_amd64.whl (16.4 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.8.16-cp310-cp310-musllinux_1_2_x86_64.whl (34.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

spacy-3.8.16-cp310-cp310-musllinux_1_2_aarch64.whl (33.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

spacy-3.8.16-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (33.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

spacy-3.8.16-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (32.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

spacy-3.8.16-cp310-cp310-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.8.16-cp310-cp310-macosx_10_9_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file spacy-3.8.16.tar.gz.

File metadata

  • Download URL: spacy-3.8.16.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16.tar.gz
Algorithm Hash digest
SHA256 a3d19da23637cc396b42d22fc33852680f675d8ddcb847d3e2a0d094712d1794
MD5 32ffc3ef189b7e3a46774339f6114c14
BLAKE2b-256 695db0b4cd2f6e8a0470e50f7f0cfc1cea6e2f25572e97fb5d404c7941d5e88a

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16.tar.gz:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 15908539b375bd8e3c627a076dac793b8fd790c5945f3a696837dd70776a4fc0
MD5 9c5bfe04d1a1c260e4585e69bebaf84b
BLAKE2b-256 242f0f2470625e61a3f58792e8fd94ac5fd0682057c9918cac09c3aef3ca203d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 86227a0a0d3dfee3f3dcc15f73c1387b586d77b075348afc250ffafea88ffcec
MD5 9d87ef37e4425cb7a71508b4725744b5
BLAKE2b-256 bb22f3f45881d0f5cd7c3ee4011f4c5ffafa76d4ee520649b3eb04440d6dd67c

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e32a51b115674d3f42c6cde696c583dc1594f5bff6b430de4aba4c753d47f93
MD5 cc9e36d1166a03d9773ace96a49d0323
BLAKE2b-256 646089d411d014ba7edc9603cdacacb7df88ca2b5a7cbde2771dff3f72a7c29d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b741266d901222dde979a802d5e9f3cf3d9bf77a15be3137b387f62905a74d57
MD5 7a39f9b87b61e9e37ae0acaba46e6aa6
BLAKE2b-256 e7c85b2392b10f6e7f1d2f8851bef3ddf5a62c949912ef842a62c7f191d6cadd

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c51eac85344784ca7b184f0c3f7da0fca47c354d63e05e733d90cae35a2ecc4
MD5 e8786b76af993c190b22f0654e860b1f
BLAKE2b-256 c41c439d28bda90d057e0688c80c89487174e8dae4988268abea461edaf4f28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04fd0206c9f33a0542a40049211528742b5492ef5f971d06b151b9cc49b9237b
MD5 53634727c2207719c2868a42daa3c53a
BLAKE2b-256 f268ec6fbae239df6e1ba1b8c7187fb9d3654b908c9789be5288004b8665fd56

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39304dd9800065c09fa440983ac75cf444469b159959171c0e0d761b3e854d62
MD5 1afac0bcd219710a5bb581432cd2e054
BLAKE2b-256 ffc96f12f115f672627f7cc9cc10201b6ae2e59f1907b30f38cf48e120108942

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dc17227717aa254b63c90161d8de4ec672ca5bd8e5c92effba2a8510498ee355
MD5 ccc748a23098a26ab93d641f18085f03
BLAKE2b-256 3a18d495cb375546ea29f74224854e605daa08a3e438530aa0d311ad11699833

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 024ce6408ea00c7f8c6387a6de65bb67aad40c51c9d63705303c5cb9a8ef51b0
MD5 66dc3a2a7eadcbdb7fef60b958f19a5a
BLAKE2b-256 156e97039de4f188ae3c69b5de9c852b4c5c5252896d2bc3d9ed1af93655ba1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cc7e449aec9a313bc037ef5ea45fb0ac99135d92dace8421d68414d16be39543
MD5 2474bd55d609ee7c36c72d7bb0e7afab
BLAKE2b-256 55f4a613999ef17bf8252d4e6a62609b9d16a932e1cfd56f9c682e5dd82d91ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a237491463e351755f0167546f6a821d42971c5275a219a62d468f19f654138b
MD5 7027640735ab13e66b4f3045a7109464
BLAKE2b-256 788cb31440943778f8c6a63dc568df5d0d3b4a58c9472784416474e71d04eca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a8a2bf3eb3486a0992176b77ac1d38ca9c669623941fdb8d3dddacb44dfd28e
MD5 4cead38dfb90a2874e6e864510acb94f
BLAKE2b-256 966e3e09ebd5635e1c6a2b92baee5d593a907908ce1b38fb1f011dbb0d66c411

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 111d817b32755d869e5ed6cc258b55c50c6687f47b78f6ebb2c14b1ce5ee707c
MD5 9d7c7d2f92cf1b35413ffb1cf70d85f1
BLAKE2b-256 124860048a3558f591fbaf11a73b342262699178cf44dd6fb88827118be34335

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f765cb6cbef82b5d98c46936a1385e87fb05919433fbc6b953e3c093ac30f8ef
MD5 08ad87c9e80967b92a7e39758b50ad5e
BLAKE2b-256 7d5fb039865cf4e2fa82c8defc737c37af4480e70a56d1e1c380865b3df89f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce120d4077050352f344b987354be3e3fddb207436b537cf91a891837657ce2c
MD5 abeff41460832f67ed4a8e6ff0d8cb33
BLAKE2b-256 29f880f9ddf288c494b3a7b737bff3b938ef70328c49aaf0a90738aa90b638b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f42f257404e749d9048d3b3b97004692210057d38e03c2f156817258bf6daf2b
MD5 f501fd6fe1a661217665ed511977d343
BLAKE2b-256 a55aebe53a3cd1edf5f8cb4b9465ae2383b0b4f6a2c8bd96afa0408f682df4bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 770cc0581fc06c0723cb1488dc1d1da0570801168da786674626f342d903ed37
MD5 1c88b31267d69add1ec3ddecc3aa4264
BLAKE2b-256 36552fd66419866455289c090cd177faf7d3ee360f36b2eea5e4c74b2c541a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5991c334e71c23b798c25e0d403295dde4d2d1fb58c2e075450b964db03c05ea
MD5 77a5f37ab81d79a5929351f0511d8153
BLAKE2b-256 4ec04122fa6c3670d504ad5a3094c9b512f0d0908f66cefeb8c8c3349f8c6a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2810fd2ce41f6a8dde62642dad0d11fd9db7cb6a1cd40b1c8b70a01586e6ff9f
MD5 79b18425785b6146725f977af8e5ae62
BLAKE2b-256 32ddeeaf28004591f0d282da809194d9f7bfb6a1c0626ca0d7d69e8b5436751f

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 397a80c4d09a6237eebaaee00a2e5f8732ff4cc165f94679b899f30179d38ea8
MD5 0b3243da7d9fc172af5916e367214db3
BLAKE2b-256 45168c9d9afed3afbfd585e876c330ec8dcff878a64bc99c108355c8b59ea954

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d0f63c3124d0a34a37e9b519d004cee1269744be07f91f843902e6c9f3e557a
MD5 ace96e43f54dcfff49735121b7bb4124
BLAKE2b-256 b99c3b5d64a72ac40cf584134c6639ac67f8f2d504eb081c91da3ad2ffae5c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2c46c35467d963a62dc0407c99d3a18562d4c85ee887a57e4a07dde020f1a38
MD5 7f05ed14539aacf18f30a4ade3e875ff
BLAKE2b-256 0e8c2b150ea6e9b667b710e7365328edfdd3c6729af4e48124baa80c4784c26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44a641085abbe3a09ea56a89f2e50b5f51aea6cf69213b70305fb48e341b883b
MD5 154b75ffae2eba669b0c8b013183a7c7
BLAKE2b-256 d21e247e43597b10576eccfed55af7999663f00ae934394acebef724cabdc1b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e045765035e9760f38637101f41a7c89d3b69659dcc70e716bb4011a95969ac9
MD5 1a98e23626a1087170c35db4fcd4c0e9
BLAKE2b-256 60b233e8e4cac876090c5d8b4016b23ca2647f66c2a87c518ea010047e78ee1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 15.7 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 97bb04bd81a3690c45dfd62d4bd19584aa544bb955c8b497fb488256d10ac54c
MD5 d55d6fe8951f53fdca8d87786c07282a
BLAKE2b-256 8cc5fd293e3baf1c6f3cf2dc844c87074b81a189faa7d7fa5ec3960d53e56ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e89bebe168ec8714b21f0225950f0525d0ef87109cfcb11e5d18ebb1f4e658a
MD5 7d8f7ac79ed4048a192d5d5374a9de36
BLAKE2b-256 02e025ffc146d6784613a6283e2ae38252fdbbd84ebbf373f2dad379fe9dac2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e67052bebdeba53847d3d09058f814708d587c4fb2216c65239964a341da2280
MD5 03cab0457cff738390aea8774b4829cf
BLAKE2b-256 7f44433cec1610c82f677374a8fc2db3ee2618fd06c16f5bbf13aea6d2796292

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccd74917536fa82896f31c66db5f230301ec2662b7ad3c0d8c3eb790b0fc6121
MD5 ad08a1e481d0cf5c6675ddac1530cd48
BLAKE2b-256 0046bf8e69d1bcc35a4bd798ad82e2496290aa7f6b98a47cb2c9b1375e04353d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc4e59799dcb0eb4823e5946515d3ca0d503ff78ef2502172d4b59ee0fc567ec
MD5 9f05e39c448a377e0a1e04ab9d19f425
BLAKE2b-256 103e39e910b91b9a6cae61dbde9e42196c37388ba4f2d3abb88ebf1e9e4a303e

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e91c4f9a320d964a27ffae1b62e37bb6e8c391aa837890a082d82bd9a89ed43
MD5 6f4c4ca1bcd1fecc9eb432a585c11fce
BLAKE2b-256 bb8d13ac8597d0907eb306e4afe0214648f72ee3b8643cdb85f79054d73f7400

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb07d4b8255be6b6ff3a34ada93173176d0937d2023b35302a34eed3364681c0
MD5 ad7ac2c3c2ee82bc0732200a3b52c8d9
BLAKE2b-256 f482d1696b985a8eba24565b8273257968f4c69b69f3f3908a8f8a89f6632956

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc5a850ba2ce371ac13893ef4153a7f3cf0d7fee8ca4ddea21fac2d2628d7ea0
MD5 495ad8dc6055079a22f51042700bd9f6
BLAKE2b-256 a5e392254f9eaade465592672dcc696362024c24b266ad3c418c6de0b8ffb8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.16-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for spacy-3.8.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81fe468596678c7bf717650b12352c8e4d174c72d050dcc01c8ee3c6c781ccad
MD5 1e2c6c4784e9c23539910bbb6de06071
BLAKE2b-256 d10cedc60bf4d5cd1103fa9639316e5a70999174ad53a5c8f479f598da1b4872

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49fe8d6a6cf343777caf59a3d4ba76f81cee0dfc1abe78be571cdc2db0d77672
MD5 d739e8056404ba281bcfe14df67e3994
BLAKE2b-256 bf1792e5b56d697e3a62f2d9edc8374ce6d016ad2ed40305217659d1fe570f58

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a1523ce0a1358936fa1abdc3a43f2ec558d4166ac5c2f246b33fd88e3f238aa
MD5 6172aed9e38c1580e877a921ab0767d2
BLAKE2b-256 4e973ed2dcc002e15b82611555d20f5fb6c3da8c1710321ab464fdfaf5a0dc97

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f08555e5204da7d9c3f8440d9d88dc3011edcfc1fd21689069091da1973c883b
MD5 8a6853f4dbdbf8b8f797423423ffca1c
BLAKE2b-256 3edebd2bb6a49e3859f5e4fa569f79f674042a340a57cc0a47448ed8a5354865

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8681eb07f6b0e48fb3ba4a5f7f2582c0fc6df991d240b431b628131029c4ade3
MD5 e2d2e57a95a20a7634bedc7e5c1ec997
BLAKE2b-256 e3d1ca928dde89792ba589c973d7c120ec791ccbd18d539edb3d05dc738ab4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b022ebde7465334c0631f74e0cd21dff257ee5f80ca68918c56fd64681b49463
MD5 1d6f16b5993da1ad9e73f80c3f571e10
BLAKE2b-256 db097eece818622dee4a2e0944aa1ee1275c25da6ef151d3a243c378a9097521

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spacy-3.8.16-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.16-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32fe82bfbe6711a4687e427c8eec44af7cd5e09322a252b35bc8166aa84b9025
MD5 91140473405ab27ff87265a9cb7d55fb
BLAKE2b-256 b8e8bc1a6f836dd1a18011c8fc14d9887b962dc2ba0117938d9bb1cba8e3f3da

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.16-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on explosion/wheelmonger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

4.0.0.dev2

26 files

4.0.0.dev1

21 files

This release

3.8.16 This release

40 files

3.8.15

30 files

3.8.14

30 files

3.8.13

40 files

3.8.12

40 files

3.8.11

40 files

3.8.10

36 files

3.8.9

29 files

3.8.8

29 files

3.8.7

36 files

3.8.6

29 files

3.8.5

29 files

3.8.4

15 files

3.8.3

21 files

3.8.2

21 files

3.8.1

15 files

3.8.0

21 files

3.7.6

17 files

3.7.5

30 files

3.7.4

30 files

3.7.3

30 files

3.7.2

30 files

3.7.1

30 files

3.7.0

30 files

3.6.1

28 files

3.6.0

28 files

3.6.0.dev0

28 files

3.5.4

28 files

3.5.3

28 files

3.5.2

28 files

3.5.1

28 files

3.5.0

28 files

3.4.4

28 files

3.4.3

28 files

3.4.2

28 files

3.4.1

24 files

3.4.0

24 files

3.3.3

23 files

3.3.2

23 files

3.3.1

24 files

3.3.0

19 files

3.2.6

23 files

3.2.5

22 files

3.2.4

21 files

3.2.3

16 files

3.2.2

16 files

3.2.1

16 files

3.2.0

16 files

3.1.7

22 files

3.1.6

21 files

3.1.5

16 files

3.1.4

16 files

3.1.3

13 files

3.1.2

13 files

3.1.1

13 files

3.1.0

13 files

3.0.9

23 files

3.0.8

16 files

3.0.7

13 files

3.0.6

13 files

3.0.5

13 files

3.0.4

13 files

3.0.3

13 files

3.0.2

13 files

3.0.1

13 files

3.0.0

13 files

2.3.9

28 files

2.3.8

28 files

2.3.7

13 files

2.3.6

13 files

2.3.5

13 files

2.3.4

13 files

2.3.3

13 files

2.3.2

10 files

2.3.1

10 files

2.3.0

10 files

2.2.4

10 files

2.2.3

12 files

2.2.2

13 files

2.2.1

10 files

2.2.0

10 files

2.1.9

10 files

2.1.8

10 files

2.1.7

10 files

2.1.6

10 files

2.1.5

10 files

2.1.4

10 files

2.1.3

9 files

2.1.2

8 files

2.1.1

9 files

2.1.0

10 files

2.0.18

14 files

2.0.17

1 file

2.0.16

23 files

2.0.15

23 files

2.0.13

23 files

2.0.12

1 file

2.0.11

1 file

2.0.10

1 file

2.0.9

1 file

2.0.8

1 file

2.0.7

1 file

2.0.6

1 file

2.0.5

1 file

2.0.4

1 file

2.0.3

1 file

2.0.2

1 file

2.0.1

1 file

2.0.0

1 file

1.10.1

1 file

1.10.0

1 file

1.9.0

1 file

1.8.2

1 file

1.8.1

1 file

1.8.0

1 file

1.7.5

1 file

1.7.3

1 file

1.7.2

1 file

1.7.1

1 file

1.7.0

1 file

1.6.0

1 file

1.5.1

1 file

1.5.0

1 file

1.4.0

1 file

1.3.0

1 file

1.2.0

1 file

1.1.3

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.5

1 file

1.0.4

1 file

1.0.3

1 file

1.0.2

1 file

1.0.1

1 file

0.101.0

8 files

0.100.7

11 files

0.100.6

11 files

0.100.5

1 file

0.100.4

1 file

0.100.3

1 file

0.100.2

1 file

0.100.1

1 file

0.100.0

1 file

0.99

1 file

0.98

1 file

0.97

1 file

0.96

0.95

1 file

0.94

1 file

0.93

1 file

0.92

1 file

0.91

1 file

0.90

1 file

0.89

1 file

0.88

1 file

0.87

1 file

0.86

1 file

0.85

1 file

0.84

1 file

0.83

1 file

0.82

1 file

0.81

1 file

0.80

1 file

0.70

1 file

0.68

1 file

0.67

1 file

0.65

1 file

0.64

1 file

0.63

1 file

0.62

1 file

0.61

1 file

0.60

1 file

0.52

1 file

0.51

1 file

0.50

0.40

1 file

0.33

1 file

0.32

1 file

0.31

1 file

0.30

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page