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.7.4.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.4-cp312-cp312-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.12Windows x86-64

spacy-3.7.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

spacy-3.7.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

spacy-3.7.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

spacy-3.7.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

spacy-3.7.4-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.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

spacy-3.7.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: spacy-3.7.4.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.4.tar.gz
Algorithm Hash digest
SHA256 525f2ced2e40761562c8cace93ef6a1e6e8c483f27bd564bc1b15f608efbe85b
MD5 39a5aad9689772e33b6a3438cb84644b
BLAKE2b-256 b8422b2062b1ad8d13915ed9365b342cdd8c9dd32926d31ed4524def0584e225

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 040f7df5096c817450820eaaa426d54ed266254d16974e9a707a32f5b0f139ae
MD5 17176fc86fe0bcc95bb77eeeed56e267
BLAKE2b-256 dea49d7266177f48a8ade8687d30c82c93b1d8e65b40129944a4a5dff054625c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1969d3d0fd0c811b7485438460f0ae8cfe16d46b54bcb8d1c26e70914e67e3d
MD5 935fc9281eb48d8cfc13a281b140b88e
BLAKE2b-256 768ce5e1fd4cadae3b08a0490f0d1f9e6e1532f9275e803cea3f45c581e27c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 023c9a008328f55c4717c56c4f8a28073b9961547f7d38a9405c967a52e66d59
MD5 30e437922ca54bdeddfc82ed590be20e
BLAKE2b-256 3fb0df8a3cf3af5e1357bf3d8cec0814ec35f30d63b0e9f9ae1847dc00cc63e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7c29e152d8ea060af60da9410fa8ef038f3c9068a206905ee5c704de78f6e87
MD5 67dee0f894a1f848c9206d29a9f6e97d
BLAKE2b-256 e5948f71b5ae30f0fd118312fb34c50ae71cefc0df35af9eaf20ed64317ecb5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b982ebab417189346acb4722637c573830d62e157ba336c3eb6c417249344be1
MD5 a49b1785101eaafe387f1aa0b0868c33
BLAKE2b-256 96bf67853f215870f522d998af2478cb119eb76c06e39d2a3311b5db115a4a1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df99c6f0085b1ec8e88beb5fd96d4371cef6fc19c202c41fc4fadc2afd55a157
MD5 9525a8520d05075036dedb65ec96d54d
BLAKE2b-256 92fbd1f0605e1e8627226c6c96053fe1632e9a04a3fbcd8b5d715528cb95eb97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7580d1565f4d1ccbee9a18531f993a5b9b37ced96f145153dd4e98ceec607a55
MD5 7c6b31b3c1db9ddc3628ae5a7575b8ce
BLAKE2b-256 b2ced732ab63e2431cfc02f4282e773a33cf1341546b67cd8d65abdb692b5567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba57bcc111eca7b086ee33a9636df775cfd4b14302f7d0ffbc11e95ac0fb3f0e
MD5 bb46d2885b968f7b475c558cd02d78cd
BLAKE2b-256 53c3d51fd8def4bf59e2b2c904b0e10f9ff0132ff7d8907b7b3be7347386c5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07ffedf51899441070fb70432f8f873696f39e0e31c9ce7403101c459f8a1281
MD5 c67597930bf44eecf1629f688af12702
BLAKE2b-256 c4c51a4556a372ce1bd53f183d583126a6535cae6baa1b09b7028faf018c8a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e82b9da21853d4aee46811804dc7e136895f087fda25c7585172d95eb9b70833
MD5 dba4cf9d580c8bd7277927b5d41861c3
BLAKE2b-256 0680c3b6b5b2e81ea2ea90054b6918bbfb1e8d20dc2570ae9e97a9f2744cf372

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 787ce42a837f7edfbd4185356eea893a81b7dd75743d0047f2b9bf179775f970
MD5 3c0739664ecff24a40fb45024fb5808c
BLAKE2b-256 7af985ad3071616e5abb738e229aa1fa728e26241605274a862251675ee35e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f07477a4027711c22b3865e78dc9076335c03fcf318a6736159bf07e2a923125
MD5 2909c17ca07c51e2feb1a53d404fa8ac
BLAKE2b-256 f0bd8d983828156a2f23aab44209a77547fa7fa0fa8114c13dd154079827d4de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef59db99b12a72d2646be3888d87f94c59e11cd07adc2f50a8130e83f07eb1cf
MD5 c7c44518fed556e71afec752fd48f859
BLAKE2b-256 6aeab3450b9b2b78a852a2547f7528985eb47ab85a8b0358e1bf5adc9320f1ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6288dca7b3a5489b3d7ce68404bc432ca22f826c662a12af47ef7bdb264307fb
MD5 307951250273b1745c885ddbf7b45776
BLAKE2b-256 66d051881f7c1d059d819527c73faa4b5e1603fb062687e8c4228dbbe255de0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f748625192f573c07ddea5fcd324919dbfbf4f4a2f7a1fc731e6dcba7321ea1
MD5 60d0dabaa7b5b6cd1779ee0f8456a0af
BLAKE2b-256 71d39c62d1b4ce14715e413ef51e010d1d8f1790f5b149022cc8052acd97334a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f5b930753027ac599f70bb7e77d6a2256191fe582e6f3f0cd624d88f6c279fa4
MD5 f6ce89501867e293e375224f079f7f97
BLAKE2b-256 6037f8b6807426300c4cb9aee6a04979df2ddaeb02f2579caf4599232fbab8bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11ebf6054cd3ec3638801d7ff9b709e32fb9c15512b347b489bfe2ccb1102c9f
MD5 ec6cd22b09c2acb4024fb63feab38938
BLAKE2b-256 a0bc79dd58b2cc30c2ab397295acdf986f014249e6fe86d52869d35c4b2a495c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ad5e931c294d100ec3edb40e40f2722ef505cea16312839dd6467e81d665740
MD5 363818a3f54d956ea8277e850cb8ef59
BLAKE2b-256 3df31c157bb0931a14566e0047eb5cc4181c0007e128433285f7a0421f484478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 977f37493d7cf0b5dca155f0450d47890378703283c29919cdcc220db994a775
MD5 1b728a026b6365e74788a8e4b37c45e0
BLAKE2b-256 adfc49a354ad63956f8bc0656c33b3730ec9ca9b8f2699fe8cf3786104d96a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca8112330982dbeef125cc5eb40e0349493055835a0ebe29028a0953a25d8522
MD5 2e573c749b81358f370308455e260347
BLAKE2b-256 b3d16bc8c2d63cd99fe2cf9dc9c923bced25660024c368d01c66bc7b52def240

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.4-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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ed99fb176979b1e3cf6830161f8e881beae54e80147b05fca31d9a67cb12fbca
MD5 3719eaf0e06dae39ec7fed06a2a72315
BLAKE2b-256 5d85f270a003c43fb312dd0502789a41c69c9e533490ea94ac770373899d0771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b16768b9e5c350b8a383a6bd84cd0481ccdf10ae6231f568598890638065f69
MD5 63ecc2539db5c545c3d3a5407b1626f6
BLAKE2b-256 c3f8146b7ef0396f6c23bc014247a5e9440e113283a8078b3f806bac66ef10f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d7910ca7a91bf423febd8a9a10ca6a4cfcb5c99abdec79df1eb7b67ea3e3c90
MD5 dd98adadd1d2a5a4d7f9176644ad2aa1
BLAKE2b-256 c1124765fb4a3e76f2b389d6f0bdc55e7827033610f0a2d73aa063a2ea711115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c26a81d33c93e4a8e3360d61dcce0802fb886de79f666a487ea5abbd3ce4b30b
MD5 9d2d027abae281fc6e8f76de0b564287
BLAKE2b-256 4fbd5dd19c5fdc4f43201567122c60aa7e884a221e6002d9f9c07664aa7e00c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b43e92edfa99f34dbb9dd30175f41158d20945e3179055d0071fee19394add96
MD5 6df6acdd5a613df3945ec535b2dda65c
BLAKE2b-256 af4ef3d2fb43048cd2ba892775bc424f0a58f198f8bd3292389319c85d76f365

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.4-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.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2463c56ab1378f2b9a675340a2e3dfb618989d0da8cdce06429bc9b1dad4f294
MD5 fae7bb48ffdc65d587e57eb6e600dadc
BLAKE2b-256 cca6e46283bbbb2c84489eea96d2f1f586c16489562272ff12043b24ec15ab40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c992e2c5c0cd06c7f3e74fe8d758885117090013931c7938277d1421660bf71f
MD5 c387ec43334777ebdecd10b5f8a37a93
BLAKE2b-256 2048ce51989bf9887ec3774781531044327d81f619e44699e262cc7f7818a8d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c500c1bad9e0488814a75077089aeef64a6b520ae8131578f266a08168106fa3
MD5 04f1d58f7fb18d0afe250fdf63185b22
BLAKE2b-256 45478498808a48ee26ca3c1efffecc05e5a8cb0054b861d5e13f69cecb325fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6757e8fbfd35dc0ed830296d5756f46d5b8d4b0353925dbe2f9aa33b82c5308
MD5 f1691fd6f958840009e2a273f511c1c2
BLAKE2b-256 0b1f1137b8d682738a1a2a34cf7d18ce7d059a893d4313ae77d7b12f34c7657b

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