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.

💥 We'd love to hear more about your experience with spaCy! Fill out our survey here.

💫 Version 3.5 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 →
spaCy Tailored Pipelines Bespoke advice for problem solving, strategy and analysis for applied NLP projects. Services include data strategy, code reviews, pipeline design and annotation coaching. Curious? Fill in 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.5.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.5.4-cp311-cp311-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.5.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.5.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.5.4-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.5.4-cp310-cp310-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.5.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.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.5.4-cp310-cp310-macosx_10_9_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

spacy-3.5.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.5.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.5.4-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.5.4-cp38-cp38-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.5.4-cp37-cp37m-win_amd64.whl (12.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.5.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.5.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.5.4-cp37-cp37m-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.5.4-cp36-cp36m-win_amd64.whl (13.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.5.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: spacy-3.5.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.5.4.tar.gz
Algorithm Hash digest
SHA256 9a9c167e9dcebfefacc75dac34a8e72becbe348eb45bbf06a6c0523ae05ac425
MD5 f4dd3f2ec723fda1185646da09a03f9b
BLAKE2b-256 8a5ce05f2e37d23d7a99a27edb6ebf41112e1bc39c4f22649423d38f8e223af3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.5.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35dec614492c849f6c6b29dc0a424502dc193f6775d4f55573ad7d8f55e06561
MD5 b40d51d58f13ac96fa3e287310ceff16
BLAKE2b-256 f42032067fef69358f6d5f6754a8002da2c9cc83bcc86137fd8ebe58a09b522f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0f7166d8f20c6332d0ed89a1bc32b3030f223c178cc26597b094190c853a7ed
MD5 58df361c6da7c427a548f19853fbed9e
BLAKE2b-256 810cd3bc935dd89cdc33dce8dd887f96585f87b82b430567bf9ab0e825a46668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aeb5f25ffb469c7c1f93a730c8810efe69ce65bb60318ae0e65b5106108df0c
MD5 1aa55fab259efb266f291616e4f5911a
BLAKE2b-256 37e310e518df774e6001eb8b1ca0e67627484c036c6d20d01f5e5589afa291af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97aea4aceb7d8a5a4183bad59957d6154d95e80d0b8a25690305fe5d4a8b8cb6
MD5 ec61e60ec95ac732c4883670125e9bf3
BLAKE2b-256 eecf64870132439414795563c94ba284c6156f8d836d18653bf51a4330745709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2796778a91f2d690864124a98f2fa4d3a82db6585244137d9283b4fbce21ef89
MD5 0c926fa9099c1b3d64b86e601fa13385
BLAKE2b-256 e6a9ad261d684c5c7dd592a97d6f898d6f39ab73ee5b116626c223f5d3694662

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.5.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 64cac9da114a2b98794a40e20ff2f8547dec01d44660c8d0dd64b2a5b32bf929
MD5 0195db08a745649e751f32f90e60a19f
BLAKE2b-256 cd00d995561b26d18d1c0fc2cfe75b8a839a79021cc92ea9630fc4eaf7e17b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e7992c6424fd28187064ee32c98998db6194d65e017e958993dd16f6953c1c1
MD5 a6967c94f1381a8e5e2267293b869e87
BLAKE2b-256 a4d13c43a7cbccd638222a00f908ae71c3e082be708be2404d844db245773c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d97294c588fcd05d0c644303dd54c8aa437bfd895b1c5e57f51ac0af8304181
MD5 5ffb79e85e636665f7879961cf70087e
BLAKE2b-256 1c99d2dbb3808c857c56a8d63c8884c2485340c38015c687c7b85e1719c1e8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abc2e347fa2217c97c602a591cd4202f3bea546e3beafe2b92dd4d2984b68299
MD5 e14f38c0894b1f8de6153450be5d8ffa
BLAKE2b-256 7089396727e1839e1628732047b1b236f8de397997f20dd5204d4efe0a2830d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39209f73508027a99ddf2a615ae99ceb6db84f9f10c0050c7dc0c78cd8d662e9
MD5 c929cdce797a9ebad5a31ea768b6a3e3
BLAKE2b-256 a8978d146f573c41da74ce58317983f364bc8962308add2a3c334c92b6bf289c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.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.5.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ad83768225e0ab2ee259ff5c1c759adb5c76649fb343ebd3bd777a3ec3742004
MD5 f8aa0562c1279fd7c9c262aacf937824
BLAKE2b-256 0d024042f245bc64c5f9de169f40bfac335915d05763499d1894c91d561c5aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed28a237c57f95a36b891d3b60773b8efb81f6c470f48fea7e4ec71adb8b85a5
MD5 62cf6bfc6a1b03e9f4a1b24d8e0be9fa
BLAKE2b-256 2348fa1a03daf3a2e0a8fea47e8cc1a68ac141bf0e760704b42c2048b61f7ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af50c9838bf2ffa80397fb20f02127b0b66f1b26dcdcee86185292199c803041
MD5 eeb731367ed2fe1d657dd1caa0606313
BLAKE2b-256 a94ce1de9abcf816770181ea7f2840b4701a85f5dd47cc1b66a97af3a7d31688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c270d2b37e6896b7959d493e56ed4d37146d7eec732253c91f07379685c08dd6
MD5 c5e05bf30ccf0d812587fa2d59914738
BLAKE2b-256 c12bc448cb92693d9e00b3c42c6e2ef1624912cebf9819b83937c60ed8543582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 abf05e7f64c9136602ec7cec54ff616c79dd89634ded5575587c619da9367db9
MD5 a13c977fc89684c9d10bac5c31fa8fe9
BLAKE2b-256 73121a11190b093366053c7541d4457ac8dd58dccc53fbcc21ee5b1ab3a97fb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.6 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.5.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d9b0d87f50a8e7592da2a7480956abd418ac143327b1c56244eca3c226c7332e
MD5 7b43ddf9be6af5459c40fd37845c4220
BLAKE2b-256 11b503feb05df01c555bd7f0e282255c5428191cc53d73298c59ccc933d7975c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fff8986c3b9aa9b5a99a1ad57e842985f71b450102d1e102d4ac951f595688c
MD5 766bcd3f9056d2a9a53b0c738e9e8e75
BLAKE2b-256 c8972221fc191b0cec2884ff65506dbf79606bc7c60ed2e83819868e7877bbcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1476db25cff811a43a19b79d12ce5b2a38dcbdc378fb9923f66aeb31c7f528c8
MD5 566e3678130b7869ef04b1f0f154853a
BLAKE2b-256 1784593c0c6b705133f358c0e1d67a5ebba65600f5028eb872c19b4a62ffe6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e9e0f9d95c6fbdc25f38e6d3bdad7d85723bcc8854333cc5f906d9a4db2b76a
MD5 e0dc1a4f87652eb5b2b5d93d7b97c117
BLAKE2b-256 f88cdc4caeb14947dbd1a3d851771d13f0a8e1582409725bc65e12c377ac5e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 406d09abc7c061ce1f461311557495608e25be5fc405f6a840e14a9a044f84bd
MD5 ddb0a91174e5b74ee5274c10ddca30c3
BLAKE2b-256 1e85617a679707cff6b10a9106b1d743030b0ca5c4c37bc5525fd8ad37280a61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.5 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.5.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ab802c2e06ba14556ea4c160309a8369fad4bd847895e341e8b0bfe7c0e1bfcf
MD5 04e731464de0b772c885a85968b5b877
BLAKE2b-256 30283767f61494aa4492255eabd7ee54e1423622c2e5c6af8a9968d8a352b6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b59bdd41b372c52b639c6bb3b2e4d37cc5e6175b1d187f25c33a6b56c1d3d08c
MD5 18001ac910b806ab1a634afa42291746
BLAKE2b-256 6e9230546ea83e12430a9e77b0181f33d647c38f78563da8ecb472e303df7ae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b49807f1c47430f02365e7b0f25d2bddaaa917430e3dc3fbf0d60e0bffd5a06e
MD5 71838516e3acb96ecc5eb83d2c2f91c6
BLAKE2b-256 aeb845b15ad0cc1a6b6381db98b8ef6e15bd03a38597585affdf54e8e08f8ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61ab38c6732be402063f55b8b004b451b17dd20ccad966ab3abce9738e3859e4
MD5 f5fb8ebeeb695659f26fc055c570f4a1
BLAKE2b-256 6685bff5d5806fa367a797294faff7c89d1d7b8cbc0a4ec343a4d4c2183af796

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 13.1 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.5.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a4c7ba041aaffc9ecd0a3f9dff86f392939045221315f52e3044fe1453fc5d48
MD5 97d86bfbd6f983672c996ff904d2a1b1
BLAKE2b-256 917223976d98fe845d8116760014f0a45a59c8ddd185c324deaad938fd529022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d1eb72163c8e8cb070bdafcfb8fb3c88f50a5b688500e8ef788fb4fb79e9997
MD5 0177779db0ad750bf4be887595549fa7
BLAKE2b-256 c7de46b7e51185fe62b45e4a58e78100e471d6ea9ba6eb880076d3eef98fc0d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0240874ed34d9e00df68cdbc3f1ca3741232233dc1194f24c18f73ae7dac7644
MD5 d028ec8458e850f0b8968295d319bf6f
BLAKE2b-256 8762dd56cc23c5c84bad1a781b93785a21a3acbb02be891d0061885cc8891629

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