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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

spacy-3.8.15-cp313-cp313-win_amd64.whl (14.3 MB view details)

Uploaded CPython 3.13Windows x86-64

spacy-3.8.15-cp313-cp313-musllinux_1_2_x86_64.whl (32.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

spacy-3.8.15-cp313-cp313-musllinux_1_2_aarch64.whl (31.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

spacy-3.8.15-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (32.3 MB view details)

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

spacy-3.8.15-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (31.8 MB view details)

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

spacy-3.8.15-cp313-cp313-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

spacy-3.8.15-cp313-cp313-macosx_10_13_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

spacy-3.8.15-cp312-cp312-win_arm64.whl (13.7 MB view details)

Uploaded CPython 3.12Windows ARM64

spacy-3.8.15-cp312-cp312-win_amd64.whl (14.3 MB view details)

Uploaded CPython 3.12Windows x86-64

spacy-3.8.15-cp312-cp312-musllinux_1_2_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

spacy-3.8.15-cp312-cp312-musllinux_1_2_aarch64.whl (32.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

spacy-3.8.15-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (32.7 MB view details)

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

spacy-3.8.15-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (32.2 MB view details)

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

spacy-3.8.15-cp312-cp312-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

spacy-3.8.15-cp312-cp312-macosx_10_13_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

spacy-3.8.15-cp311-cp311-win_arm64.whl (14.8 MB view details)

Uploaded CPython 3.11Windows ARM64

spacy-3.8.15-cp311-cp311-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.8.15-cp311-cp311-musllinux_1_2_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

spacy-3.8.15-cp311-cp311-musllinux_1_2_aarch64.whl (32.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

spacy-3.8.15-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (32.4 MB view details)

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

spacy-3.8.15-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (32.0 MB view details)

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

spacy-3.8.15-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-3.8.15-cp311-cp311-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.8.15-cp310-cp310-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.8.15-cp310-cp310-musllinux_1_2_x86_64.whl (32.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

spacy-3.8.15-cp310-cp310-musllinux_1_2_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

spacy-3.8.15-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (31.2 MB view details)

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

spacy-3.8.15-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (30.8 MB view details)

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

spacy-3.8.15-cp310-cp310-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.8.15-cp310-cp310-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-3.8.15-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.3 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.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aaa70356876c152f0235ff5bc4869f7a45133392ff73aa881113376f7eec0caa
MD5 62cc76dd0863a66c3ecc4b8a0e65e34e
BLAKE2b-256 73a1dae0084ba86cdc786585184d4f3400129031dfc6cfbf2df4086dd083d59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1aaf79b42c0e8c5dd4801b474c22a61fc68edb347fd3a6e09d5cba7e1aed5db
MD5 0c6693aa1039c108fd0ed09b9fd6ea65
BLAKE2b-256 70f42f56347442608ef75877b4d90f582a01e3ccd44742eb13391e1c8097a5ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37f370f579c1bb56aa767e6d585672133f37e89c1181ebbd251fd946777f0ef5
MD5 54f6f74019aab745b4d21cc1745b6b78
BLAKE2b-256 2a92bcea83328ffa9659e417a6bddc0b85ceafd863da0c6a896bbce6ff619335

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce66d75279ee84b749eea058ff3ea79a31adf0ff53f887943dced258ceb6ce2a
MD5 be55828686402156c89536bc50aee1e3
BLAKE2b-256 026f2169d692c0502f73e64aa7bbc3cba14a26af85c4b648ed153083ecdce45d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b27d0abf1138644837536705578dc1ea48a693796b283a49202e1dbde0a3b02
MD5 707daa3bc81a88df9386e1616492d87c
BLAKE2b-256 75739241e095491abdf83ef02fe7b49c50a431fe55b11ad56ba92e56b90e3c59

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8b187654941e417c4cc0378ed7860bf6aad7bbbc370b925994a9cebeb8ca615
MD5 4a6b4a748852fdc090ec6c30b171dc5c
BLAKE2b-256 62af45038bc57767f8998e357b3be311e904daab119050dceb03cc937ee2ba54

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c9683078efb96dee8b1a751bc0bfa9271a6604b7257547849b4254f285ce77d9
MD5 6771eca877a45ffe0d5c840c8b55848f
BLAKE2b-256 88af32b21b02062122e3fd14d3660e7c322c2c6306bdce4991fa35e41fcc7c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.15-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 13.7 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.15-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 35060be85c952df84e9095713ba05f8515473e127ad0c6b43cd22a1b42d4cdbc
MD5 804ec1de44e3f623763c4ac5289c19c3
BLAKE2b-256 dc9732025f9065ef4db7af5aeb4cd560db62c7e3440e2bc9003f91f2493cc804

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.15-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.3 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.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ad71e9ce6c4e1b984a91bc82b2e4e08df23581f5cc670bbacf29a07a9822d5a
MD5 eb8cf7b31f95823137e8d9e2c7c471a1
BLAKE2b-256 2506994516301ca55c800be99c5c1daadf669d3f62ad3b4d5053619a4bde33b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb0782680cf930e9ab984a73b2078c981343f77c5c407773c704cbf8c7df13c0
MD5 98cad7f8cf7d8684074c099ea7e9d3ef
BLAKE2b-256 9ad79ac6e8b10cb293644ad80f148f33471afc26d5e28d07fded716c2b2eecd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4031de613e8ba666392fef107a06b5144270f0f64b6a61df37faf6a329d61b5a
MD5 a8b1923d0d49633746894976e3f267ef
BLAKE2b-256 2cd5be9c21d4d454b6f83c8bf876c063431172e36d52eac89cdf534259371778

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa9df68fc8887c0a6440b84d1d307980e594d99b45f19a37d733e58caa9a6682
MD5 d79ee5ccfe7560fe057c3d15f3ddd6e1
BLAKE2b-256 493d88004d9518c912c30140e47f930abcbc9e7240d4c2aebe52c05b7f70df79

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4527b7824e8228f2abed18774b224de7aad9b900d47ff66483abdf16d0c8a5e
MD5 0a0b258f6a3afb47d7afaf7441749338
BLAKE2b-256 777e36f41f0bc4d2f40f4427a0ff3dd7afc4b185e7aac9a29c17a693faf490fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39ac175bbf8a8381c41b8e0abbdede3ff29d1f29f3cac42644f5719671e20884
MD5 166ff80fdaf8c771fa20be33d9d94130
BLAKE2b-256 2b8c5276816f217a1e479bc249c1b8d7be3eb11adc571e3e327950527475894f

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b22d269dfa6aa3c6a000e576b261bee46c277afaf915a3fe1e0a81ad227ee7e
MD5 d2f9d722ca539bd6892d49bad2c4305a
BLAKE2b-256 f2e4f206fbca55637ebf16c7183f96ade8365c0d8bb9307fdc0e0a74a25532ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.15-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 14.8 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.15-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f1c0f054365fdfd95cfe96acbb4c5c1dbefb787905e4e63013eda54d3c815050
MD5 66f84c6c96b174c7625da1748dac5e81
BLAKE2b-256 296c28284f63bcbdf4548ab819485aeb71b0266b10a268f8f0a64fdb51586737

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.15-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.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.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59c1ad50c8d0afe8397a06e28f39f3cebced0cdf53b14607dfca44c9822d7650
MD5 da5e38ea663b73c8b5bbadebd3665f0b
BLAKE2b-256 81ec50311c73af3b727e860eb41558d981d4aa42eccec0aceeb962385dc8c23b

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5714a76826756cea2257d35524233ebe49c6f70b6510b224e46036a4a341a79
MD5 6dfcc7909dacd3a0964bb6cf790f012e
BLAKE2b-256 6006001d58dfda0227a8136f84e6895fcaa60a239b7f44bdb0b2a32678ac27be

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8397a6e76b85d7a1d42b2654ed0bbad053e9100b80f41efcf608a8cf02df76f6
MD5 06e7ea7061e0ebf17184f70efd2c0e1b
BLAKE2b-256 00bf88ed200ad77ae627003e06f3b26623a00112e6ad4d0a0d622115244dee94

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5806db3034618ef426e360dd8519283dc08f5be1690ce5bc3bb2c628f86215f
MD5 37ff8890a95a9a145fdce36ad734d7e3
BLAKE2b-256 8b4a932a9c75f0a9c5e1da26b74413ae6df73562fa35a208943a01f0b3c4ac54

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d41166f5f763ff3a3e085d4314b6cf34cf1cd2bf0845aaafa1acc266e9a46ef7
MD5 8650ed44fa530cb40a93d46fdac5d12c
BLAKE2b-256 c4c99b3b4af9a2b498fc6446401d57aecd19165f47dda6783814c3c4a8b772ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9279132fee6e131b295f5336b8f9e46c16e5ec430e6c58a56fc9ef134cc1f5a
MD5 b3c5a184f1aec2a1b2abf6a5040229da
BLAKE2b-256 254ecfe626be80ae3dfa6b31b68bffbe3c68b605bbb9fcdcd91c9c0c7a296109

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cbd33b0801ed0fed71454cdfaefbabb18b1b854471f7683c5df2f78be00e8cc
MD5 fc59df13c9512170bf817e8bfe2f161e
BLAKE2b-256 6e138582a125db39c5d80d35ec63b3a2ac3bc69e9122412aa4ddc53812297c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.15-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.3 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.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7863c35506ec6f7e3fc13836330a4badd723514b9dc067ed79a8b0c593b824b4
MD5 42190fe9ea618dbbf8cbcb8ca8e8eada
BLAKE2b-256 1a05e569bf68ee0752bb9b3c7687e4cf7f2e177606be2dadc124f84d2886d5eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81ca434f0a08062fe5d5fd05858196b3c007c755d8b54e2019c071949a93eefe
MD5 abc765be212dfd901b952fcecc8fb488
BLAKE2b-256 f48f1d0948391944b4cfb098babd7db9f085d7225ca5e95d159ee0cc23ee66c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f04bc083600ff688fe500a736dd4d8ac3d06527f7808c2d7932d4174d8f3b751
MD5 3bae08a3820e4a71149993d0ba4642ab
BLAKE2b-256 7169a4c2a6f3cfb698a49484247ba012ac9f4349d2f47a8d23755d75e619e4bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7ca79280762f1de0a7a5c1ce8ccfe1f54b772e8761ea7d9408e535427592749
MD5 e5bb8a9b281520c227ea16401780dee9
BLAKE2b-256 ff2a5f2ffb165ba17a43c4b5c1d24cb16182d4bce51fc2faefda6f432ac8343e

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff1a616862d6c07a9e7ae13b911005f89c064ce884ec31784f8032adb3f86829
MD5 cf06796d40330c4dab573ad28d7dfe57
BLAKE2b-256 6e8582111e6832f89c0a93ba1927583b7a8baf6ebbdbc49efa946d10894de16b

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0262f86956e751ace6e47e530cf9841d66f2354d8cd91cfeeb39eee4c5f2962f
MD5 ba07aa4b98150ccc114befdda9819fdc
BLAKE2b-256 a5fd24d36eea7e72a8ce62c342cffb3c70e9b7a0bf4ad36492e15d69cf2b92b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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.15-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c8a27500b409b472a743c2b0b2af2dff42f4287ace36f2b776e4592d65ab493
MD5 a30947ebf25ddb30a1d601056b9eeb00
BLAKE2b-256 799ff216b6aebe5a67bcd575c608586fd4375b443ca73a90ddf147f110854497

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.15-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

Supported by

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