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.7 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 spaCy on Twitter

📖 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.
🛠 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
👩‍💻 Usage Questions GitHub Discussions · Stack Overflow
🗯 General Discussion GitHub Discussions

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

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

spacy-3.8.3-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.3-cp311-cp311-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

spacy-3.8.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

spacy-3.8.3-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.3-cp310-cp310-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

spacy-3.8.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

spacy-3.8.3-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.3-cp39-cp39-win_amd64.whl (12.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

spacy-3.8.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

spacy-3.8.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for spacy-3.8.3.tar.gz
Algorithm Hash digest
SHA256 81a967dc3d6a5a0a9ab250559483fe2092306582a9192f98be7a63bdce2797f7
MD5 b878521508c1d15b8e5dc92b93e787a3
BLAKE2b-256 97484f87b2551768c9725510c9629d34acca9b6e84d897207c8ac35b69df2484

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.3-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.0.1 CPython/3.12.8

File hashes

Hashes for spacy-3.8.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f14d4e2b1e6ab144ee546236f2c32b255f91f24939e62436c3a9c2ee200c6d1
MD5 a844a8e1bb5e7824f495d500d1ea400e
BLAKE2b-256 81356efa37d608b299270bf1e04f0d686f485a7ebf86f38b6c1f6bca0f9f3eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 460948437c5571367105554b1e67549f957ba8dd6ee7e1594e719f9a88c398bb
MD5 c553ccf49bcb028edd1f60071a51fdaa
BLAKE2b-256 77ff01c5108134a613601061c14a4510fe76a61d36f5c4f2df893d03c7968c96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7517bc969bca924cbdba4e14e0ce16e66d32967468ad27490e95c9b4d8d8aa8
MD5 5a1107cd6688653cbf74458cd1540a01
BLAKE2b-256 e37894a4c1349814a6e8c9a88480f595c59e5c017ce4258a17004b6264873c3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 187f9732362d0dc52b16c80e67decf58ff91605e34b251c50c7dc5212082fcb4
MD5 8c52be2f4391673799e4cca2c149285d
BLAKE2b-256 4e485528a3427fd29cb3deb7a16c49ef0c5eccd6a69eb8d8ecfbdf29711aadf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b01e50086515fa6d43275be11a762a3a3285d9aabbe27b4f3b98a08083f1d2a1
MD5 9a323ca1705dc3594e9539fc101d2448
BLAKE2b-256 4dfcf3c10df61bec8a329bcff014c3cce136408b42db590e17b04338069bd942

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.3-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.0.1 CPython/3.12.8

File hashes

Hashes for spacy-3.8.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e348359d54418a5752305975f1268013135255bd656a783aa3397b3bd4dd5e9
MD5 041c3720795964fa1ef28562c560f649
BLAKE2b-256 e5bfb76b519640b7805e5ee36ee76d394ae1599cd66210c24b3e692224f45342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45bc5fc8d399089607e3e759aee98362ffb007e39386531f195f42dcddcc94dc
MD5 c908767ae2e078259df5af4c8e95e95b
BLAKE2b-256 30185a08482e17b34ed0d3a549b6c95d85cb7d9d1d286e67788ac92783ebeed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57a267ea25dd8b7ec3e55accd1592d2d0847f0c6277a55145af5bb08e318bab4
MD5 26adcb2785312735557a8ae98fb3c455
BLAKE2b-256 09470d8db9ecaf35661560c6379cdcfc64fd2ef3f9b850f421a0c661682e7fc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f62e45a2259acc51cd8eb185f978848928f2f698ba174b283253485fb7691b04
MD5 c91b519c738901fdfc56ad4ce18dffed
BLAKE2b-256 615a6506a36428a07f9abdebd8b18a3c815a097a201586bd37fafbfc0677f571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b16b8f9c544cdccd1bd23fc6bf6e2f1d667a1ee285a9b31bdb4a89e2d61345b4
MD5 0b1ff3de61dcc8b54ff18410d3610ade
BLAKE2b-256 0e7e145e5ab4abf478123a36e19e97cb17fa48818a8944c4a9027c3da50f69b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.3-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.0.1 CPython/3.12.8

File hashes

Hashes for spacy-3.8.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20839fa04cc2156ab613e40db54c25031304fdc1dd369930bc01c366586d0079
MD5 e0baa6c0a25ea9bac5f1822111b99e07
BLAKE2b-256 5ca00c8887990b25d01d2cf5ff766140eff962396340e067a8a381812532407c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3630ea33608a6db8045fad7e0ba22f864c61ea351445488a89af1734e434a37
MD5 a46731b8c3e21974433a00178fdbacbf
BLAKE2b-256 9c6e664282fd00857ae15719f6eb936fd52f34c8a2560f26801ecc4b44d53483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbcfd24a00da30ca53570f5b1c3535c1fa95b633f2a12b3d08395c9552ffb53c
MD5 7d047eab4232dd3bb595411aece77bc4
BLAKE2b-256 a676216e55d51b37037760682efdff8b34765b2b879cfcc63c06872072c36db7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b28a5f7b77400ebf7e23aa24a82a2d35f97071cd5ef1ad0f859aa9b323fff59a
MD5 b0de099d9d67ff443682d01aabeee710
BLAKE2b-256 55cad843c414b08979e0390ed263ac46e427e0dc53b676d8c0259f00bf01d7f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b530a5cbb077601d03bdd71bf1ded4de4b7fb0362b5443c5183c628cfa81ffdc
MD5 9f8a146ff7593abf91fc76b8d846e4f0
BLAKE2b-256 25ce2e32bbb30d84f250313e1ec351d6d5cd0067e5cdcc27404db56bfc9b11cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: spacy-3.8.3-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.0.1 CPython/3.12.8

File hashes

Hashes for spacy-3.8.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 608beca075f7611083e93c91625d7e6c5885e2672cb5ec1b9f274cab6c82c816
MD5 bf0250f12a738c47dbc203bd3fd7a11d
BLAKE2b-256 3c5c0260c2f4b15b0150f5fb00b3ab945d4b92f16e4c4ad322373c1d24ce0ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8563ba9cbb71a629c7dc8c2db98f0348416dc0f0927de0e9ed8b448f707b5248
MD5 121f0690fbdb877d846f5447426aea3f
BLAKE2b-256 a438128d09f6a26b9c8b87fb63b29f5a30ca7d2db401f51f115315c90db3f47c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a630119aaa7a6180635eb8f21b27509654882847480c8423a657582b4a9bdd3
MD5 66e31382abf873adc35b738ee47ab8ad
BLAKE2b-256 c023c3a7c0a49343495ad15adbacc140e379116dbec1b7d7cbc1b1d90ac67d61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b492651534460bf4fe842f7efa462887f9e215de86146b862df6238b952650
MD5 690a62d3755e6583d49f4eb633197751
BLAKE2b-256 3d0b5d26c2156f2f8ed4e45f3de65cab6f4a4707bf5c7ab5fd6cb4e0388696e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for spacy-3.8.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f6020603633ec47374af71e936671d5992d68e592661dffac940f5596d77696
MD5 f15eb1ff0759b828cfbebb3dbfa83d68
BLAKE2b-256 2ab83963d2a7b5ca4e09486286007236e3661122903e293bd9d47a88f39f35e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for spacy-3.8.3-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page