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+ (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

This version

3.8.5

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

Uploaded Source

Built Distributions

spacy-3.8.5-cp312-cp312-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

spacy-3.8.5-cp312-cp312-musllinux_1_2_x86_64.whl (32.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

spacy-3.8.5-cp312-cp312-musllinux_1_2_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

spacy-3.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

spacy-3.8.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

spacy-3.8.5-cp311-cp311-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

spacy-3.8.5-cp311-cp311-musllinux_1_2_x86_64.whl (31.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

spacy-3.8.5-cp311-cp311-musllinux_1_2_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

spacy-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

spacy-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

spacy-3.8.5-cp311-cp311-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

spacy-3.8.5-cp310-cp310-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

spacy-3.8.5-cp310-cp310-musllinux_1_2_x86_64.whl (29.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

spacy-3.8.5-cp310-cp310-musllinux_1_2_aarch64.whl (28.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

spacy-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

spacy-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

spacy-3.8.5-cp39-cp39-win_amd64.whl (12.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

spacy-3.8.5-cp39-cp39-musllinux_1_2_x86_64.whl (30.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

spacy-3.8.5-cp39-cp39-musllinux_1_2_aarch64.whl (29.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

spacy-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

spacy-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

spacy-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-3.8.5.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.5.tar.gz
Algorithm Hash digest
SHA256 38bc8b877fb24f414905ff179620031607cd31fe6f900d67a06730142715651c
MD5 cbee442e07e6afdf49b621a3af951752
BLAKE2b-256 f3cd2d190b7d311a6ddb30a9be6a92d1e3a56ac8ffb0d62663459b3bd13fd9f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4a54587deda8ecea5ceb3d9f81bd40228d8a3c7bda4bc5fd06f7cf3364da8bd9
MD5 12e167a13e60ad53aad77d55aaa4318f
BLAKE2b-256 9f85efec3c8047014223399b66dfa44ac0b616b46be083947bd67be15f52a78a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe0b9db300a2a385220e3cad3ffbfcfd8ef4cd28dc038eca706b0bd2797e305e
MD5 32494296087d4d45a4e8a38102ee3cf3
BLAKE2b-256 b617a17f53ff171eed570bb6fb344b8cb7c92e23e49bdb50db8f3c09c0e5f144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b06a7a866e528cd7f65041562bc869e6851b404a75fddec6614b64603f66cc8e
MD5 ec84f20a527b3fcee9c78221f67356af
BLAKE2b-256 19742adbbed661eb848a2f9830f6489a69bdd09a41bacb767e4ac820af95a6df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be20f328b1581a840afc3439c4ed7ce991f2cc3848c670f5bc78d2027286ae80
MD5 0154e1931af078e50e5f4383ba2f5556
BLAKE2b-256 ddcf5349e326ced174047e1e4124fac34f9dbe8206143f719bb15fa1ff25e88a

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e803450298bbf8ae59a4d802dc308325c5da6e3b49339335040e4da3406e05d
MD5 8682ad0ac7c8857eee6c87eee4feff41
BLAKE2b-256 7c8256fedb7f59611687c64ac89483b69973cdb0a596764a7607cfdc8063ebc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c709e15a72f95b386df78330516cbd7c71d59ec92fc4342805ed69aeebb06f03
MD5 7d9a130b714626de3d612722b34953d9
BLAKE2b-256 1f6073a9de85af5271aa8824aba6a626fb473cd5e2f0e35005eb1cd839b60c70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3a7c8b21df409ddfb2c93bb32fa1fcaca8dc9d49d2bb49e428a2d8a67107b38a
MD5 a1467cfdfa20283a8efbacfbfbf00953
BLAKE2b-256 915677eaecf8afaf1bf3e683c44df1700326201af33066ac54deb727f9b27683

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57bdb288edfb6477893333497e541d16116923105026a49811215d1c22210c5b
MD5 1f3f7ebe886977fc641189960b4362ec
BLAKE2b-256 5329d4ba96e8c3032f799f778a83356c4956dc5b99cd72d1300704d71e129879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c418d5fd425634dbce63f479096a20e1eb030b750167dcf5350f76463c8a6ec4
MD5 e685772dcac07ea213621227385ea0d1
BLAKE2b-256 7c2a7e596370110b7fd1164e590bdd747000ac294956071948feafb09038586f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd16d593438b322f21d4fc75d8e1ee8581a1383e185ef0bd9bcdf960f15e3dff
MD5 37b32e557bf55480345f9861ef2f3683
BLAKE2b-256 4a27336b3320fcca9ee451b3be75cfeaa2e83582d03fb729eec524dc2cdc080d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ba8f76cb1df0eac49f167bd29127b20670dcc258b6bf70639aea325adc25080
MD5 315667c4bd93759972c18586070ce48f
BLAKE2b-256 f906941689ebac0a6fc7eb8cf4f057c6604b71ecf3479ec12ed8a7db1fec7ffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e6014ce5823e0b056d5a3d19f32acefa45941a2521ebed29bb37a5566b04d41
MD5 595af0603db5f126dc7c3bc68cdf003e
BLAKE2b-256 7a86a2c37990427b3c79f6ca7e1107d48171ecf5122a018c04e0829b4f0d6f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aef2cc29aed14645408d7306e973eeb6587029c0e7cf8a06b8edc9c6e465781f
MD5 6f10f907ddc339fd6afffcd8ce691cbc
BLAKE2b-256 a449fb2ea739841f44150a77d400ce747d99240fcaff727c418bbf96b91f0f9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 489bc473e47db9e3a84a388bb3ed605f9909b6f38d3a8232c106c53bd8201c73
MD5 4425e04bf88920f7d30bc0366594fa7a
BLAKE2b-256 66e59990714a812dd8d8afb2dda6f16b6191adcb7e7030249c7b13dd6f74348c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 376417b44b899d35f979b11cf7e00c14f5d728a3bf61e56272dbfcf9a0fd4be5
MD5 f49951c9330f6b89b29b59be2a22d52d
BLAKE2b-256 60efd17b6205011c37a86aadee2ec55147521a0bc3053a22f3801b805d8fdd0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b1e092407eee83ebe1df7dff446421fd97ccf89824c2eea2ab71a350d10e014
MD5 a482a3a940234d22a8684eeffd5c2e8c
BLAKE2b-256 162a4df53584b6542d848f440251fee3661f7e27ae0ecd981df099a46f595ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3ef2b91d462c0834b4eb350b914f202eded9e86cdbbae8f61b69d75f2bd0022
MD5 34d71bab3178398a21852de3ed2a2674
BLAKE2b-256 9214704d022f6aae01975af08801d6500bb7cd8639f22482b0f5d5a72b3d76ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04f12e3608ec3fe4797e5b964bfb09ca569a343970bd20140ed6bae5beda8e80
MD5 7c9b1d9d2acc6ea5599a7180c47c472e
BLAKE2b-256 d79972a10732da60793f8c71ec3909d7d78fb4a5813bd14a90e49e450271086c

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27bab13056ce2943552fbd26668dcd8e33a9a182d981a4612ff3cd176e0f89c7
MD5 c5f72b844705fdcfb5af0e51c6633a17
BLAKE2b-256 806be8870e03a9df7e2c94d1f323eb0a2b5c7f4453331bc50975ad42f9b40be7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 734a7865936b514c0813ba9e34e7d11484bbef2b678578d850afa67e499b8854
MD5 bf517cd68642c5033bf9d07296cd9a84
BLAKE2b-256 a71a3ff2cd3f858f2f9a9bc63586c64747d0b88077d7f6a4f9c3c1cb14dd4442

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b333745f48c0c005d5ba2aaf7b955a06532e229785b758c09d3d07c1f40dea1
MD5 deeeb58bb1a2114b56ed069d5011a1f6
BLAKE2b-256 b9c60b8714db060c740999822d6c749d3b8f06bf178c2cbb4e048ffdf5f98129

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: spacy-3.8.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.3 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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 13792e7b8ed81821867e218ec97e0b8f075ee5751d1a04288dd81ec35e430d16
MD5 d8e9a643742978beab1960afb9730035
BLAKE2b-256 e5f04b84a37a6b47d7c538edb729bde76e4d5e57f28a2e88044488c0a7f1608d

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4ec788006b4174a4c04ceaef28c3080c1536bb90789aa6d77481c0284e50842
MD5 01632daa32aef4a0a7bacfac7eed009c
BLAKE2b-256 d659faa682490924f82ac741d0501b9fad75b7649f11d40275047ae5f1451156

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8af92fb74ad8318c19a1d71900e574ece691d50f50f9531414a61b89832e3c87
MD5 17fa8aad2bbc6e73dc4bc00e8bde2b13
BLAKE2b-256 e78302deacc3a96efbae1e826d2e20efd1e06b90521c9af7ea1d7b30468632ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b94495dab9a73d7990c8ae602b01538e38eeb4ccc23e939ad238a2bb90bd22d1
MD5 a479e3b63150d46041f13ae72acb7ae2
BLAKE2b-256 ec5bbe8e6cd8707b735706427bf3548ade4e0683b90d7a42dfa5119b41869729

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa6d1b87d66e842f632d8bda57aeb26d06555ff47de6d23df8e79f09a8b8cafb
MD5 2e26b96641e54f381d86064900668177
BLAKE2b-256 3df3d4cf9ac68231fd096ffed0e1ebd4f10495c8da12f5135b2dfb06bf132313

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 560ee35c9c029b03294e99bfbb7b936d1e8d34c3cf0e003bb70c348c8af47751
MD5 aaaef670b5568b26570cf1749dfd2299
BLAKE2b-256 f9b83167d419ea4f24572c940a6370243bccd1873deacf2b15c12d79de520367

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.5-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.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f24d3e78c63a99d608b03bb90edb0eaa35c92bd0e734c5b8cc0781212fa85f5f
MD5 633f289d70c650eac974f37639157639
BLAKE2b-256 8ba4e739a45557d630d6e893a9d362c1ea1ec30b2d4cefdfd582b6f77caddba1

See more details on using hashes here.

Provenance

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