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.4.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.4-cp311-cp311-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

spacy-3.4.4-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.4-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.4-cp37-cp37m-macosx_10_9_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

File metadata

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

File hashes

Hashes for spacy-3.4.4.tar.gz
Algorithm Hash digest
SHA256 e500cf2cb5f1849461a7928fa269703756069bdfb71559065240af6d0208b08c
MD5 d96c43a3bb80da5cddc9863795534e12
BLAKE2b-256 2cc6edd477f19675c10c4afcb66e56be99a7e0e69183164bb6d7bbd2888a20b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.9 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.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 10643c6d335a02805f6676738a3e992323cfd9438115cc253435e5053dc93824
MD5 c2beb1a1a34a43818952095b5b901188
BLAKE2b-256 acefe902e429680e460ee7eddcb9698d6712a06deb24bbf9388d31ec97a0a5b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a21187ad4c44e166dc3deed23992ea1a74d731c9a6bdd9fca306d455181577fa
MD5 5511c7d3da2abaac30caf43319743853
BLAKE2b-256 8560a7e88bca6dfbc752eb8908a887922ad480408d729e96d726e3bbd1ee39f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29d6bb428a6bb19e026d8bbb9d4385c25b21e1ce51fcaabadfb5599b2390a79c
MD5 e8f274e851d2ba7fa4c0bfc3a5902db8
BLAKE2b-256 d6f9d2fb00c85f335f616b24ba8144e35c9e1c8122cb020c030353604147c5dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddeb5d725b6fa9c9009b1ff645db8f5caab9ed8956ee3a84b8379951caad1d36
MD5 507e3f7b0134e9f50b99b28a9aba9f6d
BLAKE2b-256 566eee489343d1a9db47f951d85bbd8a521501a238cedf482957feb62ae530cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa027e69ef9fe42c8b02b940872e5bde0ce1bf66b6bf488c6493e3ce660c4b3a
MD5 3aa255e72de2d478bc21557a1c327a0d
BLAKE2b-256 98edabb788e49a97d3d3691be25f6fb8fac25742c52d8f21039aab370ec572d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.4-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.2 CPython/3.7.9

File hashes

Hashes for spacy-3.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e782c8a7c4805cc1b34ed2b11f72a5cf2b9851e20f7afe3e97caf206f19f761b
MD5 b52fe19ff546921bbaa5efe81ce15d65
BLAKE2b-256 6cdf5bc8e4855a834be94ce63902bd473b4451ceee2eec3d9a8e9a0217cabe68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ade19c1e676cac2546f268db22bc5eba08d12beafabe80f1b9f06028b3a0b52
MD5 ffa008b14c5e1c49f94832ed166e0b3b
BLAKE2b-256 899ebe2cd3b3963606a3c2a43684c37e12ecb7c463d6cc42699426fdc6251a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2cad9c5543f03b3375c252e4dd45670ee8ed99c925dca15eadab5084fd1b033
MD5 49db36e46757f9a3c2ce8a46f8f548c0
BLAKE2b-256 61bd6f1bfad2c48ec71aad1b575e02a6fe423dcdbdbf578a4b3b71bb7b3e016b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d98511dc8a88d3a96bcae13971a284459362076738c85053d1a3791f6cde92
MD5 4b377ae59a9954e0428cdf3dabdaaec2
BLAKE2b-256 9fdd308cd054686c05b8fd819967aee5f96755d646dc4da9bac37b9b4b04d568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07a10999a3e37f896758a92c2eed263638bcbf2747dc3a4aeea929aaa20ea28c
MD5 db8864b1958fa30ba86950acfca00fcf
BLAKE2b-256 8c2b859bd0cf3b1fad44793917e5c7b4dd48c867f3d5353531661d6bdeb1680b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.4-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.2 CPython/3.7.9

File hashes

Hashes for spacy-3.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b7791a6c0592615b0566001596cc48c72325d1b97e46e574c91bff34f4e3f4c
MD5 bbbe60b3fb050a0585ab2e1fca7c6b1e
BLAKE2b-256 09afde51e2b7a6ea8c65faf733db97963b392d3c0ba736f15be804df1414df90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71f9449ffadef85b048c9735ee235da5dca9d0a87038dba6d4ed20c5188e0f13
MD5 4a69a1f56ad6f56a6f1bad1420ce9c56
BLAKE2b-256 75654ff7d72defe4d06649839e677082aadb293e5a496d77357283f56934796d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31e9a637960b60c1bb7a36a187271425717e97c14e9d1df613dc4efeffefcbec
MD5 a0ec1c0aecab5bde59b3cf3687c6ba57
BLAKE2b-256 cd340bff458c60cb70726d93be3de7bfe2eedcd9803dccebadd6d969a40997f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a495b0fc00910fb5c1fbe64fdbfe1d3c11b09f421d1ae4e30cdb4c2388a91e4
MD5 eaa27a26bbc81ce8524a23182d581ba9
BLAKE2b-256 f2f1d434d79ef26d6c6546a3c38964f0e1a8afc54f97c1109d2e426e7c858a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7044dca3542579ea1e3ac6cdd821640c2f65dd0c56230688f36e15aca1b8217
MD5 744c6aabe8ef2c484b144cec0d86eef9
BLAKE2b-256 49e9f31df79b10788295b4ec3e57110af8c5b38ea218e2155e691bb47eb8622c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.4-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.2 CPython/3.7.9

