Skip to main content

Industrial-strength Natural Language Processing (NLP) in Python

Reason this release was yanked:

Bug in multiprocessing code

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

spacy-3.7.3-cp312-cp312-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.12Windows x86-64

spacy-3.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

spacy-3.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

spacy-3.7.3-cp312-cp312-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

spacy-3.7.3-cp312-cp312-macosx_10_9_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

spacy-3.7.3-cp311-cp311-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy-3.7.3-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.7.3-cp310-cp310-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.7.3-cp310-cp310-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.7.3-cp310-cp310-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.7.3-cp39-cp39-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.7.3-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.7.3-cp39-cp39-macosx_10_9_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.7.3-cp38-cp38-win_amd64.whl (12.5 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-3.7.3-cp38-cp38-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.7.3-cp38-cp38-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.7.3-cp37-cp37m-win_amd64.whl (12.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.7.3-cp37-cp37m-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-3.7.3.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.3.tar.gz
Algorithm Hash digest
SHA256 99265028fbdc6e12249c53305e461f79a103637b0e6866c28af0e46365f751e1
MD5 8d0589d42e7530699c18ea25dcfb3a4a
BLAKE2b-256 efb98b098779dd888076220498da27890f9017691b6ff1e1edf76fc0fc2e2929

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: spacy-3.7.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 260e8ddaa74a6209f3d647a5fd0ea2f828a3ba51f311d4b8cb052bdd63222293
MD5 0bdd9ed98630ced59d93c96182fa8653
BLAKE2b-256 8ec9b8017935f9dd2cefc06d28cebeed2e862f47b6f23949931b0086d0feeeda

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e164a17d97f41f01aa769bbe5de01eb1f9510ba268bde940a177bdbfbb86582
MD5 aee077965e585944925c629e68dd43a6
BLAKE2b-256 b53aa3f55d77ff1c902f19d5fbd2dbf42eae2f3da42f5ab6cd3c8d1e5c0e3b85

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b53dcbf82e96203114419835f9865dee6da65ceefdaa1893f9bf9714653b7ca9
MD5 5eda4e5927d299061618a6ef4031e302
BLAKE2b-256 b39e7d047b651eea1b36281ecb7aa85ff7785d45d2b5e69a3306bf77ea14e0f9

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fae842c07bbb2b9c6c217b3d322fec2708d56935de3a1fbf68986429b0f3be89
MD5 fe9d7fa130866d90b3b23959d4b94114
BLAKE2b-256 9e8d698afda80982d2dcd2e05b56021d1c3f73f298da8b4d91d3dc6d006d7239

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17355e0753f20b27aa4b66d6cd7e1a73114d57705605af1664be27e8a7cae8f0
MD5 e5f1b9bfac31de43a034d8903ce5cefa
BLAKE2b-256 e069b15b1bd0ef3ca929bb9c65bf127895d2d43fede9ff518905d07a286bda42

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: spacy-3.7.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a40e74db7b068a141c0a10a3f701fe525f81fabe13e7eb4a6477d70efce5c101
MD5 6a333d6479d22117221bd8bb403401cb
BLAKE2b-256 870ade9c3c44092ab2873be9fc157d61b36b0b32bd5170dcd9ec3a75f207b475

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e6cce0cd30ca050d6b593fc3451a5bc68b6bfa0d58b31fe87f067d15fce3d92
MD5 c401869cf371745404942aadc79325a5
BLAKE2b-256 c63312ca66e4563454d3c9221658581a0e8c3f2dd24362e0b99613660783dcbb

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 def20e4b1aa2d41a2f5a1493ef74438b09c74e46b8d0925c28a6b3d33101db4f
MD5 f2fc93cb8b373d5700543f0143c1532a
BLAKE2b-256 25a25b67da404acd5e3099067a0bdcc9c67ce8406226344c198f36a0202e0ac6

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b15c684f2ea03eebf100a9cbc2d5f3ab4e13b3089fe699c9c612ce8a09b99ec3
MD5 da97917d776e4b856178602a3e5d5b22
BLAKE2b-256 97be37b81078264157d0d4bdc57a2ff73c281fb66d3673da7b24b9e90948c516

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71b9cbcb0e184ea21fd2512aa0a842bb9a9ee5cb83d0402ba8c96df6b5f4a6db
MD5 dfb96297379aa638d8f684691c095934
BLAKE2b-256 1ac931531d7c07878786bec7f7915ca9f0e3fbfae908e40f478f641465fa340e

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: spacy-3.7.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8bc20ee80e03ad683aacbb265e14b8d5513b66ca9b05dc826e944a0785d3edce
MD5 73723664d7a82c013fe928ab949af095
BLAKE2b-256 ce89edc93ddd9d8b846e7dd1b547607469c4b8d6136d07746d9498f09f298bb5

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 461831f4e54916d55b9b329e3aa9c9081707a141322307c396ad12b2daa4aca7
MD5 c5e6848319a564e7165faf02d0de624c
BLAKE2b-256 dfb10b900ea08ef2c77e037029d5d46aea01117691f2263ba557dddc86ada1df

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 080e83eb3a7e00946912a259063f809959209e88fcfab5e7728ca39926764c90
MD5 8a606e2ed87cd3a355d670084abe39b5
BLAKE2b-256 774a10fb94bbc14696c5de5ebbb38a8663d8ad2b9f0bae0c0d9af683f15b9ae8

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9e6633aba073c67838c0e025064dcadd96d291914b726ed98042510e15bf280
MD5 a0c0d277811fe3d3b5880eb15f551cf9
BLAKE2b-256 aa25f265fa4424f1ad2b0606ca2ac2ca9ce46967967d2c283eb719139d787210

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e92f335f4fa495ad4b33fe360acb5655783557bf6cb14d1a0689b9c486fce40
MD5 8809ba212fa42262e738c0f911dec329
BLAKE2b-256 597ace3da76771ec253564918f9702aa057a2a9cb0554a8c9a5dca7205b50a8b

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: spacy-3.7.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 709a5558fe9b3e2db1c133554941b25e8970e0a4dcdf7619de511a21b24c7ffd
MD5 bde7d94dd7a7c7a756501237dbbdcad0
BLAKE2b-256 714f64106352f573b382db7390a47d06bc99fc88d7dd2e1df74291aa9aaf8509

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffcf7691718d86997c11ce51275921354ac3752a3fc7393b2042b47dfb13cf5b
MD5 842fe3cd94db3e4f37e0a3d74fa84163
BLAKE2b-256 7b330e4fbd214c57a2b1fd8763d32e7971b7312321dae59143ffea937a3e6c34

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f61ed64bc055cea4ae37d0c11db2d11292e0d23e6c6a9219105b3fc2b2400a28
MD5 53a0afaf5f4850f91400ffeaa6ce6cb4
BLAKE2b-256 a545be8dda3851ffe0ae64aeacf0c668c149b1ca44e7bba8c9b24a758ea29060

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f128d35ca5df60b95cab3b3f7dabdfae5d69fe919ad35ad6bf0bff5a5b7b3d
MD5 8abae65b514d5b3e9bde473b5f86055a
BLAKE2b-256 c017fc4c0e23c1f00bea19a0e6bc759e6bbd4c5fc26f522895c2614461c96617

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27102fb32984f329dbbcbe2ef961127a2c85181678315199b300d2ac0f06447b
MD5 ccdadce023aadb48b14aad77fb9d6d5a
BLAKE2b-256 136013433a4f3a6516061a024805515b0c7862020779e0ab63780eb63efd594f

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: spacy-3.7.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a61d7388572ac938523097d3f239d3f277259df8a85283ec0924e4a6e385d6f0
MD5 b7718fd011a9c720fc1c19dda805ef41
BLAKE2b-256 25a3d662bdcf965d9e84019723e37dedec95a6d61bd6de90a510317bfbfbe27b

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1610d2dd57fc0d56d53db6982e359224aa3bb1436a566e82fcec974b9d9bec5
MD5 4053c519cfc26b2959c05ba12a305293
BLAKE2b-256 01e1092ce4e1242b324861792df2f9e33c325132de1e99f3e3daef8d2d2bca78

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8537890bb77022f0e4cc8a125bc578851ffc21da912bd0f56507d71b7622c8bf
MD5 8235a11224497e2442f11fe4ab0d9f68
BLAKE2b-256 30cd84d97827a737ca580be97c361e22f4d9dee357a4ea5506ab725ab9dec748

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41745c02cf36fec9f9fbe4c7f65b470e01c044f2769b863e68449c2b71c830b3
MD5 7b6221b970667473d4a2eb1690f3b8af
BLAKE2b-256 0906069f78ca4a40f8aab28536e51dd304c9fbd8ce3541ede194b166d5fa3c8a

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1d46a1ba2a9718300af5ba2848af566458fadf38e97371b84f6a9f57b350ce6
MD5 cba2e2318df9e5779966b64ef62e36a7
BLAKE2b-256 af8415be2bc69f742d76c57dc432dd158fbdd542bfae4d2a802c730043b85db8

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: spacy-3.7.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c25b6594da2b2c4c789c29b7c3eb5f731630eafd205a071c1e21d9399ea3aa8b
MD5 a7ad7bdf1eb485e4c02ca82e1dc1a6cd
BLAKE2b-256 ce3f64da8633451f225e09bed786de564b08fc06635c10ae3a046ea990655664

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9190e9be0311595162076ebc9813dfebd1bb029c2305589f675432f9a205e3ea
MD5 3c4b25f3d87964ce1b2a4f0b8ea54593
BLAKE2b-256 10bffd5f3bd24186bf69bd9e6c2d54ee0d3ea2aedcae58ff724ebbe25a99e2ef

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 913b6e01d728d93be586f610db4b6be617b718f418a4788c56a8749c896827e1
MD5 f80cf64b90b123b4f3452efb07fbbad4
BLAKE2b-256 ea59c259986f8b6ac34a2535ff65fab4dc2f53175b686c9e98a6517323b4978b

See more details on using hashes here.

File details

Details for the file spacy-3.7.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d883efb1853ff4334929badd81a503721d034fbcc28e81ba7ff0bcf037fb120
MD5 ce51b84fa6788f37c9ce9cbb5d23e433
BLAKE2b-256 c58c05f00b4ce9547d94ca3f20516bb3a0dcd1e64edbfc2cdf747a8aa8b127ab

See more details on using hashes here.

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