Skip to main content

Industrial-strength Natural Language Processing (NLP) in Python

Project description

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, live every week.
🛠 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

Project details


Release history Release notifications | RSS feed

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.7.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

spacy-3.8.7-cp313-cp313-win_amd64.whl (13.9 MB view details)

Uploaded CPython 3.13Windows x86-64

spacy-3.8.7-cp313-cp313-musllinux_1_2_x86_64.whl (32.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

spacy-3.8.7-cp313-cp313-musllinux_1_2_aarch64.whl (31.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

spacy-3.8.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

spacy-3.8.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

spacy-3.8.7-cp313-cp313-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

spacy-3.8.7-cp312-cp312-win_amd64.whl (13.9 MB view details)

Uploaded CPython 3.12Windows x86-64

spacy-3.8.7-cp312-cp312-musllinux_1_2_x86_64.whl (33.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

spacy-3.8.7-cp312-cp312-musllinux_1_2_aarch64.whl (31.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

spacy-3.8.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

spacy-3.8.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

spacy-3.8.7-cp312-cp312-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

spacy-3.8.7-cp311-cp311-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.8.7-cp311-cp311-musllinux_1_2_x86_64.whl (32.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

spacy-3.8.7-cp311-cp311-musllinux_1_2_aarch64.whl (31.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

spacy-3.8.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.8.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy-3.8.7-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.8.7-cp310-cp310-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.8.7-cp310-cp310-musllinux_1_2_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

spacy-3.8.7-cp310-cp310-musllinux_1_2_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

spacy-3.8.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.8.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.8.7-cp310-cp310-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.8.7-cp310-cp310-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.8.7-cp39-cp39-win_amd64.whl (14.9 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.8.7-cp39-cp39-musllinux_1_2_x86_64.whl (31.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

spacy-3.8.7-cp39-cp39-musllinux_1_2_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

spacy-3.8.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.8.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.8.7-cp39-cp39-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.8.7-cp39-cp39-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.8.7.tar.gz
Algorithm Hash digest
SHA256 700fd174c6c552276be142c48e70bb53cae24c4dd86003c4432af9cb93e4c908
MD5 2a3a0163c10468a5e436511850ddd854
BLAKE2b-256 1e9efb4e1cefe3fbd51ea6a243e5a3d2bc629baa9a28930bf4be6fe5672fa1ca

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for spacy-3.8.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ca81e416ff35209769e8b5dd5d13acc52e4f57dd9d028364bccbbe157c2ae86b
MD5 58725e5c871cc717269a0edb1613e230
BLAKE2b-256 0299881f6f24c279a5a70b8d69aaf8266fd411a0a58fd1c8848112aaa348f6f6

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccfe468cbb370888153df145ce3693af8e54dae551940df49057258081b2112f
MD5 7ea9dbbe708cdfb41732ecf872f69a40
BLAKE2b-256 9cdf80524f99822eb96c9649200042ec5912357eec100cf0cd678a2e9ef0ecb3

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86b6a6ad23ca5440ef9d29c2b1e3125e28722c927db612ae99e564d49202861c
MD5 f5f0da2fdc196de50c67248b8cb2a633
BLAKE2b-256 124512a198858f1f11c21844876e039ba90df59d550527c72996d418c1faf78d

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46330da2eb357d6979f40ea8fc16ee5776ee75cd0c70aac2a4ea10c80364b8f3
MD5 bfc5ec2001b0bdda648cd387f475622b
BLAKE2b-256 6598c4415cbb217ac0b502dbb3372136015c699dd16a0c47cd6d338cd15f4bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a2e58f92b684465777a7c1a65d5578b1dc36fe55c48d9964fb6d46cc9449768
MD5 7b963948141842ba1b9e7570688f1593
BLAKE2b-256 50b6b2943acfbfc4fc12642dac9feb571e712dd1569ab481db8f3daedee045fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de0e0bddb810ed05bce44bcb91460eabe52bc56323da398d2ca74288a906da35
MD5 662b8e6869853339a6041ebfb502e33d
BLAKE2b-256 96c3d2362846154d4d341136774831605df02d61f49ac637524a15f4f2794874

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dda7d57f42ec57c19fbef348095a9c82504e4777bca7b8db4b0d8318ba280fc7
MD5 592bec73f4871c3b2c7cf89c6e5e71c0
BLAKE2b-256 2a957125bea6d432c601478bf922f7a568762c8be425bbde5b66698260ab0358

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for spacy-3.8.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25d7a68e445200c9e9dc0044f8b7278ec0ef01ccc7cb5a95d1de2bd8e3ed6be2
MD5 2423246df30ac7ad62d66ecc23d79578
BLAKE2b-256 8c47c17ee61b51aa8497d8af0999224b4b62485111a55ec105a06886685b2c68

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5eef3f805a1c118d9b709a23e2d378f5f20da5a0d6258c9cfdc87c4cb234b4fc
MD5 001d0b9e4b93782c343dc328ef6fbf3f
BLAKE2b-256 2d556cf1aff8e5c01ee683e828f3ccd9282d2aff7ca1143a9349ee3d0c1291ff

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dca25deba54f3eb5dcfbf63bf16e613e6c601da56f91c4a902d38533c098941
MD5 e62e96fa9ced84ba9aec88c37b3019cd
BLAKE2b-256 8fa31fb1a49dc6d982d96fffc30c3a31bb431526008eea72ac3773f6518720a6

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d83e006df66decccefa3872fa958b3756228fb216d83783595444cf42ca10c
MD5 23d1e1fe36718cc254e4fd8ac4a73d5c
BLAKE2b-256 f919b60e1ebf4985ee2b33d85705b89a5024942b65dad04dbdc3fb46f168b410

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c4b5a624797ade30c25b5b69daa35a93ee24bcc56bd79b0884b2565f76f35d6
MD5 4f4a3f66956bba83e8a06539d0052e71
BLAKE2b-256 3a0370f06753fd65081404ade30408535eb69f627a36ffce2107116d1aa16239

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f70b676955fa6959347ca86ed6edd8ff0d6eb2ba20561fdfec76924bd3e540f9
MD5 a57a6404a44d0c6ed94d67de9a5bff6f
BLAKE2b-256 16fbb5d54522969a632c06f4af354763467553b66d5bf0671ac39f3cceb3fd54

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 88b397e37793cea51df298e6c651a763e49877a25bead5ba349761531a456687
MD5 dbfa70a3e59515386757b087130af31c
BLAKE2b-256 a51089852f40f926e0902c11c34454493ba0d15530b322711e754b89a6d7dfe6

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for spacy-3.8.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e9d12e2eb7f36bc11dd9edae011032fe49ea100d63e83177290d3cbd80eaa650
MD5 44e02355456be4b64a76b32d9fd785d3
BLAKE2b-256 92e78176484801c67dcd814f141991fe0a3c9b5b4a3583ea30c2062e93d1aa6b

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4234189861e486d86f1269e50542d87e8a6391a1ee190652479cf1a793db115f
MD5 93ed9b989f0eeaf2bbc60352341587c5
BLAKE2b-256 c9b542df07eb837a923fbb42509864d5c7c2072d010de933dccdfb3c655b3a76

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c402bf5dcf345fd96d202378c54bc345219681e3531f911d99567d569328c45f
MD5 01b2afe06bd5eb55f2337c7699ebbeb9
BLAKE2b-256 39dd8e906ba378457107ab0394976ea9f7b12fdb2cad682ef1a2ccf473d61e5f

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e43bd70772751b8fc7a14f338d087a3d297195d43d171832923ef66204b23ab
MD5 7a7a94903af2f098ef3ea33cef8ac89e
BLAKE2b-256 0a0abb90e9aa0b3c527876627567d82517aabab08006ccf63796c33b0242254d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dc38b78d48b9c2a80a3eea95f776304993f63fc307f07cdd104441442f92f1e
MD5 e06d9223147d4ae973e0c46e3a508fd6
BLAKE2b-256 6f832ea68c18e2b1b9a6f6b30ef63eb9d07e979626b9595acfdb5394f18923c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9194b7cf015ed9b4450ffb162da49c8a9305e76b468de036b0948abdfc748a37
MD5 c917c1a3f555bc55c8c1ce54be32a8e5
BLAKE2b-256 032a43afac516eb82409ca47d7206f982beaf265d2ba06a72ca07cf06b290c20

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdff8b9b556468a6dd527af17f0ddf9fb0b0bee92ee7703339ddf542361cff98
MD5 d6685100f96410195306f71f1621f9ca
BLAKE2b-256 29c55fbb3a4e694d4855a5bab87af9664377c48b89691f180ad3cde4faeaf35c

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for spacy-3.8.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0df50d69e6691e97eae228733b321971607dbbb799e59d8470f2e70b8b27a8e
MD5 96b41332c5ebc62cd02e7a8d2adf3436
BLAKE2b-256 53a63086859d2bfb5b6f97b17e19f51da0983eb11b07f63c24dced6506cdb370

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb98f85d467963d17c7c660884069ba948bde71c07280c91ee3235e554375308
MD5 35390e78fa4349bf077f372bda41dd4d
BLAKE2b-256 7a74f4708260fc135f8de15eb1d0ecfe00fd7b53f4b1d4927f90a33d48dff637

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1456245a4ed04bc882db2d89a27ca1b6dc0b947b643bedaeaa5da11d9f7e22ec
MD5 c8493c6ed3ae9942c2c32e66ef121ae9
BLAKE2b-256 b2fa5fd95749f390478a31a806500e829c5a8d97312ea18129494d255e231c00

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9cac8e58fb92fb1c5e06328039595fa6589a9d1403681266f8f5e454d15319c
MD5 45b42bfd84e41bb953020f1af4b08bbb
BLAKE2b-256 bbe7bd1df17add98a5ec3e0d2dd73d4e5884683ffd2e34d3c0e5828f48933787

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60cde9fe8b15be04eb1e634c353d9c160187115d825b368cc1975452dd54f264
MD5 91d15e0c2afa6000ac69c8f116c9450e
BLAKE2b-256 39fee8b5a374f2517716f510f0dd6a0b68e88637e66db7c315d4002ba80b2bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5672f8a0fe7a3847e925544890be60015fbf48a60a838803425f82e849dd4f18
MD5 733bb180075dc9b46fd9bd1371d88eb0
BLAKE2b-256 39a9c1fdecc11d8855b3df601bbfb5fc4cdb98d79b6a5d166af974354ea658eb

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ec0368ce96cd775fb14906f04b771c912ea8393ba30f8b35f9c4dc47a420b8e
MD5 dc6079025d2d9c7bb14fde2863223503
BLAKE2b-256 292cbbba614290492c169ee50777e44d3e4325a1e646272379988de8749b9dd4

See more details on using hashes here.

Provenance

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

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 14.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for spacy-3.8.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8bfa987aee76cd710197a02ec7a94663b83387c8707f542c11b3f721278cb4e1
MD5 b004de121bb36b45eb02a5096c91c9a3
BLAKE2b-256 539a3f6458c64fe5b4b9e094f260b937fb413d176c8579e4dd8a31f01cbbd053

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp39-cp39-win_amd64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cc95942a233d70238b201f7429f7cd8fdd7802e29ccb629da20fe82699959b5
MD5 cdd86676e13120f95d0c08b09a5476ac
BLAKE2b-256 2e4094a55de259fac60cd51c7e6f7ea961f890844bcbe1ca83d5d3258ba14648

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f90d3a2b64323f89ef2cdfe3e4045dc63595ab7487d2ca3ea033aa69e25abf08
MD5 bae5f92abd09c849070c29bb1044cd0c
BLAKE2b-256 1db2dc3a7cc3640138ff27ef618b34c43102a255759b0c24179d2029b23d7222

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1406fde475900c8340c917c71b2e3e8077a027ce9b4d373315cee9dc37322eb
MD5 4b88d69f88e99a7e652f06f62865f541
BLAKE2b-256 49343a500af78444426b83d9045e5f11b94e0a7249323c843fc26d653c6c888c

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdb15e6d22655479fdd55bf35b39459a753d68ba3fa5c339c8293925a9cd9012
MD5 7edb49c9c6e4ddc3a07c499f44868a5d
BLAKE2b-256 9c11b526877b40e02e872986ce020632975b5ede930ba3d723997618e2d16885

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: spacy-3.8.7-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for spacy-3.8.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdff9526d3f79914c6eae8eb40af440f0085be122264df2ada0f2ba294be2b42
MD5 261e296eb6ca9133d1b8eb162aff78aa
BLAKE2b-256 299977f46998d662d74891f0ccbdd2623b727f23eac3d8550f6692fc4b75e1f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be17d50eeade1cfdd743f532d594d2bb21da5788abfde61a7ed47b347d6e5b02
MD5 fab4a5c3190e56cae294e63380663525
BLAKE2b-256 d15b9f021f4ca257f50954b3371fa458611b4262711816bf9b341498603c055a

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.7-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish_pypi.yml on explosion/spaCy

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

Supported by

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