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 60+ 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.0 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.

💬 Where to ask questions

The spaCy project is maintained by @honnibal, @ines, @svlandeg, @adrianeboyd and @polm. 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 60+ 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.1.7.tar.gz (1.0 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.1.7-cp311-cp311-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.1.7-cp311-cp311-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-3.1.7-cp311-cp311-macosx_10_9_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.1.7-cp310-cp310-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.1.7-cp310-cp310-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.1.7-cp310-cp310-macosx_10_9_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.1.7-cp39-cp39-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.1.7-cp39-cp39-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.1.7-cp39-cp39-macosx_10_9_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.1.7-cp38-cp38-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.1.7-cp38-cp38-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.1.7-cp38-cp38-macosx_10_9_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.1.7-cp37-cp37m-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.1.7-cp37-cp37m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.1.7-cp36-cp36m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.1.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.1.7.tar.gz
Algorithm Hash digest
SHA256 5c9d32fe0f8edebc4702609561dafda0c32ef4c04de056a87cc835c9079c2473
MD5 af251d1ff34abca614156a08b1e32593
BLAKE2b-256 aaa59ed289b1d1b016763fdc08acff05fc5ea2f600e17a503e75b70a8b520fbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.1.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.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.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 183023b495d3fd9851324bfd4bb8605dde4a5887e7052faf7bee11d2049b111c
MD5 2f5562761a9466d4e47f25ea63832bd5
BLAKE2b-256 85fba0b2ed6c913613849c975ed569f9a88303c466faf01ac2aac3dac890ddf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b97ecfad6a55516b12c66225053323221d3e99f01547d3d1e1a063ab8149c64
MD5 2baba45f0474357ff97d724bb141a65d
BLAKE2b-256 d7eac79ef8b83b6be1668cdac50343f6ac9a51be94f1058e6cfbec82d6c2c9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80a8f31f476cdeed132c5f99206b7b1098f48d78e476f22d725de7420b1eaa0d
MD5 41f8cf91b7c2b33b7768c6b19a2aa561
BLAKE2b-256 a51338d529fcdb7181893392012594b44c58e1d8375bd0ec6601da41a5ab1a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 461e0803128bc19f333e09f820b27f6eeb4e9419e00e7054a88633c510d98075
MD5 d1fe59a0d5c9468bf59debd6fdee6a30
BLAKE2b-256 becc69695817890b01a78a7ea1b07945209fed688f2409b339711c962f4714e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.1.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.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.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a7f1b471c6f185931fd1054ebd9dfbbdcbfe0320f6d077de316b158c3a205f2a
MD5 3bedde50c1dc4f7f14abdb768f91df25
BLAKE2b-256 996b530a71fe24330ea0f58de2a3c8ca4d4f94408fb3b6d40846921ff3f447bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26905940beb18aea94c3a7dbf5dcfbf1063d0e426344915f8e6fb3bce710c644
MD5 905b0a328a0182c8335536820e4d19d3
BLAKE2b-256 bbc90e57b743d9183d4a4d8d13a53df72817bddd4068a519d00dba20b29ac7c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85959e9196c476ce6f92c345f37e301a6b2f9c5a50cc5b65e7ade2d0fc74b04f
MD5 f0ed965df94117b318ce37b77a923c33
BLAKE2b-256 f46a4446de658cc66224984370fe7c1ca646f48bb100526a633043b886897ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 041b22d8984f40a2e89f5bee6d66e5d44a1d03b42eda8c33e5ce30babce0bf32
MD5 97adaee050c4616508d6cb370e5a001e
BLAKE2b-256 2dc32b973f31908911427e68db8f96c7979b6c2492fb6042551b93df0c223bcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.1.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.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.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 032f9582bf33e99e5fe4431ffa0864efccaac1fc5c7c2b1246ff1a33c7ca2be0
MD5 64c3e636ea1ca36d8aea103bc9078b76
BLAKE2b-256 5b09fb5234425a916b8f86195c0e44619e8ca758fb5ace49d5c794e5459a0eed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5ebc15e475b52c7ef01d144350307c3c47258dfe1c31aee7e51c1a5be9e867b
MD5 75767fa56a7b9b5458688ee9b3c85451
BLAKE2b-256 ae5d34d212a59fb7416a8df3c072ce12e20315e99c60d318a9fc15f3029233aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a422a58a77c130aa401c0a9373ac7dbf90682a7726bf9c0fc782026783af9fcb
MD5 01a1262ab8fa6649186fbf573a34ff09
BLAKE2b-256 2440bf539125e2cdd901be83a743f9df1616068108de5d59946f1abf481f96f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4c707393f609425cec12b58adde60012f3b8f25e5c89a88dc89c6c41cc17592
MD5 85b5c665634f5813b7188d9db1f37046
BLAKE2b-256 59de251caf60781590f113b823828584e4bf03f79372a3734fce3ce759bfe609

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.1.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.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.1.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6bfa0ee2c7cea469937cde77fdfc80780b308123caaed7ca3b48b03cf9638277
MD5 d470362dd8503628c79ad65110f3126d
BLAKE2b-256 16c0ba0c84e7b27c789b5afee3e9ea1e29fc262a89f88a3a0dd6c0b231622207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 499f6f22a044092146e0efa52d8a713c94614ee0b06bbd521e94f4b891cf1c52
MD5 1cc528494dfb7da6a117aad7fd88c983
BLAKE2b-256 4f915286df4bbfda55be533ecb24ff58e448770fcc5801b6e2bdbdcfe793427f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abb9b8fb66ba2a6b6a89f889c93c963e05d76daab8163fc956993f3156e316bc
MD5 7cb1a567e636bbb1e3459368c90872c7
BLAKE2b-256 bf2a5d02c2e62d8d8270a4a5fb3a5882358041a5ea8a97afabf15a71e1929a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e4cd9bc2342b93df69b7cde7e048d8494b019a48b950e47365dabb9a9c6cc2f
MD5 40a83d8e67a0f709d534c3a5e63cca09
BLAKE2b-256 cec9c6da0c63b2a30a0e764371e5cb6409a51df73037cd2c8cfdee568d640967

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.1.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.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.1.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9ca6327b4a49b79a9abbbf8747f6efe1626797574f1126c5b1fd556a6514be0a
MD5 651e30aef010a4000bed69086c459650
BLAKE2b-256 abee79dcaefba5f8989a331f53e76b38c42f2b4ee9d220574979e4c4a7f36504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c982caa082e0eab6da55e08a4d5b74b92c83f5466d67952a6fd3a38db0b5056e
MD5 58c94d9a27e058dbc6a58008e10a742a
BLAKE2b-256 4311c1e6f37cb336783fba9259eb0097b9da7a311621279c26412c2bc18c89bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9fdf62abff1cf27f9cef99dae6d018294462e4840e87d2fdc63fbbfcbd6022c
MD5 ba22e530e560f3c39a8bf1fbab6fa70d
BLAKE2b-256 e5dcd5306d5cfe8cb16093c57d006430c7494e1dca3dad35441d4f865df50ada

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.1.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.1.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b3968d52607f0e5e746372621a9ab984c0f0865839ea8d54cee2026c83fea68d
MD5 5a8c24c2ae1070b3492f9a09fe00332b
BLAKE2b-256 e2c38b90ef85a604825aec473ec625b9f247d4fc5a80c5146ae0a8a99807e00c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.1.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa541d7f19588d7cb3890f1c3e4389f807d346352aaea5b98883baca9bdda35a
MD5 14db6f2666b828cf0206f39443a3c83b
BLAKE2b-256 a0e5d651319931801ecda002039b0540bc27eb03652d9c709bcfb0bb916aa6e4

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