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.13.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.13-cp314-cp314-win_arm64.whl (13.8 MB view details)

Uploaded CPython 3.14Windows ARM64

spacy-3.8.13-cp314-cp314-win_amd64.whl (14.4 MB view details)

Uploaded CPython 3.14Windows x86-64

spacy-3.8.13-cp314-cp314-musllinux_1_2_x86_64.whl (32.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

spacy-3.8.13-cp314-cp314-musllinux_1_2_aarch64.whl (31.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

spacy-3.8.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

spacy-3.8.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (32.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

spacy-3.8.13-cp314-cp314-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

spacy-3.8.13-cp314-cp314-macosx_10_15_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

spacy-3.8.13-cp313-cp313-win_arm64.whl (13.6 MB view details)

Uploaded CPython 3.13Windows ARM64

spacy-3.8.13-cp313-cp313-win_amd64.whl (14.2 MB view details)

Uploaded CPython 3.13Windows x86-64

spacy-3.8.13-cp313-cp313-musllinux_1_2_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

spacy-3.8.13-cp313-cp313-musllinux_1_2_aarch64.whl (31.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

spacy-3.8.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

spacy-3.8.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (32.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

spacy-3.8.13-cp313-cp313-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

spacy-3.8.13-cp312-cp312-win_arm64.whl (13.6 MB view details)

Uploaded CPython 3.12Windows ARM64

spacy-3.8.13-cp312-cp312-win_amd64.whl (14.2 MB view details)

Uploaded CPython 3.12Windows x86-64

spacy-3.8.13-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.13-cp312-cp312-musllinux_1_2_aarch64.whl (32.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

spacy-3.8.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

spacy-3.8.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (32.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

spacy-3.8.13-cp312-cp312-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

spacy-3.8.13-cp312-cp312-macosx_10_13_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

spacy-3.8.13-cp311-cp311-win_arm64.whl (14.7 MB view details)

Uploaded CPython 3.11Windows ARM64

spacy-3.8.13-cp311-cp311-win_amd64.whl (15.4 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.8.13-cp311-cp311-musllinux_1_2_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

spacy-3.8.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.8.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (32.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-3.8.13-cp311-cp311-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.8.13-cp310-cp310-win_amd64.whl (15.4 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.8.13-cp310-cp310-musllinux_1_2_x86_64.whl (31.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

spacy-3.8.13-cp310-cp310-musllinux_1_2_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

spacy-3.8.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.8.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.8.13-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-3.8.13.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.13.tar.gz
Algorithm Hash digest
SHA256 eb7c03c2bb16593c34d4c91974118f0931c6e6969dbfe895b1a026c6714176cf
MD5 e2405cf3c7eaac018605f0fcaed815c4
BLAKE2b-256 63d71924f32272f50d2f13275f16d6f869fcec47b2b676b64f91fa206bd30ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13.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.13-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.13-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 13.8 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.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b2a402f229fcb5dba5454c346468757bd3a5215809e784b85d739ca84916f05b
MD5 0c409981cb8e2308c3aa070bc5868b03
BLAKE2b-256 fa580001fd8124b62a2a9984278d793e3abfa1b70e969fc26a8668755178db84

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-win_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.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 14.4 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.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bf9b6879d70201acb73fc5f07d550ff488d3b5f15a959e9896717b2635c8e137
MD5 dc21534fb67023c2fa6869ae3a5edeb3
BLAKE2b-256 f25c9b0fa420b01809c0170b3cf0bf509ec06b4da96214995360815615b8e8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-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.13-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbcb411b9749a1cd5e4325953212b3984d8c0f60b4976943e77fb0c7d5027383
MD5 62a53fff086fa7fbee28d0811862cfe3
BLAKE2b-256 03c4b4c39083df6209414faec7d7471994316dc6fca68c4d2f1f8f099f25c2e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-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.13-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86f58d686d1ba6f0dc818005ee6ad87ade8dde7224012f1870a0d31abccd349e
MD5 fda98eabcc730e1c35770a075f25671c
BLAKE2b-256 710115ceb2097a817c2912297eac29f801bd71d895e93d7557110937c88f7c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-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.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ef884df658d3b60d91cbc1e9b62a6d932589d2fa3f322c3f739b6ffdf3303e0c
MD5 028d5b0f5bfdffedd03a12e8bb36ec3f
BLAKE2b-256 8073396c5c3aaef5004d04abbda4ec736ce4d33944aff6722e974cebdd4023fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_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.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0dc2d058cb919102bf0634b1b41aff64b867d9bab36bd35979ab658b5b2e4c27
MD5 e0c6850ff18786bab321b5759be31acc
BLAKE2b-256 edf39132878e0c18d627adffc1d23129a3706385d4f0fbe2ea5839523519452c

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_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.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8fd0188f78e032ac58f70a00748d591e244f3d4718e0ead2d9418b4148c744d
MD5 023cf8310becfc481036ee50b3138189
BLAKE2b-256 e787fa5e4eb2ccb660d5042eb9144134dc6238c132ec812131bb0aca296bcdd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-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.13-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 edcdd4f99e2711fc90c6ba3e8e07f7dc9753d111377ba7b7b5eb0d7259b0d211
MD5 de1d641bb15311b551bee39bfc0a2dbf
BLAKE2b-256 f202bf2943f61a8bd21cca90e4fe19c4da8752c386f02a76e326b33199e09953

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp314-cp314-macosx_10_15_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.13-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: spacy-3.8.13-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 13.6 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.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c086bff909d73be892b4eb6883070dd3e328592b8933f0059a6569c8c7904928
MD5 27741428afd1f5ed97975cbedb9b50ac
BLAKE2b-256 cae206633e779486f62b3ec7ddeeb4accc10fb9a356b59f5bed3771dfb89931b

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp313-cp313-win_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.13-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e679a8c5dd86c564a1185d894b1b8e50b52fa81bee518120fc2f86349d1879c
MD5 976e2857b00b06e6c1dce5140c3c61a9
BLAKE2b-256 d99711ed2a980e7225b0a1a4041cb1cba44f40bd83682a08e450dd6171f054e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 500f6eb9e4711e75fc07d517962dbfb553ba144ccf1b1e8ffc71b014c9ad91b2
MD5 e3558031eb2b4568228e5bd3cff95f1e
BLAKE2b-256 4ffab3a406bdc2636aaa315b8539b88f262e78ca391afc4083e3e9806953b24a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10fffb387e6afeba582e01efd9b5e0c5431ac323af134f4a71a749255182f4c8
MD5 fa9399bfc89b853b4283e881b62a9c12
BLAKE2b-256 3731b4a86cc013e4ac3c3c290ecade748c4623709a78db8a368ee0e152931c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-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.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 17b14f28d83fe85390f420f89760ae36d515f3e0a236f8266c46335549806e3a
MD5 86eaebcee05bbcdd8d748c8a7dceecc9
BLAKE2b-256 1937f2a0c986bc2d59b18547d5ffaabf57fd9d88e129ad7df5ebc9ccdc91e643

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_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.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a5f02eab8e6e8e9e790b1e8da05b70b3b1d4b1fb10dc4f44203da96939fdb977
MD5 591179326ed9fb8e76c91a7946ab389a
BLAKE2b-256 c036d13f36204290e7753ce849106fb732a1a1ff6c1af0a200f2c2f493a56e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_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.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c26258bfed2f3bf5563c5994ee752ea8662bbac70924d28fbea4d1c10df48fd0
MD5 ed01b070d219b4bb7825c257115f6526
BLAKE2b-256 1b276d723fa0c3c9872d7b8c3fb1c76edef65c1db2de441ee87d119128cb82f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6db8903cf3fd8b40db9dab669c1e823a8884100f223dc8ec63c3744ff505d5fd
MD5 7f3a0ed7c02eb7ab5325afb8e5024580
BLAKE2b-256 a72ddc15440fa58c12bab25cbd368bbf3b754eb11d1d3cc37f3aee47caa63695

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.13-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 13.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.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5d7f660f64c7d09778600b27b881a367075fe792cb5cc6932737aeda71a9aa09
MD5 b1a2b7a128db1f720b10f38a86f58c02
BLAKE2b-256 bea8a794d5bbf7bc2df6770df2b14cd6811420d0e10fe81830920bf0e891c19a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0c849b5c9cee5a930a5e8a63d0b07e095d4e3d371af6a70c496efa1d0851257
MD5 4e895e82f60f7ef2e8ab277df840a475
BLAKE2b-256 4117316dfdf5f8d1dd33a205e4f5e7190b67db73802180f7d08c8b306eb44375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 879f467578569db73b5811aa0f0b9a3b3fb81a125c2f7a433dd5626bcaca53f6
MD5 28869023e6c6a8f7b45fab06ac260fdd
BLAKE2b-256 4d20df5076a162bda36b04cdfa9cd544ac2be4b47aed957b3922e4c8f75dc25a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7402154eae9d2c34d097f3f7f2bf3ed4ce6ef9d44e3035af15ccc7f357d122cb
MD5 ab86dcf6d8ede32deb05dfc68018acf0
BLAKE2b-256 906bce94ba2a166add3376aa2c976cb1a34d6387e9dc61103cfbe9192675d0b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-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.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 32c16f5be8c8006197554da3647d83311fb89bb31bb417d38f0d1da585877b0d
MD5 3901b78af794842653799cf0da98d01a
BLAKE2b-256 bacfdcc0ea61270cb23a46d3efc437fe760e7a9c3cabcfaa770591329d1430f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_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.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 96a8e141fd7ff749fa6693c9c72187f802d334bcadf48b6b9d6ca9bff315ca73
MD5 62a44519e11171d2609cc99908615fdd
BLAKE2b-256 2ca89a33c69f772f5c32a57c9ef7e692293b558e7bad202264d5586ab087fd29

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_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.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eab059bc668336d0034f3f69aed6b661b626c174e97cc1b52296d0d923c24405
MD5 5ea3bd69f99f3507dc9167b28beaca93
BLAKE2b-256 31fe517de9e25a6ec469738c9e886c15cd96649b338c6ae475b9b3e4c4f5e03d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd8ab0deefe9d2c7dccce1be1e65660a32cfc3cc114d0aa222ff52ae11be58ba
MD5 e274f85b2e2b7318952fbab2b36f00cd
BLAKE2b-256 d8e1e8f6dc7fc00582b8dcbf40fac5bce6c0ff366cf6db212decdacfaf13e584

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.13-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 14.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.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 189bdd05cfd66fd3d1f79449d38ba4e2d0270743f762db1304617ccad9dd321c
MD5 73ad031c369a91ce436c92abbbba1b25
BLAKE2b-256 be7811896d5b5987cd37ae498ef1ce795e0dd551f984fffa9cf6a7887655617e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.4 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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 740cafd3cb2331c48057f6689ed6be5652d35db92aa2980f32f3d78a9aba6300
MD5 9f68d750a4d9854d2b18f1d2006efe4c
BLAKE2b-256 263d0bd7d780642635e662b32fcd530ed5bed1844dbf977bc5eed43efefa034c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf07faad25a301efbd90da1343c1f62e35185d064c5e087bd0d11a5a6b3358fe
MD5 e9264ac36f4c4f442ac402c4611e3514
BLAKE2b-256 c2be93eec7f8266a6d96fb5229d4588d64bb6dfa037604b5121a703cad35debb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53a6ff574a4505339375e31ba3280ff7235e82e120377614210750fa66cb63df
MD5 4601a6fd24467a86ed46e2e659a8e83d
BLAKE2b-256 9633624d0025097b6b26a2c6d1b3dd7e24dec5da495e8c2a0f379bcc3ec26d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-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.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b118c9ca4250cba8a39c7fc73641820086d476dafb54b5d1f306a3f60098d3cd
MD5 956b70ee2b20352a34c900a3c778690d
BLAKE2b-256 055b7de5aae98f0a4547b9e44fd41e3f5820c199d67c78148782a08df83d19a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_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.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 95c2bf7d0afbf699df89cca5431527dff4950a823fd093680618057aa2affff8
MD5 feebf1b2f30d225bcd496b2c6bb6c150
BLAKE2b-256 17641eeb854dc194dde91582eedf523d38c8caa209fce45c79b175e3e7a00b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_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.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c7d719ff171aad00a9aac31e7c7f6e1871be08b0be50c362885c632826d41ce
MD5 b425b373f4fe881a4dbc8c697aaee812
BLAKE2b-256 0c240da6c637b3d25a37db605f836e53226cae65f035e865d2909ddf66b89185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fb3ec2a78a72bb87ca1cc22ad9fea2d37a3d88ec68ee6b4a02c967f35c8b0cb
MD5 2f3b7b34af7de6d0a98eafccfaf333a6
BLAKE2b-256 4ca821f5b9c3998c7a9cdd28715248e489ebd9300b1d349d5220166b951c3df4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6f222f5a35f40ec9af2a6013bbc3b27d31b9d5e3833f7353ad38e48aebd06f6
MD5 ded9aeeb319121aa9e5a60010771a659
BLAKE2b-256 40119ef0cebe578f8120d20d06dd598e537177bb847e731e90e51fea2f143f54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17b63375efc76c44d26ced29a14a9cf0ee0db31aca088d6d8f699bb70b5feb7a
MD5 5351a468caeaf6688fe590adeefcc7f7
BLAKE2b-256 9e2c36e9c43fac2126700462e49e2e75fb740583de47962c8959cf6c5d24d400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 815ad97986b494f3e6957017d26e83a6f0d9e8c5b6656981d3cb7678b700d194
MD5 8ac2ee21a266ec20e6f10a071eb86f9f
BLAKE2b-256 f4b595304bf02a4037e1e3a958f144d9f9ec3d411c063b454a07df06e84bf918

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-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.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bdbc6f8ceda37dfb1faeb57685ab665b43db008c520ec3d7aa9b4f21538b9f9f
MD5 90c91a7f096fcea86eafad25ca160ed4
BLAKE2b-256 9e50a775d0afaa65a27da04784d08a436537517652b982059ff4921672a1da67

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_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.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 80cdf686e58e6ad1c450f978a63e2d805b1316d74b10152761de183cc609c13f
MD5 e285c3ed6ec0750122a6e1d61bc643b3
BLAKE2b-256 8a132320f8443145b9ec0b089dd14cdc7e74eded52b91c1be7a2a66604075c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_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.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e6e842df203cc0115063143f94395220acf5fdf2de194c3e376fde11592f867
MD5 092b7f4238fea2c7daf64ff491a7841d
BLAKE2b-256 c416eea0765ffee29fbe6a31bfd5ab746abdc4fcd71414c04110ea80acb733f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb065e9fb78e60d205bc130cb6400a727de70bed2e0de6fdd7c9f4e662653710
MD5 d3f4bc2c355d247ee0474030e310d398
BLAKE2b-256 1c9d98690ead5f03a1ad6eedbe87316aac6dbd5677d8703c1972c57dd268c582

See more details on using hashes here.

Provenance

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

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