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 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.14-cp313-cp313-win_amd64.whl (14.2 MB view details)

Uploaded CPython 3.13Windows x86-64

spacy-3.8.14-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.14-cp313-cp313-musllinux_1_2_aarch64.whl (31.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

spacy-3.8.14-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.14-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.14-cp313-cp313-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

spacy-3.8.14-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.14-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.14-cp312-cp312-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

spacy-3.8.14-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.14-cp311-cp311-musllinux_1_2_aarch64.whl (32.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

spacy-3.8.14-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.14-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.14-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

spacy-3.8.14-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.14-cp310-cp310-musllinux_1_2_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

spacy-3.8.14-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.14-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.14-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: spacy-3.8.14-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.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b6d4f20e291a7c70e37de2f246622b44a0ce82efaa710c9801c6bd599e75177
MD5 faff93e95bb943d7d8a87c305d644ec8
BLAKE2b-256 12c2f1882ec2f5cc9c4e73cf2132997a03c397d7ceeb5ee7f7bb878b51a16365

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69b2264294097336e86832e8663f1ab3a7215621184863c96c082ab17ee11937
MD5 fcf63b81f20401095d5b2789f7b9c532
BLAKE2b-256 ec53df5c1fee45f200b749ba72eeb536fbb2c545fc56230324954263b2f3be00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 042d799e342fdb6bb5b02a4213a95acc9116c40ed3c849bb0a8296fbe648ec22
MD5 df775fb8abdb813282e5e00f11cbea24
BLAKE2b-256 04d4419868afd449bdd367df005932537eea66c71e97c899ba278f3124933f3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9699c1248d115d5825987c287a6f6acd66386ef3ebee7994ee67ba093e932c59
MD5 b5475f2cfb420ef3f75900d00c2f58c6
BLAKE2b-256 1ececae678f664d5467016819253f5d6e52f8e68a12d8e799b651d73ec2a9a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c24620b7dba879c69cebc51ef3b1107d4d4e44a1e0d4baa439372887d00c3fd9
MD5 3fb8895f0b98bd5b0f553a698ac4fdaa
BLAKE2b-256 0c4f29c7e56afc7db07348a9e0efe0243b5eef465d5dc3d56433f164378c3fa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0860c57220c633ccb20468bcd64bfb0d28908990c371a8857951d093a148dc8e
MD5 24e9f86235d48820cf64d3d0a71544a8
BLAKE2b-256 7ede0e512154113e1f341567f2b9341835775e4180c180221e60faedaebb2f65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2b4f60fa8b9641a5e93e7a96db0cdd106d05d61756bf1d0ddcd1705ad347909a
MD5 cb11c3e4db617216678f1735ef818688
BLAKE2b-256 1be5822bbdfa459fee863ef2e9879a34b0ae5db7cd1e3eb76d32c766f19222e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.14-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.14-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d6257133357e4801c9c5d011925af5439b0a015aacf3c16528aa0009982431c7
MD5 f93c336f2bd8f21d0d516066f11e4211
BLAKE2b-256 f35e12ac876017da6c1e6b72afcc3c8b309996227fd3aa15382cd3311aee21b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.14-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.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9def18c76a4472b326cb91a195623c9ca38a2b86999ad2df9e00b49ba8c63734
MD5 798465fb8b3022695ac382ff6fcd2a6c
BLAKE2b-256 5f554371413a6dfc1fa837282a365498165f828c2f3fe018dfb35336acc869e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dfa77aec7fdebac0455d8afd4ce1d92d6f868b03d507ed1976179a63db7b374
MD5 55b2d5c2ea900fb7c872d231bbae6615
BLAKE2b-256 74a5b081b5bd3cedb2634c23eb470b5e24c65c894c57646567f47627291c2b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1069a8be34940809f8462eb69f09a3f0ce59bf8b9cb82475f2a8e3580f50ece0
MD5 82f2942b6a3dafd106cf6e0b7989a2c5
BLAKE2b-256 780781ab9acd0ec64bfdd7339acfc4cf35f5fb74bbbb0b2be7e64d717c416bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6d45715a24446f23b98ec3f09409a1d4111983d1d64613250ee38c3270e21853
MD5 55c1f4b02f2e8861012328ad42a457b5
BLAKE2b-256 8e3f1799af5f4ccc8eb7500e4a20ca301488134429dba08cda5be68ce6ab2992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 daeb64b048f12c059997281aed53eb8776d26416dd313cf17ad6f63124b2b564
MD5 f1ca85706733a1376a86d3658a241b73
BLAKE2b-256 ffe8048d83b73b28686307bd9a60878a58de7b7b21b562ca4de8b5bd558031e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3ebe50b93f2d40e8ec3451255528bb622ccb12be39fd140bb87668ce8d1075b
MD5 81dd7639bec001a28dcf77e013aec28e
BLAKE2b-256 06df178bbab47fa209c8baf2f1e609cbddc6b18a985200be1ceee22bd5b89beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 726f02c60a2c6b0029167370d22d51731172a053d29c7e2ea6190db6de3ab483
MD5 2ba6114a208ac6c1339d6c2f7cb82ef2
BLAKE2b-256 0c78e4f2ae19a791cae756cd0e801204953eaec4e9ab75a60ad39f671dbb8d5a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.14-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.14-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c0c6c9d8771cc3708e309b07310d330fc8443a6bca34f4ff20b0f22751d8faf9
MD5 7d5e3e06fc20f78ba863a2565c5c4768
BLAKE2b-256 de3189ff6722ec91f328dc717932849c6f57249c8a9d429d8670a6c8f70e576b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.14-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.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f51d1ce8b1ba30123f6bef6e795c4bc5466608e6e8a015dc828bd21d399aa9c
MD5 2f1112140b9bea7402c4a52f8f70d33d
BLAKE2b-256 8632fc00532eabeace451175dd9b152ddd636e8f6a42248b5d90141f98be2af5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c228f4c9ae618173334c17adb748d66b574b6594bc3575233e15cd5ad1cb26b
MD5 668ad513090c0f481aa7b944e8e1b619
BLAKE2b-256 721c32aefcea2468782fcdb994f2f96cac93dc74f6589ce01047db42d9a299a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c4e5bc5cdefe39ea139985776a2e8eae05e7ff2bf51ca1bd65247dc45feeb8e
MD5 2ae1ca1fa94bdc000c12a2b5a9f1ccff
BLAKE2b-256 03a728c118879791b3a7ffa81796d22203daac428e6f75572f1b8da1539e1ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cc5e5f2ed121d57d819d247bb59253dc320a58acbd237b85f86c2aa38cab6bd1
MD5 24d161e03453f9afe769fdd65675b066
BLAKE2b-256 fa675c4a65ed2cedc598ad000a2b9f45afc76bb8d17a592cc01082dffa8bbc50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7bece0450cd8ab841cfa8527fcc0ce18c4454f28e3b9fca42a450803a067355b
MD5 152c8be998c9242fbe655b57cc8f8a5b
BLAKE2b-256 5cef18385aa5aeb9bcb299e8074da162b24e5c8bea5aa4d1dfa3dbafb35e9d1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab6c1ace316338dac334fc93c849994bbd717f9ebf59d2bc4158e978b2f542ee
MD5 17df65d16e42fad36e1bce220748905d
BLAKE2b-256 e1617f7d38e71daac7f91ffd362fb15645b6f9a68ad231e0ed6ff5c1dc6f6930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c55cb123c3edfba8c252ce6ae27ffb3d7f60a53ba5e108c3534421586c5fdda
MD5 5a544ce6d9837a37f101690fc4ff88e2
BLAKE2b-256 a98c0ccf32d9a6b4fd8737bba33d599ddb98934399c1d523f825a4beb4bd1495

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.14-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.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 161671338396eea2455f9b9dee8e37e00f00bc2f352f6f8cf73a4cd2b708545b
MD5 f473f51b52de1b4e25fde2fc2ff03d6c
BLAKE2b-256 16a0a990b30ba1a09228ee49270d996be51e0b2245350631b0e4fdd655d019f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc30623c581aa8f8e9763cb8625641d3fe96fa9fa95992ffb8544aaf6e3afcf3
MD5 ddc97db2ec62a48291c5ece14baccef2
BLAKE2b-256 040fc8f7da2aa0e58874c9c5555104ee83016396a7cf5b347d97d77c6d775107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cedabf5602ca1a4d5b14fc680bb7e5ac569139e1f3d780b261d373dc19f4c9d1
MD5 f793a755fe3c8eb2ab80ed9c8a419235
BLAKE2b-256 b23a99ff50b2b489ebd7ded9a5192dcf5e5003a3f6b785479ae1775f6e46a682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6aa0b9308e9f4bb34ba8ff3b65df605f6d23891fe296f3e2f7b6879544637874
MD5 28b66ca9ab3471ad27fe3e5e0e9fe079
BLAKE2b-256 51cb8c103e81de0d9acafc30df06d0aba0d229a559154f4c7c889895d9f8f770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 93b369785413772a7121c29cafbf71320623d2e9ade5881acf81b5e3e8f1b4ae
MD5 3b9d2574b8da128f16620d76844df87b
BLAKE2b-256 b0ec2b5b12396eb4cdacda26af497d6e1a798e1eceba060c6bb63d2c599c4988

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d1bdc25a8351023b42619513bac82c861a25f45bfa4476d7e9673b6f0a177d3
MD5 8d53f2717c3ed36c6b787e2303eabaef
BLAKE2b-256 dc06f896dfd0ea78093ae8221a958cd7df85a8818d58ba25c1a574aa153724e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a06e5cc029910eaa4a3c5a0a997f07fed6a41aba46b05da9f58643bc06fe8b9
MD5 1f839b63763601f3152a8b33264042be
BLAKE2b-256 4ed59860449c9fbed97634fb974bbf7a128ae269f5e69f3d792a9679d2354141

See more details on using hashes here.

Provenance

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

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