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.
⚙️ 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.
📺 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

This version

3.6.0

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

spacy-3.6.0-cp311-cp311-win_amd64.whl (12.3 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy-3.6.0-cp311-cp311-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.6.0-cp310-cp310-win_amd64.whl (12.3 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.6.0-cp310-cp310-macosx_11_0_arm64.whl (6.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.6.0-cp39-cp39-win_amd64.whl (12.3 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.6.0-cp39-cp39-macosx_11_0_arm64.whl (6.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.6.0-cp38-cp38-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.6.0-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.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.6.0-cp37-cp37m-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

spacy-3.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: spacy-3.6.0.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.6.0.tar.gz
Algorithm Hash digest
SHA256 3185c28cd005ba2e0c2dfa9755e262abbad20e885c08df0040543c3092236221
MD5 d449c63a4af33cfa80088cb57f5ac86c
BLAKE2b-256 9a92314ea496b9e91695be405765ce45f207f352e5ce3ac564598ead9de2e422

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.3 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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea837638907f474f2105f13eb8c58800a5e34723c992ab829bb3368445d28c3f
MD5 8f7ff99c3022c7bcedc84c53a9604ea7
BLAKE2b-256 464aaa274478db4ef951e8d8ae9e9b2294e04af66b86fd3f53dc4c4490739a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f970065021a81bf4b216a42c36a8ac80042f65a55ec27fd6e9b480ebe8212724
MD5 8741f7fe3a4f3a6b76a20eac7f1c84e1
BLAKE2b-256 24ec22eddd786eb0f3afd08986a1f854dfc2314863ff71661bacfbaffbec4b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73f04d83990aff7030808cffcf5a1d0ce20afb019b5a2ab675331e4ff7976e28
MD5 43cdb4f893c02f9cf3fa9a7deacc7c5a
BLAKE2b-256 0498f61e449d1455301ac8339190921f399d72f88f57fdbca9e959846376966b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 349873356ead1adb297ab3c44ca210282b4b3ba146d4ee70df93d56e6567ff1c
MD5 e9e8e1ade2613acfaf192c4e4d3d232d
BLAKE2b-256 42979e53df5890beea4430a868b102f1604619f4a21229fd0b6de3d6027f7892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03b84f934cbdd31626ce37c545502bb3ce50c8a27c12840089c4921c4b691b90
MD5 35917aa1ce1a3c2e9ada19688437e96b
BLAKE2b-256 9a4681502755d3d6ab2121cf006e8b026ec3087ae19b6563d72391afe9efb967

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.3 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.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ae146db6ed0fb827ec62c8b1bdc663fea61573f60a63772ac1f04397ef52a73e
MD5 257d671fb2fa173dc17bdd8964475e12
BLAKE2b-256 55b5e47da86570711702b4a82bca2389efc05bf65611485f4f52d06536cb812e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fe15e1855ee949973551930ff1c64d36b6f47bfb8fc535688ac8c9d4ca32d33
MD5 2ec9baedb4f33456fcf1b271ab441d34
BLAKE2b-256 8fbc213638f0242858d936c171f4e32e431a6fbbe703184a944a81c065cdc414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5a79396e9e56c221595d9d91a966104cea3ad13670fdcc1370accbba3c3590d
MD5 069da389f1a596a1d41a4d5aceeec3ba
BLAKE2b-256 2c77ddb05c096262961c94f9f3c44bdfa8a2ec0d380d865684d6d5125f011cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e0e659a9704a172b4eeb7e6350c0b88dac66171918f3e7e5389691399b41b28
MD5 3252c007ae2e204f7af6e620676e54e5
BLAKE2b-256 8383a0cf865a307ef298bfd368adcc6a3baa9cb98074c74acb90efeca468be07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69ca3bd2490a33dbb20cd1f2c02a66ed39675e0b20d0e4ef3fc6838923cd7397
MD5 69eff3d989fb7119f0b1f6c17082f9b0
BLAKE2b-256 e15ccbc36a92ca4c68c924feedec3e683ea9a437cad72004cd76dd3b52873cac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.3 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.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 99452c54f28f2631006d47bd374892c0e933bbdd3ff704db24aa9eb8675c67a8
MD5 ea8efb40aac7d3498a188275180e99c0
BLAKE2b-256 cf07bbefbe7875beedf60711a2a3cb4f04ed820172d078d5b7b219eb9443d3de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 519b4bd4dc71868e2744607f947a6ef5feee27ffa6755fa420122019a600230c
MD5 259ae6f305e6d9c9e65a1208330d2c5d
BLAKE2b-256 4d3038bbb1b96efcd07d2486e4cc6fc9e4e4806ebe8e01fa79b14772acf1cccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3745651de410d641ed48f1e2d9ca814df6599d9544cc27d6f37cc91dccd74ff7
MD5 2ad434fd7d9e6de48d08b5a0eee08e2c
BLAKE2b-256 5d412d4194fceb2be8c10668a9e89d2df3deaf7fd7f5cff56913493a2e9552de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67973d8eaff878756330d323d6614b9af320c85b8da9584b692c07a631e5dab5
MD5 6eb6e10b528d48c597834bde8428a870
BLAKE2b-256 f7220ed02b78fd4125246b063d8fc569d997785b4a7df09aee70315dd5fb509e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 009f216f2276c749db75c7354b92ab0b02bb01d000d30a7134e8d88518f0abc0
MD5 e7447a774bcc92fe8bc2037883c524af
BLAKE2b-256 989e302ddb4586707a49a6b9a9cb803ee0cb10f7f1af115ada0b48aaf21189ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.7 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.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf529b1070a52f51c25934011ecf8cd6828110882ee9355b9198fb40776c067d
MD5 a160aed5f50772631c7b4c276ad8a656
BLAKE2b-256 4d912d49cbbba5e8e77edc8872dbaa8fa0bc92d49fd144480e87602698eabf8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e2b23b42c11865c24cc7d111bcf9fd6fdf9a9636ad2e145217d88e113be7b83
MD5 5525ac19b5b583851f497e86f3c46ab9
BLAKE2b-256 f3d24aaaf2de37ff85a162f84d26c7a075d9ce239f5a619c2917fe090f9a06c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b42890ef9fcae272a855e338d325a9582eeee0b35a2c10ea4e278f1f869bdb5
MD5 31f6512c61fb1a5ab003eb8eae046298
BLAKE2b-256 2af7e7c7cc55955090ef63b11990462ccdb50f602cd4426a346d4c5f11cc6e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aefde005f41ec86bb16079d1f55015fbf2d18b212ce4200331f1e29312af0fd
MD5 a3f6cf5ace67bace8d382da7168d6ab7
BLAKE2b-256 9142a43dfe522c524ef93ddeb20f57bf5aab6f9958715ab4a78890b1e583f7c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70b2b42d5ec6ac07e8dad5ab1403bd95bd4cce2f993225bc08254054db0a3df9
MD5 8271d4ca52788eab80b3b0aa40318891
BLAKE2b-256 17f2a2edd907ab4c11b749b73c803482f99e49e3cc6afe4958a8ce3e0cd8efff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.6 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.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 15ba8ef22481d4cddc892c357ce678f0440360e9f7ab3bd7d674d337dffab190
MD5 c9f9789c7be6ff9e57d38946427d32cc
BLAKE2b-256 1c25edec4d6da679b0e3b8769a28888763a5d229fa647e912f7ddcedc5010c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a52e74a9671983941477203c55c64ea1c8262f29e8b4a27da86b009a4c404f15
MD5 a8a023f618157087e79d6953fc7537f2
BLAKE2b-256 b26d7abebaa1df4d895dc5fad6eb26ce2b7f1e401d709c17cc3b8bff62248884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3b9b3ae656ff056c074d668aeacf21208ac1a8af07c7179f54eddf7d440ee1c
MD5 458134945195c8cb283fea6aad156da8
BLAKE2b-256 45af10290d4520ebdae789a8259e7075178e192cccbce9726ada099657c67bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ff275cf735e6c4e85facb0fcb4bf475455b6cc200f4651625b041785c68d996
MD5 269d2be215354ac979aa7444842df11e
BLAKE2b-256 b6f4c77002d0c4625ffe910d982b90710cbcfe7c958af389e04e1654de6199d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.0-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.6.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 37e9d13943f409e08b77c6fb67a7ce8e59c1bfbdd725d088ec99730bc8043129
MD5 a80b756c937b50e9f6ca9adcc222a9d0
BLAKE2b-256 aad21e7dd01a14bf76758a7c8232cf700669911baae5c89fdb06249029477999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95eb01afd9cff66d7d5890d3520db1459dddacb600f9de6e19607315829400fe
MD5 8b2f51d06c81ad1e1708cdeda5a00dfc
BLAKE2b-256 49dd00584c51b46703a83745e140724829a63133fb8bb1f8fa1401b2131ee8d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eae4e7b4139ed0de1061c28d730886773d2dc7ae4e94ce37547e535b2acec3fb
MD5 3be0f6d41d8eec430ea2bcee3add5bd6
BLAKE2b-256 57bf0311adfea9585e28f0927912dd44ad2eb4096b9d0e63b01fa506369a0605

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