File hashes

Hashes for spacy-3.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c1a5ce5c9b19cdfb4469079e710e72bb09c3cab855f21ef6a614b84c765e0311
MD5 fd1d5dc63e37ffa70b65e783c77efc51
BLAKE2b-256 f779cb47b43622987bf64884bf86323ddfec493f8db9024387e1a579797ff389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bb7d53f1a780bb8cc1b27a81e02e8b9bc71abb959f4dc13c21af4041fdd2c7a
MD5 f2ffb576761c18c7560ef5931a1e1171
BLAKE2b-256 d7406782cce8e660f0414723bd607f33f9d12e507fd62535693eee4a9ca25a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66eaf4764e95699934cbd8f38717b283db185c896cfd3d1fb1ad5c6552e8b3c9
MD5 ab83a693b188f6bb8e96e343dab3ab3c
BLAKE2b-256 2b1f280223e35795d7bae44f4649b3676869ee1fbcdad4008f412d37ff5dc198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f1edbecfde9c11b17e87768bb5f2c33948fb1e3bf54b2197031ff9053607277
MD5 25fb7105ed2b02951c3613ad7dd2740d
BLAKE2b-256 7b26504ee879fc4094d2b42fa1d1d21e3b2deaa5c31526fd9fcf91b7b9c7cac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ccbede9be470c5d795168bf3be41fc86e18892a9247a742b394ba866c005391
MD5 cfd4444d01f30e16f31fbe33484d7b7c
BLAKE2b-256 f19059653de3af78a293066c991d31ef35ef0e1755fe5658f51ce967785c0751

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.4-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.2 CPython/3.7.9

File hashes

Hashes for spacy-3.4.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 95f880c6fea57d51c448ad84f96d79d8758e5e18bdbaaee060c15af11641079b
MD5 3e9520e899242d6049f24de58ba37336
BLAKE2b-256 d80d5f140e14d05756057d9c8668c5261d20ee9c38e979b70cae070647199f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 498bf01e8c7ab601c3f8d6c51497817b40a3322a3967c032536b18ce9ea26d0a
MD5 deffe8b462e18f79724558554e180b95
BLAKE2b-256 b1cbc0f5bf7add9b1e666bd198c8b547b6488b4d0084dc90d042b2c696929a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f4736fea2630e696422dfe38bfb3d0a7864bc6a9072d6e49a906af46870e36e
MD5 473ce01330e8d7eb272e3a4d35393fd4
BLAKE2b-256 887bcec4948b245542d4e76a53261541cd8fd3b9a06ce13ee1ae7b84562d3990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8979dbd3594c5c268cedad53f456a3ec3a0a2b78a1199788aacedcd68eef3a00
MD5 91b9d6540a5d84b75c442baf7e2b9ee1
BLAKE2b-256 6142d84ab1916f155a96a29fafc76c99ac75c978f679f451b1361d1256897a78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.4-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.2 CPython/3.7.9

File hashes

Hashes for spacy-3.4.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 15e5c41d408d1d30d8f3dd8e4eed9ed28e6174e011b8d61c1345981562e2e8f5
MD5 a60fa7145fe35dda91c3b99b017102e2
BLAKE2b-256 9d5c6e6a6b6eae852021e6eb8bb5401a325b88a47b30b9c68995339158ec3e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcb7a213178c298b95532075d6dddfb374bbe56ef8d2687212763b4583048da2
MD5 140e14f2b5bf59cc7dca6c4605413e5e
BLAKE2b-256 d8c685d754ba6343fbcc9ca243e3d72167c4f0bba37f465b6df055bf338b84bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 486228cfa7ced18ec99008388028bd2329262ab8108e7c19252c1a67b2801909
MD5 c757e06a2aa7516891e680cae9bb6b25
BLAKE2b-256 f12a79074eb2e4af00d4b246b1c6edbb6bdb5c00ea9559259427e3108d12dd3c

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