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.4 out now! Check out the release notes here.

Azure Pipelines 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.
📦 Models Download trained pipelines for spaCy.
🌌 Universe Plugins, extensions, demos and books from the spaCy ecosystem.
👩‍🏫 Online Course Learn spaCy in this free and interactive online course.
📺 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.
spaCy Tailored Pipelines Get a custom spaCy pipeline, tailor-made for your NLP problem by spaCy's core developers. Streamlined, production-ready, predictable and maintainable. Start by completing our 5-minute questionnaire to tell us what you need and we'll 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.6+ (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.4.3.tar.gz (1.2 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.4.3-cp311-cp311-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy-3.4.3-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.4.3-cp310-cp310-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.4.3-cp310-cp310-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.4.3-cp310-cp310-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.4.3-cp39-cp39-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.4.3-cp39-cp39-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.4.3-cp39-cp39-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.4.3-cp38-cp38-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-3.4.3-cp38-cp38-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.4.3-cp38-cp38-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.4.3-cp37-cp37m-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.4.3-cp37-cp37m-macosx_10_9_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.4.3-cp36-cp36m-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.4.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.3.tar.gz
Algorithm Hash digest
SHA256 22698cf5175e2b697e82699fcccee3092b42137a57d352df208d71657fd693bb
MD5 d6f477edb20b3a918b2b0f8ba84e84f1
BLAKE2b-256 4c942f9333723f87889437fb940d6a870b866346f73e4a8198c843bdea5d1d13

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6b871de8857a6820140358db3943180fdbe03d44ed792155cee6cb95f4ac4ea
MD5 09fb4951426e4c6a20a3effb96085d67
BLAKE2b-256 a7d0655576de52d76cdd71e283be5623a50116ffb0f758b8051861834dec9acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6644c678bd7af567c6ce679f71d64119282e7d6f1a6f787162a91be3ea39333
MD5 4c0325342600b3b051920d8797352047
BLAKE2b-256 23006d6a4e61df480013776464758bb4aaba819a18e4641c41d5060d1199a2ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ad6bf5e4e7f0bc2ef94b7ff6fe59abd766f74c192bca2f17430a3b3cd5bda5a
MD5 8e310d89b6b3683454c6381a4d644671
BLAKE2b-256 15ddb7b7ca7af6dd8588de45d7ed6eccd06d27559a43ad9f564b24eac82cc100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ce3938720f48eaeeb360a7f623f15a0d9efd1a688d5d740e3d4cdcd6f6da8a3
MD5 a5f43097a10c5020114e16561a64096b
BLAKE2b-256 11cc28f941b95c403b240a56f240545d222c1ec56299dd72f0c1d1c4a86904f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c87117dd335fba44d1c0d77602f0763c3addf4e7ef9bdbe9a495466c3484c69
MD5 af01d5799d40e23f2056ff7fb935ecd1
BLAKE2b-256 13142ea0e978977cb60eb4df2d9ecf027e87f277787a1102806ac62e1cace5c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ddba486c4c981abe6f1e3fd72648dc8811966e5f0e05808f9c9fab155c388d7
MD5 33c4aaba12f24a5cbd74d9e3d3d40b9d
BLAKE2b-256 0bfa0d1ddf438b2cf82409798562b60e132aa6b2f6768f15d3b2d379795c1741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c966d25b3f3e49f5de08546b3638928f49678c365cbbebd0eec28f74e0adb539
MD5 9c6fe4225104f51bf1790aa0cc79d525
BLAKE2b-256 021bb0b36e91550145e9b32913d819de08d8cf1a1e7fb3cee3bb944bb23301d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 462e141f514d78cff85685b5b12eb8cadac0bad2f7820149cbe18d03ccb2e59c
MD5 22a579c2b817a3d7ef060293114d7c93
BLAKE2b-256 c413f69bdcbe789d195cb720084d807c47edc225082d6f8c641dabf02971e75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ded11aa8966236aab145b4d2d024b3eb61ac50078362d77d9ed7d8c240ef0f4a
MD5 d07c423e48f1ed1c1646e256f4564aaa
BLAKE2b-256 4e0d5fd2b5e327496ff650322cd7d502419d178bbe0c07b10b8c9e4cee4c2ee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e546b314f619502ae03e5eb9a0cfd09ca7a9db265bcdd8a3af83cfb0f1432e55
MD5 40a38f6b47b254a2abe4320bd0757e7b
BLAKE2b-256 2da02af57382b5ee438a26c4ecdf14cd68ae3e184985c7a373e1eb73189bc6e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 676ab9ab2cf94ba48caa306f185a166e85bd35b388ec24512c8ba7dfcbc7517e
MD5 088134a5e2085652e798223ed1555452
BLAKE2b-256 99bab0d321af7e0b723a9ac4079ed7ba9b63df5c0ee2c3fb99d0373955841bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb6d0f185126decc8392cde7d28eb6e85ba4bca15424713288cccc49c2a3c52b
MD5 438f87a241a75c38cffa3d3956b5fd88
BLAKE2b-256 f68e1ee7c934aeb18bb6a77b8f7b3d9a301acd8aaedfc5f07c300871f3c6f1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ab293eb1423fa05c7ee71b2fedda57c2b4a4ca8dc054ce678809457287b01dc
MD5 1b1223268b1f49117cde2c67d3f3bf13
BLAKE2b-256 827fa6024ec2d92df612fe7de4ad952fa3b10c1c8924a6c303d1176131c0d847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36a9a506029842795099fd97ad95f0da2845c319020fcc7164cbf33650726f83
MD5 e20264d3cb7a6a57096c45c1a8498178
BLAKE2b-256 1db4cdd5a0855835cd9bc77b482c6385f2b816ed2440ac473f9900f0084050ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7b97ec21ed773edb2479ae5d6c7686b8034f418df6bccd9218f5c3c2b7cf888
MD5 a7d058cdf650bb95409795696151ccd1
BLAKE2b-256 8a2afe2870e216511ed12b9b5acf89228abc0c76832b9572501e0b895a9e129d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5c0d65f39184f522b4e67b965a42d121a3b2d799362682fe8847b64b0ce5bc7c
MD5 1d4fd2d2505806fbee4426109179bc31
BLAKE2b-256 e8df752b41475ec97c094b7824f39fdd1d68eae2e7bf47c6dac73213b6db332f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1c85279fbb6b75d7fb8d7c59c2b734502e51271cad90926e8df1d21b67da5aa
MD5 aec0e1495626f93dd12f956ae5b46279
BLAKE2b-256 a25b2ee2e70033a49166d4633b15e3a8831cf4bd8d44fb006dfb7475252c3e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 455c2fbd1de24b6fe34fa121d87525134d7498f9f458ebc8274d7940b473999e
MD5 3adebc2b5d8556dbd4c3b6e9973e8433
BLAKE2b-256 6790057acbae43bc1a01a087fce97759be8817da206e38199b84b1afefcd38c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cdc23a48e6543402b4c56ebf2d36246001175c29fd56d3081efcec684651abc
MD5 c947913e5984ca16fb3bbad362b62d35
BLAKE2b-256 ec5bbfadff2c97234694f639ec415e1af8e6aaf6a84d544c4e06d10ec3823530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdafcd0823ca804c39d0bed9e677eb7d0235b1259563d0fd4d3a201c71108af8
MD5 540f04cbb7304a61df84e91445e6a774
BLAKE2b-256 253d1f77e532480ff3b8906ad6e9e1af30d5e1c0e6d09daa0b9c8f4a503f0af7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a36bd06a5a147350e5f5f6903c4777296c37b18199251bb41056c3a73aa4494f
MD5 55a041611dad0f53a0d516efec968879
BLAKE2b-256 a9a50c66474154667926688d6b97b186e0ff03dee88f49e2ecd4c306d453a86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9277cd0fcb96ee5dd885f7e96c639f21afd96198d61ca32100446afbff4dfbef
MD5 bfc3b21b0a5a4f6acb9b90b3376287b2
BLAKE2b-256 0c9b5902573d272a204bb3d92c11136ec2f19137c181445f22492b7bfcf09519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b3e629c889cac9656151286ec1232c6a948ce0d44a39f1ef5e60fed4f183a10
MD5 dcb97d86e8740a82230dbb68fc1f5036
BLAKE2b-256 458a570e855eef25d8273e774e492bdf829b94ed94829aadce851e80a030f0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7115da36369b3c537caf2fe08e0b45528bd091c7f56ba3580af1e6fdfa9b1081
MD5 d7ffee7066fd54ce44199c26fd3d1d0b
BLAKE2b-256 2cfe4d61b6a339a0dd71f0651c27bbd0279fd117151b34431e1c904ce68be27c

See more details on using hashes here.

File details

Details for the file spacy-3.4.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: spacy-3.4.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 afaf6e716cbac4a0fbfa9e9bf95decff223936597ddd03ea869118a7576aa1b1
MD5 1aa799424052a4514cdb764d3bfbeac1
BLAKE2b-256 b652bf3b5bc4bf86087b694b6012aa8b5bd63bd7f067df00d29eaa5a6c4f3586

See more details on using hashes here.

File details

Details for the file spacy-3.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ea41f9de30435456235c4182d8bc2eb54a0a64719856e66e780350bb4c8cfbe
MD5 8c4a89b3528445fd289f80475d606d67
BLAKE2b-256 03b79897d906d764402c0a2cce809ed459b65064daf3c3cd731fbce559aab063

See more details on using hashes here.

File details

Details for the file spacy-3.4.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.4.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d211c2b8894354bf8d961af9a9dcab38f764e1dcddd7b80760e438fcd4c9fe43
MD5 0ab6bbd7b1369463b8bb1989123fdaa4
BLAKE2b-256 7733c61edbece5232f1fa08eb5e0269b26bf7767092abdbc4ecdfdf0e03f1a60

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