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.

💫 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.
👩‍🏫 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

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.5.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.5.0-cp311-cp311-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy-3.5.0-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.5.0-cp310-cp310-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.5.0-cp310-cp310-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.5.0-cp39-cp39-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.5.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.5.0-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.5.0-cp38-cp38-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.5.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.5.0-cp38-cp38-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.5.0-cp37-cp37m-win_amd64.whl (12.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

spacy-3.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.5.0.tar.gz
Algorithm Hash digest
SHA256 fe20127012992778804d93f75ce9370d588573072639c3832cec38f54bf7e4a5
MD5 a095fae6d97d4650d4122c4a41f37afe
BLAKE2b-256 5a5230975d56f3fb068a72b1ce7b0d4c59e78247020d90c52a6cdf4420df8482

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5af92ed98229fcd0327af73644e0bca510ef6cd9211cad15dd04530f8fe947f3
MD5 14c8b98be62aae3964349a6098248185
BLAKE2b-256 65eec10cf970df20f4e7a0a483de64f4936032708f2a6b7082b630ac011503e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6ad4940e4e9591fa8f3ce289d28a49d3b9a8e7d32fb1352d197a95f46d6c6c4
MD5 69a47d2f7cce61c5c1494aa36ad78ffd
BLAKE2b-256 34fd09e773da09dd90b5ee55b2c88b5346e9dc8ce6759e54a37ae95415959b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d67a02ecb3abcaa273031d111d5e41276460e6484d191b82336092059663c55
MD5 ae374c18121040f81750df263952f97c
BLAKE2b-256 7e38d0a860711b224df0932f93e4f5e908d4a4d065a3d61578a442d88a5225d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e27e938fca23b87bab978a6098a30ad7d0974d10a630d2f5ba43103eefba4d06
MD5 f1d2e1f054cfdb8a3c44bdbbe960c1bc
BLAKE2b-256 584057d5fbb29050d08de344715530fb7ad25fc232650005768d1d385b103003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5315ab53a1dc04bf2f0f8f6677bb1f93c75aa2e049f006ae0d53851870625d65
MD5 2887a1eedc8a3072ef6941a1b824a86b
BLAKE2b-256 08805c011e50c20ea70de8ec5b4291d66ffa1c7a2e765f54766f470054108d53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f81ddd6475b59ba62ddaf72fcdc940873a6688ad1866f308fb722c1ae63fa2a5
MD5 6dd9f5ba76ed5c05d630e294cdc5f920
BLAKE2b-256 8a38ddfb0d30aed8d43fdb4b8d620f194a78e1a7b1c3542ce8b46b1be52f901e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb6b7f79552ca1d39d3e7d415beb7cbb85313ab11dc58fa963410ae99c125578
MD5 492fe16cc6017e6c8e86ff480965647a
BLAKE2b-256 3297fe95ff43986e3576d82f4be873c171440e80cf72ec28174fb8483a4aa7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 705f43746e415b1b9ea518530d0d4e5c1cb09526f459960a6c96497ae1ccb716
MD5 f3c96416eb4b2d7d6480888009c5d4be
BLAKE2b-256 4943fe408b52a70fd8825ff71dd6b9bd8cd716db7c4cee68889fbb2df339db87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aa6fd598cf9b6e9d671fb9f80ef1bcb24d69c34cdbf38a6626d265d1060474b
MD5 5b1243e5bfe07b99ae3583cf8b2a4d3e
BLAKE2b-256 90b50b419d2ec0c2569c0e38a36aa7b3ceaf33e5587140bc326532198777d7c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c855f5b2826c21dbf2e61308f8e1beec5939f67950f8ecf95abfd42621297d5a
MD5 2715b27250330230720fb641427c43cb
BLAKE2b-256 46558955d173c23a88be0269cff09baf41e2f95e36c2fbc65531e0cb0847c85e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.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.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28c762da4bcb2849de7f180476a6a942df4ae7997e5aaf4f0670b61a3204ad89
MD5 0dffbc9b3169530135ceadf8d9ea9ca5
BLAKE2b-256 5af1627f353582f4432f2168934b3c4d7022d7fc63986ef021c61b7dbba65cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7d3ed664964aff6b15fcefbd7302dac3e0d3b06cf3b86c9130fdcdfafa56d0c
MD5 b2c839c5e76488bcf74d6a9c64e536ca
BLAKE2b-256 fdc87d3486b8281f58c7572d9c5ea935a710b3d46faef0b222c23380f7aacd0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7630b4c1268b18da1a0abd23e2662f48fbf4c36ee223526d3c49de140d4d2e1e
MD5 8387d8db0ccd304a086dbfa0fc826e0a
BLAKE2b-256 29d1b4548fe72793f6ef962ddcb3fb232b7e9ea48bcef8aaac9d5b16906882c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02c54fd297c8e9b91da0198e2619fb66a36b5a49d2e429ce9ab7fd85918d2e8e
MD5 f9e2035f405e34f6f687cfb9e1410e99
BLAKE2b-256 654d3c82c42713054a2718a7b592fd9973ad66a8faf7a22f0d81ae0f7a0030b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c2884f102847aeacc366838d89879faf54d7f3ff9cc53220ee02deedb7e2c33
MD5 60782979349ae4ff0396919c23770455
BLAKE2b-256 dfb4187d41206b169ef42bb1ff55986c570934c0523cf0a3b0647294529edc86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.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.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 42fbe255828e129af7a5b7807a13ea2d84b3b4388e8517713e0f4e8807b320c5
MD5 919b8220b709c721e67ddc190b88100a
BLAKE2b-256 960900430d0b8b3d9c01697b23eb2a40a8341311f9ec8a8da004c9c6a1b5deec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90ccb5e675ae6dc1aa1ad187432f4e4483c90a8d2d07f7a1ea77b582d637984c
MD5 6a82b1462c23c13150f3dfff33cb8751
BLAKE2b-256 5adcb99bd65d78f35afd386d944f77a3be45d68b9a8617b37336eb95709c8ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a709387d833c0e88d4fccfe17e16421de050b8ae22a81c509f6e98e3b178a164
MD5 99a7fac8b331e9a43b5b4e3ccf7aa580
BLAKE2b-256 9f0cadef615273471a9031f6c43447fcea4b314b5508db649be5a72e98c22c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 657350719742e925d305e66f35f4af29642f039b9556aa4c510de1ebb09f6913
MD5 877a165c9c9364c5978c1837f5e642ba
BLAKE2b-256 ee560d32dfacaa9cd18aaee6c0377d299e736d9173887df1a3b2eb97ffb6bb87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92d23532380deb077164466e89064e0e5366732ac971af158c36eae8490d32bf
MD5 eda4ab98123a51a445bbf2fa7cf7f748
BLAKE2b-256 f518a85ff7ce0d95ce0078bf3688171784415c9ab77f0c189f4802a43de350d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.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.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f1d1c2069fb85447f647baf7c02886a9b63c2f40d75bb9479c921598b8acf8a2
MD5 2070822c7d7044b9a1a361c494461cbe
BLAKE2b-256 20d38f7daa9ec3d137b6e22f7dae44ab462b29651b13bca0b49ffcc4d29cecd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65f7927e36d9d520e88457b1ee0b0aafce5f0267f1cd66cf840378f91f01447e
MD5 4fe9c1fbea55aecb3b1e1d30fbadd0fd
BLAKE2b-256 474fe7b86df4530798b2679b96e885f015fce7f1bf2a119a64e9399234459fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ca247b654348d3a97e490f9a3950e1039d11ad66d3efc409ca32ecc8371da94
MD5 84f21dd72204ed1c77648b37d6055170
BLAKE2b-256 37dc8f3dfd1cc29eba1f9a1e2a403bbe723a4ddb74955f07e14bb5bee5ed595d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f95c739a8a9b84131aaa4af70f4a98e9cbb7d81576f12f49bbd20cf709b85c2
MD5 c9a7c49ca28e05d18d2004c23faf01f9
BLAKE2b-256 3017c77a6eeea94bb9a270b6b5afef4bdc5ed7c96a27b0f56c7e70a72ba0193e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.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.5.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ced60f84c412d69ee4634d642316e012e1fd63142c9b5877b03e6a44997228a8
MD5 f063d1cf1b5cae3648a3ee7f51c5cad5
BLAKE2b-256 4a054954f8c8e9ed34de4b9ae8a5a44f3473e2a49572cc87b8ce767418d576ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09045de05a378c4c6e7f209fc31995d22c88d4af1e036f086425d4febf63d542
MD5 2fa681e173e9d5c938243345d6e21572
BLAKE2b-256 c8f43ef994b459b99160dc6cd9aae7baec5d4718681409176393c136b8fba94e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d28110437e0382d76852f9e45925bfd5cecaf43e26628cfdcd0c2f61b23d57c
MD5 d128a51b8bd81845dea5bdb9c033f71c
BLAKE2b-256 744db7f6821957a63b804df2daad967e7f173d7c3537e6e5e515e8d793a68468

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