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.3.3.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.3.3-cp310-cp310-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.3.3-cp310-cp310-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.3.3-cp310-cp310-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.3.3-cp39-cp39-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.3.3-cp39-cp39-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.3.3-cp39-cp39-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.3.3-cp38-cp38-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-3.3.3-cp38-cp38-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.3.3-cp38-cp38-macosx_10_9_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.3.3-cp37-cp37m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.3.3-cp36-cp36m-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.3.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: spacy-3.3.3.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.3.3.tar.gz
Algorithm Hash digest
SHA256 af58c0bbdfea30aa3701b9ad66ddfb5ac4122177e708ae08d881540011d795b6
MD5 bb16463ad5e079cc0e5fd0ad8016ce03
BLAKE2b-256 2740c199c7de0a0c0adaa300f99cb20e36132b54475251e5fdb1077f06ce8345

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.7 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.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd62d62895018ffbc877ab7f54cfd64352497824d566ad876e4ae804ae2e85dd
MD5 8b0e2592c3c03e2ce919b8f9a4bc02d6
BLAKE2b-256 22cc63b3568fcad8617168ab02d7c6d90555c44169b122b00ff87bd99c3aea11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6159901f9244c4ae1dc0c8186acc2f1ba6e6005eec324566588c8f73d07dabb
MD5 a760bfe571bdfe2bcb780dd5dde95330
BLAKE2b-256 37bb884587b530425ab53230316b7e1e1ea3b64d4617828311891f80028aa477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c94c01f50d2323ae530c3add186b5d3f96026e01495af00063ac03b98f95b39a
MD5 ca5b135081a28be6aa4862eadc4c4052
BLAKE2b-256 b4d41006086a918d7a39f2c0159620dd843497f6fdfa9952588138eb2646f87b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5afab9f08100886bc6358eb0c0ce0bcdc5cab4570aeb525f71a84457b545759a
MD5 52bcd0821b3708da3985cc8e17ff6371
BLAKE2b-256 d3f1939dd20309b5bd1b2671d1dc84a620c17cf475bbbfc33bbe9e00c279596d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e297c9085ca27192a1a58795d926eb0cf4f51d8b18753bd7b01dce736e7066ae
MD5 6efd091293d0f110397b9690348c5511
BLAKE2b-256 61da383808963a1435a8bf6b1fbd267bacfeb415d96e77dee535248217817ad9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ca0e326874fdfad795a470f642e297003079f0ed21cf244cb6e533deb6d601d
MD5 73d15c5a6c608d28a2ef52cc9a558bd4
BLAKE2b-256 7171169e12fb52b7d153f22ec58c421729405874df7b60b288585738d6a9fc9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e00c4e768a0e1e8dfcb28f49c776aaf856120734dc3cad4fb1e7f66fd2afcc54
MD5 9f4cf50048b9417a0770729b264c7491
BLAKE2b-256 211e0d788698d0f20ae49a159c73fbbe31929f24d94af36c4578d831235426c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c5fee287bee10286b491c084d0d80353fa76edc435a6cbfd131d4060e4f627b
MD5 832f3badd451c5cd8b1ded18d5612f1e
BLAKE2b-256 d1e3692d29f085a7ce776e273a673ecd2e1ddf7982bb203c8eade5a38fa92fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7725584cd0716eae955c864ce96c752c57f17a3ee2602bf78ed9070132356a50
MD5 f6f17786cbb21444bc3d9a7f8ce29ec0
BLAKE2b-256 56d0d06c5750f363d59ad1126cefb1af52627c287fe140e90e6454b04c1f4e58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 634ff0b5c6cb73ef7c05d809a7221a8114da0fb9e53ffa623da2b4107324f173
MD5 f68835458bb11f384de92936426e69f9
BLAKE2b-256 c2295152ea9362d801b452585cc2fd6596dba24aa5499d18d0f9e761140dddad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.1 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.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64c2c2fa982810175df8697aed63927027db6c74def2be57f2c45529a2594caa
MD5 9e7121e560ccb6d21dfd8ad472bdea27
BLAKE2b-256 51611df5577806b6ed93f5781f27a286c3fd099c7685fd22bebb9eb87966bfd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37628afe5c31bcfaf113ad0b2770ed037e56de43caa6ea03f4c4aaa304e14f23
MD5 43424217b53a3b10b531828ab63bdbf3
BLAKE2b-256 ec95257a5d618f5b83010c2d1baa886b44a389be455c4ca32cb0349048e11351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7acf5477991f634d43f9ec0ec05400978080ab080e141311c658d546eaeeb69
MD5 571a1b37c543f1409c200e044c50f34c
BLAKE2b-256 fb68d35a9a05c54e0c9a7d8abf0a291fc712b6dc6a470740e7012b579ad2682d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 405d65589c20b9eacead9e70426e369cb533eab9f02631cbd36ad202d766ea72
MD5 0218daa873871c9f7d348b7503a23299
BLAKE2b-256 77c59223b9424ad7db311633b7b377426eb7ad2a1c0d3eab4fd3df310c237e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12e88c1ed332e092d67a384b8687220f50bbe21ce6596e1a9d69250dc7a390fe
MD5 1228beac51125f0175ca8fae10867615
BLAKE2b-256 ca3fc9a889ead8a24f4cf8fb8801db1bb963ce920961c1f70727d24d1b99a951

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5124fcfad58be31e657384e655821ef644dedc2eec401c53f97543eeb2d8ffc8
MD5 975b4c327bb32066021eff2d9132e862
BLAKE2b-256 70de6971a1118ea51c4d153f3951fe0c404781c7d8e183125cd16de3a4914a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e84188187e437d821c55bf71be97c9fb74ec557cabbfb4cd2d9250ba4d757e2b
MD5 341065c25faf02e83e52f3c407ba6187
BLAKE2b-256 f5bc4ce95117a417039b5f36d2e7fb99f033389046f4f5f0cb702579b18ae291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2dba417ea8fa2751335cd155111a5eac8ef58e714e91431e24c832943f333475
MD5 18d6b76afce58f2152c86b0f14af6ce5
BLAKE2b-256 bb9d29057439df62fbc2a64ecb9d0fa1854bc8b86b9cbee3c31cc426a8e7ae22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 374a0cf92b5324243bb10ef714c07f695573cf72cf1b1dc619625db4d43b0a7d
MD5 f8250cb9e586acd557c2c96c4ec10756
BLAKE2b-256 4347e48a11528fb9305584f58db2a8ae8794c11920b85f2554604f40ab6390d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.6 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.3.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0967c0fda9cf48d960af425896a8c6815e0225a27ae5229608c834c16b792efc
MD5 6c518ae704faf04776dcd1fb8751a399
BLAKE2b-256 b87fd3c86e30c68d1cf027be7ed562ff631c1cb116310e0491657b06a5b1df97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5680f2a63d2ecf6dca8604f6d5dd96eaa418803b7150ede7d4899f7483e2cd24
MD5 4caba254d13cb03c0af9fa177a86c856
BLAKE2b-256 6c4b150983f1b0c3f1bca4f9f4365192c0a0dc4fb388547f9ca6a3c187e6c0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 710243bb15f7557288af80dfb80dea90677f52c1003fdfd162804474c9781eba
MD5 aef04c03b9cfce452afc260fa3758c8a
BLAKE2b-256 f7217f5efe5ed13cfbeb770392dfc651f0adbb9d645a52f28c521dbfee53a586

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