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.3.1 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.4.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

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

spacy-3.4.0-cp310-cp310-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.4.0-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

spacy-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.4.0-cp39-cp39-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

spacy-3.4.0-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.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (29.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

spacy-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

spacy-3.4.0-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.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

spacy-3.4.0-cp36-cp36m-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.0.tar.gz
Algorithm Hash digest
SHA256 3ccd1a9f56759e5f0f9efdf57119a06702ad59c045dde0b3830b5472593e09ef
MD5 5ae5d3ebbd6721053c4234d034b69b58
BLAKE2b-256 fc0ffc0d36a8abf38b3bb21033e1b55157544e496e79fae246af0db49a42030c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.0-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.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eca827077f32965c1931ccb34375c29a7b9c321818e1773248004719b27b008f
MD5 e260e1908afbb8eb962497ab8c8f2b5a
BLAKE2b-256 df7fc5734b5065bba9029fb780e4b90c2d3def5364a132e57198fdd73a5f00ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a10451847eb7983ba1fe05ab87a37367e00e2807fe633d17926626cb2dacd10f
MD5 f52ce36a457246d1078a36294aa4c5ed
BLAKE2b-256 661cdb7a6daf2a256006bb1a654fa74629ed606a3e837265b6ad4658c47b62d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b95eff2f9e012991c27e93c038ef8f3ca4132ec7e66e097833ef22f263a46da
MD5 586a03420f545e9c4e6af1a0651ed78e
BLAKE2b-256 ed2bc2195233eff69315d0bdd289153080fb32dc64015c3cdeddf222c7062b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ff04736c88475a950726c92a8e87ea6f42ca49ae60e0dc9612b456333f25e9c
MD5 4bfb03bd076d4551cebfd99ad2aa6b3c
BLAKE2b-256 78f45e037b43a3b9d23e0884a4374de7ce2dfdac5f22abe56a8bc5fcf038969c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c9167631733f8618f8928745fc740f3fd680994993dce2db7a4dd2b85d8919e
MD5 12f24a62225b389aba3d1cffd645e74d
BLAKE2b-256 b475357cf818fc2cd07ef30981799b8e8f11d1e5b69214e8d371a41191aa51da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.0-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.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3c99920830c1cbf3be169b7817863d88fa07c465540ebf0eed304ba106201cb4
MD5 7d96e5c8efef99199ad26f8be703edcb
BLAKE2b-256 36eaad8896d0631e95bcb2b5fc1664a0cf4a15d0f625ab5bc73bef3abe80c2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4fa15d13ef73089680506c91e27630005537b9b68d2d4e736cec26cb29a3f47
MD5 b34ead6090886243e5e31785b8ec878d
BLAKE2b-256 5c3918350f019a6f4cd688a4a7bec9db68da5a01524a34974d669c88c9d701e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0bec5befbb6bbc11d4d984e8f864dcbdf9e9274dbc5dbc349b931a2dd9ec84c
MD5 0c96a778c2da39f3e9ee9d04814076c5
BLAKE2b-256 ed2042eefae3925ff07e5924ac5da199f72a84f7581ce278e8733c3c96394ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 344f262344f1c078e6159543eecc09b32b70c138deb1f9fe01c49cd89002730f
MD5 89033470ca0af236d345de19ffcaf979
BLAKE2b-256 2f2a14566b3bdab884977a69ff0df1618222c682b0e753f19c30a3df233cd2f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0b26babf0d7d9b07f8350c390b19445207a9f84cac7a81ac2b6d0cbcb47357a
MD5 edc2f27b6c0b667c7645f6ccfffb7db9
BLAKE2b-256 7e7562d97eed8786be044aaa537eed884cb6d43813cc24618726a134224a80d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.0-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.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0720297328e32c1952a6c2eb9f5d9aa7b11b95588886c9117a7030c2dd1a0619
MD5 d403788f192298ef5dbdbd8e7b03793d
BLAKE2b-256 53e81529331f53dcbcd6c6ab822dc268f565228721281034f0f440bb87caa183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dc6ea142866f7042a710597ad2c3939bde3486c27d0eb11fcfb079245c72cb3
MD5 e54fa800a00ee49b9a839986ae298579
BLAKE2b-256 133b8c1a1e67f1b239e246e3d8026546c396837f58cd1539c5f23b2a75cc666a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d147595db91191a0a748e33629c99fb5e7849af5100237e058fd832b7254242
MD5 f582fdb609bbe61134574a4c8f120f40
BLAKE2b-256 8148d0138a9bd0a234993cdd2c8394ac1e4d6241c74184a51c20b824371b8409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b350dc2321b4cbeac65419ec0cb0d0697f991c0a3b4ca4236438fbcce77e9421
MD5 659a54eef944c039a0275f6b296433c5
BLAKE2b-256 03e4cba01ff795a3802466442fdc4a197618cb15f11a8ab7be81a838fd5121bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbcf52b49a7221202f7a388993562c9dd610ed621697a4684583514aed63c06a
MD5 05b81a6699ee2de81797d0fcad1f7a46
BLAKE2b-256 0950ac28d4b6b67084ac5484abfa74af31d3b503d9fd28d0cd5e1899bb024465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.0-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.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7039fe789caa9753fa0a66b9391f0f93d49e6cb1017336c6b0842220a04346a8
MD5 f45aa5765589ade5b8318b285063a27c
BLAKE2b-256 70a031838f88fe880356d8d32f483fd0d626bf3ce734897886766f5c32c66308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb39f5551f4ef6475fa7f46fec347553680ab0e917d2a790384aa75d5797333d
MD5 b42efb0bce708fd559978964743b92ad
BLAKE2b-256 7b6a4a3b52977db08935f759fa330460a13f4bf768ee2f7d6fbf1ef0d0e4445c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3caaa36f8fc95776a558ec2a4625f5cd22c1fa7990b1d9ab650709851586cec4
MD5 4977025a086ce976205e1ba0d427e1a7
BLAKE2b-256 10f68578222c42a36a51f920610e01488281f8a797dc75cade84bfc7950a40a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3b336aed79d7610ad33fac1557de8b96a1421aa8c4d41604700d1eb1c7e34fd
MD5 af6fd2858fc788df75090a655106283c
BLAKE2b-256 615a4111a762dcee979359cb30c912a039a1395b9c5f70ebeb2108583bb7e549

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.0-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.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9e631c07560457926860b1c64bf2a62e4e4c25359085024ea3847cc7e2fc39ee
MD5 de6f0e1852a09e60a3a19634eebcc05f
BLAKE2b-256 247bca2667637a6d944747eed44a4a3818baf7ed79bad13c3e00656ecac60b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76ad38af7205dbc97e1a3dd0956f5d97b4d31542adbb039eb161bf5f08e386ec
MD5 57df1e881bf278504b2b79ea4bdc76a6
BLAKE2b-256 1f0d4116c1ae76638d17ac08552533e226ffb83b5ff4faa95def8d8a4c5a61c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff0687a6f3e822655650a5ba45af6738b879962806f09ac3903768b0b67cf415
MD5 ceb219b49195bc8e3b8ed5667af48062
BLAKE2b-256 76982a8946220cdde6161f70af81f30e764c90a25826b294f089e0ad1ac21055

See more details on using hashes here.

File details

Details for the file spacy-3.4.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c45fe868973dd44afa4a200f72fd2d7288548ae6bc201fc5a6d5ffb0a4949b3
MD5 06b4f9605d10575529e5020fba803674
BLAKE2b-256 c2afc6331d476722b5091ef2f71eca5f53ab546248c16a5200ee05c1be7ada9f

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