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

This version

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

spacy-3.7.5-cp311-cp311-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

spacy-3.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-3.7.5.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.5.tar.gz
Algorithm Hash digest
SHA256 a648c6cbf2acc7a55a69ee9e7fa4f22bdf69aa828a587a1bc5cfff08cf3c2dd3
MD5 ea67d941d016e93f13fafb513eb36bbc
BLAKE2b-256 211e94e3981516db6fcd6685f058c43c3fa81805c120b04829596367dad1aa4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 07677e270a6d729453cc04b5e2247a96a86320b8845e6428d9f90f217eff0f56
MD5 8598fbd84ad423e7db69db66f8662e06
BLAKE2b-256 5842b6bb76b08f4a0ccb0e2d0e4f3524acadf1ba929e2b93f90e4652d1c3cbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faa1e2b6234ae33c0b1f8dfa5a8dcb66fb891f19231725dfcff4b2666125c250
MD5 2407bf6230da8d895739f351574122d1
BLAKE2b-256 ef9f70bed4cb66629ad1fa5f45220d47bbbf6c858e70e5d69f7ca1de95dd2b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 262f8ebb71f7ed5ffe8e4f384b2594b7a296be50241ce9fbd9277b5da2f46f38
MD5 9f17cd3ba8c80ff8e10e3ebec2a411e6
BLAKE2b-256 53ff4b3a9d3063ba98d3ce27a0c2a60e3c25e4650b7c3c7555a47179dac5c282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4145cea7f9814fa7d86b2028c2dd83e02f13f80d5ac604a400b2f7d7b26a0e8c
MD5 0e12674d3f20f8afa1056d4aa47daf78
BLAKE2b-256 60f9726e977c5430c44912ed97d7d965ef35d2563978b38076b254379652a522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf54c3c2425428b328b53a65913d47eb4cb27a1429aa4e8ed979ffc97d4663e0
MD5 5268044bec9046e9964a0f1a07d48421
BLAKE2b-256 3dc8413225de79e71dd9ca353d597ea4890a43fa60ff98cf9615b1606680ab95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4e00d076871af784c2e43185a71ee676b58893853a05c5b81717b8af2b666c07
MD5 60781246a4854b902d584d924f255381
BLAKE2b-256 39e108681583569f435347ced0535b27c073fcc9a927d9b4293c963092f2d01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dad4853950a2fe6c7a0bdfd791a762d1f8cedd2915c4ae41b2e0ca3a850eefc
MD5 6315f4ffa4626cb38aa3ed162d54a045
BLAKE2b-256 e0ceb5e6b02165881547ad251b0b172ebf496b9181a95833f94012af82d044df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38de1c9bbb73b8cdfea2dd6e57450f093c1a1af47515870c1c8640b85b35ab16
MD5 f00d68278ca6f7e2d4ef3d12076473b5
BLAKE2b-256 5183ec38e9bddb17b8f07539a49a19f2b30ce8e7d7a3d4f94dda31ea9bd043f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 190ba0032a5efdb138487c587c0ebb7a98f86adb917f464b252ee8766b8eec4a
MD5 3176355b1b4e316a0a7e874d799d2799
BLAKE2b-256 7249bd65abe76607c86dc1f104ad545eeb3e771f474b7e259e64e5a16614615b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd93c34bf2a02bbed7df73d42aed8df5e3eb9688c4ea84ec576f740ba939cce5
MD5 c991bc2a8c30a49cfde1c4d97e4b1618
BLAKE2b-256 803653a831d2e82a432d785823cdff56f84737aed26e8f7667d423ee32c3983d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a21b2a1e1e5d10d15c6f75990b7341d0fc9b454083dfd4222fdd75b9164831c
MD5 0cb396870c529e79647a9cabc266de7b
BLAKE2b-256 df9db46b6f0a4ad66498c388a94e7efbff51044be92ecc1d0f5ea02dc45ef2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a7dbfbca42c1c128fefa6832631fe49e11c850e963af99229f14e2d0ae94f34
MD5 f57721e57a554c32c53c5f8e42b44419
BLAKE2b-256 0752117eae6b96e79207234bf546271bc4d8bb1ec5bf5dd1d8ddf15f12cdbf2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f044522b1271ea54718dc43b6f593b5dad349cd31b3827764c501529b599e09a
MD5 f90db459a8b67fdd584638567f5be4bf
BLAKE2b-256 18912fbd1c23467cbad666dbcdb9cf7d3c04d620a2f470281a9d341acccad9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43acd19efc845e9126b61a05ed7508a0aff509e96e15563f30f810c19e636b7c
MD5 66b714e46b3929d0cd5f3d28e2f024a0
BLAKE2b-256 c63a8c5446c40306f876f12c2f9c814c731913f775c9342348333342312bf202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8002897701429ee2ab5ff6921ae43560f4cd17184cb1e10dad761901c12dcb85
MD5 af63549b11589f0e65d7a75ff7ded52a
BLAKE2b-256 c25ef3a851f4c90e61c64956c952387db9b6557863a15050616929886cdcab45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.5-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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 713b56fe008c79df01617f3602a0b7e523292211337eb999bdffb910ea1f4825
MD5 756c7ba18a3c03b5c3b99e6011e78c1c
BLAKE2b-256 f62b853b46847e826c2b6eaa9811c8514d7dccd02fe88e6a2e14fee39e56c7a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 591d90d8504e9bd5be5b482be7c6d6a974afbaeb62c3181e966f4e407e0ab300
MD5 2ff4cc75790ef0466427f50fb3a3468c
BLAKE2b-256 f94a1067b8dd25ef1677c4ed633cda9598c77412e5554f35121db72cc75d1bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b0bf1788ca397eef8e67e9c07cfd9287adac438512dd191e6e6ca0f36357201
MD5 b10d22489da79905cc0ca456d6941a83
BLAKE2b-256 7454d2464f0f1e216d0d07aec87d352a2ffaf4d7dac61c946a40df3d473ab41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cfb85309e11a39681c9d4941aebb95c1f5e2e3b77a61a5451e2c3849da4b92e
MD5 ddfc097b3ef43495755f69d51398f360
BLAKE2b-256 2f8e037a45182f60714cc873dc07faa2540db5cc1a77c20164a449640882a07c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdbb667792d6ca93899645774d1db3fccc327088a92072029be1e4bc25d7cf15
MD5 32c174930ce3ed249326fe38605bfa7f
BLAKE2b-256 6fa82d21671166cf1d3a4664d39f059715889ec6396ae56b7f36a3e13bfd393b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.5-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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8b493a8b79a7f3754102fa5ef7e2615568a390fec7ea20db49af55e5f0841fcf
MD5 dc2b16bc4011fe1ea724886ee88a6db8
BLAKE2b-256 df9c0b8e2d21775215bfca705e5d4b6d55211c2a4a4f2317bfa56309340805f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d244d524ab5a33530ac5c50fc92c9a41da6c3980f452048b9fc29e1ff1bdd03e
MD5 0652c3d9af784e89b17c95ca0b0c429c
BLAKE2b-256 2cdb91859e17da8ef43a3f52e0eb3172cfdf407497e4370addea8d577a4864a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f8fbe9f6b9de1bf05d163a9dd88108b8f20b138986e6ed36f960832e3fcab33
MD5 626f620294b2cba11bc4258c2e7790bc
BLAKE2b-256 3b92b9ee150580afbcbf0a65029fc1e5a117a09e972fca8a7086a25fde56c3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12fdc01a4391299a47f16915505cc515fd059e71c7239904e216523354eeb9d9
MD5 847f0c722c6a200dcc518dc05884e577
BLAKE2b-256 5e547c97ae19a166b8a18952ed783c718f2bec818567ac745efcd79e56a263d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9108f67675fb2078ed77cda61fd4cfc197f9256c28d35cfd946dcb080190ddc
MD5 2c9dbceef95d29eaa8a69c3df549855b
BLAKE2b-256 09ba996a28e21563e2747c117bd1b9ab14f807653b9c00dc33f28775ccca5760

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.5-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.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1171bf4d8541c18a83441be01feb6c735ffc02e9308810cd691c8900a6678cd5
MD5 e7cb8dbec77e63307e20956458ec78a6
BLAKE2b-256 69a844e1345db538027355b30d1105db58f874ba0fb1e96d4f5b85df52f4e8ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d211920ff73d68b8febb1d293f10accbd54f2b2228ecd3530548227b750252b1
MD5 7b1b6b4eeb1f781cc50da3820d2f6c1b
BLAKE2b-256 64fa023c2dee4ff3b04da56ce6eb038d8bbbb386efbe07796efe714aaaa42828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5694dd3b2f6414c18e2a3f31111cd41ffd597e1d614b51c5779f85ff07f08f6c
MD5 92a22606bfcc7c60782a7868354151d8
BLAKE2b-256 3a765f7601c35c4ca398d1b95de440a01975f62aaac437f2b5384bd5ee613aa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e207dda0639818e2ef8f12e3df82a526de118cc09082b0eee3053ebcd9f8332
MD5 bc0719b6ff1d4af3f2f2011045c2962a
BLAKE2b-256 424c12ee06b7e9240c7b56c5a8d5fb177906348afc58ae093d6787dc7f63393a

See more details on using hashes here.

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