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.2 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 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.2.6.tar.gz (1.1 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.2.6-cp310-cp310-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.2.6-cp310-cp310-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.2.6-cp310-cp310-macosx_10_9_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.2.6-cp39-cp39-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.2.6-cp39-cp39-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.2.6-cp39-cp39-macosx_10_9_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.2.6-cp38-cp38-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-3.2.6-cp38-cp38-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.2.6-cp38-cp38-macosx_10_9_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.2.6-cp37-cp37m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.2.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.2.6-cp37-cp37m-macosx_10_9_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.2.6-cp36-cp36m-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.2.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.2.6.tar.gz
Algorithm Hash digest
SHA256 977edd4ab67660e551359337d633778434dfdf2970501507bd37e94f944a6aee
MD5 f2c1ae1f4002cb4962aa7520e9cb2cc2
BLAKE2b-256 45dd9dc5f01240bdfc5e0cd8d693af957e0d40e3ba05e6a003990fdd5d898209

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.2.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.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.2.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 38d34846588ff02ee58d7ba988e3fed7185d72cc58ece5384aafeb5321966b6b
MD5 e32f6e96d3a5850635dbea6fe63fbecf
BLAKE2b-256 d854fc432b09b9f40b92e56b0e4a9e5c5e1ed98da7c97b2ed84eee8056bd4ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40b67720735a0fe5d45986900c2898d09a44d7ac26179a7d957828b68c8ee3fc
MD5 5296b5f752b969836746140072a9469d
BLAKE2b-256 01e157cb155e669e2fe02f1ae42d93fa6620579815f7b5d4d77b3942b6878484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e815c5d65b904ffaa560d05e7993e30289f76b727f774e8aabf48f0f948d8965
MD5 6944c4bd0e3e1ed8882739be9b0b92ed
BLAKE2b-256 cf79ec4bb1c3ee3d38dcfde2e35e21cc9a3220c890ca2e448e2c1c5606f37500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccc5e0165fecc1062f3b10a763d876c9aae9e1b77f8ec873aa885bcd524cc554
MD5 b6593de1ae9793c7e2eaa90aa0c55c40
BLAKE2b-256 bebed7601189254c882ba4d568c6c229e5f6035c59bf7a96b632a308681950f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e3f4c0786fa523fd2df7fd7db9b215f884a0257033f08a36bbcba44ec5cbc8d
MD5 e6e569f0e00dd0fad2e891aa87437736
BLAKE2b-256 76ac5ed3f683710842aece877119c9530eff5e103f522e6a0e41316ef33ca2a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.2.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.2.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 155211cf47087b46be9a4eb76c25eb698d648a1a5b2fcb97c4cef7d689bcd116
MD5 4f6ec99a1575bcef3a8d6b399c90afca
BLAKE2b-256 dfb9f505a912b51e15fcef2cadb9cd621d2abd064ffe1b04b4bd017404e513cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a14ed5dfc7e62955e7c089bd9098a0b869451fdaae3c60873d0a7bcbd11eb33a
MD5 ed56bb502a1ea7b051dcb97dae50bb60
BLAKE2b-256 aac6b07ce28cdd8c9af3c6cf96b4a881db997746abd60db9a37d9dfaaf87af74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0c82a733834ab0970d98ac3c2a4328b71c525671c7192b88fdfb022e6b0717d
MD5 b9a4f930ca2b1615e608c0299b6ab43a
BLAKE2b-256 3b4610d83daea9b17f87116e5dc593b6d34068641f0d170d740dafd1b61130c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcfb9dea0eaa4f0e9991605c40b2fe24610e8a777a4b527d282b73cc2cdcf1b0
MD5 d2c207636103f4ee9aa551f81b6e886e
BLAKE2b-256 6e0e5f9a93b8829cb1487d45e9525689c1b3aff3d8a62fe8b32314c0b01145b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e44257603f3e97fb402aba732a7de90716ddf7b66de318ddb7f96c3a86ca4cce
MD5 f3badd4810fd43141e207ce67670f5ad
BLAKE2b-256 5295c2a6539886e5205a51e67477a8c8df49296f419e6053e2775f4518538e3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.2.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.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.2.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 86e0a62467b12dffe751552f7da9e94bbeac0ed348a94c514b540f876bcdac49
MD5 f23f0b8c8007bfa46f2484cfa4f295fc
BLAKE2b-256 ff084c74d350b6159e63f33e721295f6c2e6f9d04a03171e1254e0eb9b21dc99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fb8b51d222ab0d034d3a228c8491ac8a33b954998bb74374498dc26d4a3cf28
MD5 bd60b08caceb3c356da41b5c17cec071
BLAKE2b-256 ad905d2d1625bf34e2eed0fc2eaec9506845c3c75cf9e4714b2c968addfa14cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cf64d6d4ab98e63e1d60b2e220746864c918c8a62b782195091d92cadbee1ba
MD5 6df08c1a38ff13397c6dd45323b8c19b
BLAKE2b-256 24360a1b2fd515e3d3e2b1195550efcb2b96a922d93e9d82842852e83ebfa8af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e2ae0476c0c68311cefa7e27b43bdcb6feb6675c097388661fbd8d95a9ff923
MD5 425d62deac822ca8a8c7f1abb5e79058
BLAKE2b-256 6b87816d0fa992c1e88e2d1c370f49133fca09171a0654e95e3c9f05817ee383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c198a43dfae39f623ca926aa38911290dc5452217ff956b1b1c914da385c57a
MD5 27979f5c83b31522449d87b82631d5a6
BLAKE2b-256 330cbe5d0f877c62bfaab06d28abdd2d28c4abd9f23d18d65bf24cc60b8ad3bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.2.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.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.2.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bcd151c8c7b0751818d2ca485f2e26f13436d84ccc43c2c6f93e1f83e3f1eec3
MD5 5c0256b953ba683fccc5b489d1d7ace8
BLAKE2b-256 fe9352ca3436b889e8aee8aa9c0f58758e2627343093a8a92585ae899c5f32fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aec3b104a17f70b28d1a7b9b48957614a376cf91fa57713ad358f0e85cbb53ca
MD5 7fa42a1db33aed5edd9b29526cfe65cf
BLAKE2b-256 5d95c504c079618a52c7f5d854267d3d8e84cbde566cc8b5296a059135e49a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bf79721c0b9544d44a2186c6cafa4d8076b95e691783368d3c7a1d58356e6af
MD5 8137a222de9389fed9d508038ff91ff6
BLAKE2b-256 5e0dbe63a4df9f34260486e097a58f18f5f55cf0abd8f4ca6b6fc7dc6589d2a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8be08d915ad13f5f6e10fb90d5cebd5256e5b1383474dd993181a0d19f01d5e
MD5 d21dd7ff51b0c115aead6a6d9bc6d41e
BLAKE2b-256 691544af9a32c7966c08f1538dbf20de107e08abcb953def89613ca41108a638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.2.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.2.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fb52bc1f5c5d6daf1ce36a9c9ae3816e705901de30e71c9f288c1bddea8ea62f
MD5 a74d07804cfc7c661429e7d3cb70ddc6
BLAKE2b-256 9f54bff12b508eeb39451149b822fc2733a186725042ff7565f16d29cf98f7d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 295007a2d0759aebe5b0aa8dfb58733aaecd6bba032d0c6ba48faffc287a55a5
MD5 3361cef8bec83d2d903889100438839f
BLAKE2b-256 e3d2c60cbd646cd60be5edd4ed87bd83e854a892d6790d7d8834d17c869eb7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f1674474e21b1782eb8e077186c9a8bdea0d0a0b65007a5418e06449dd95472
MD5 f7ef7c1aaa097ede4e9b87e9f871c244
BLAKE2b-256 b641031ef71a992e928a1be2a2b46efa98f61ae62dfbb12cc11b39ba741eeed6

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