Skip to main content

Industrial-strength Natural Language Processing (NLP) in Python

Project description

spaCy: Industrial-strength NLP

spaCy is a library for advanced Natural Language Processing in Python and Cython. It's built on the very latest research, and was designed from day one to be used in real products.

spaCy comes with pretrained pipelines and currently supports tokenization and training for 60+ languages. It features state-of-the-art speed and neural network models for tagging, parsing, named entity recognition, text classification and more, multi-task learning with pretrained transformers like BERT, as well as a production-ready training system and easy model packaging, deployment and workflow management. spaCy is commercial open-source software, released under the MIT license.

💫 Version 3.0 out now! Check out the release notes here.

Azure Pipelines Current Release Version pypi Version conda Version Python wheels Code style: black
PyPi downloads Conda downloads spaCy on Twitter

📖 Documentation

Documentation
⭐️ spaCy 101 New to spaCy? Here's everything you need to know!
📚 Usage Guides How to use spaCy and its features.
🚀 New in v3.0 New features, backwards incompatibilities and migration guide.
🪐 Project Templates End-to-end workflows you can clone, modify and run.
🎛 API Reference The detailed reference for spaCy's API.
📦 Models Download trained pipelines for spaCy.
🌌 Universe Plugins, extensions, demos and books from the spaCy ecosystem.
👩‍🏫 Online Course Learn spaCy in this free and interactive online course.
📺 Videos Our YouTube channel with video tutorials, talks and more.
🛠 Changelog Changes and version history.
💝 Contribute How to contribute to the spaCy project and code base.

💬 Where to ask questions

The spaCy project is maintained by @honnibal, @ines, @svlandeg and @adrianeboyd. 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

This version

3.0.8

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.0.8.tar.gz (989.0 kB view details)

Uploaded Source

Built Distributions

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

spacy-3.0.8-cp310-cp310-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.0.8-cp310-cp310-macosx_10_9_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.0.8-cp39-cp39-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.0.8-cp39-cp39-macosx_10_9_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.0.8-cp38-cp38-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.0.8-cp38-cp38-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.0.8-cp37-cp37m-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.0.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.0.8-cp37-cp37m-macosx_10_9_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.0.8-cp36-cp36m-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.0.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.0.8-cp36-cp36m-macosx_10_9_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-3.0.8.tar.gz
  • Upload date:
  • Size: 989.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8.tar.gz
Algorithm Hash digest
SHA256 58312f2d97bc579930cbb0000473e01c0bffc299c502d5e9fefa570b829c0908
MD5 affa5368ca3a31851a11ae5b320cc769
BLAKE2b-256 c1f5650f108c60b9a7d251985e2c41bd4fc4dd8fee74fc92a8f6f5fb1b1740ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a692ead95901eff941dacb894f2d18c54b6065d1538aa76bce6cdaf01c27dc8a
MD5 e0e2dd2f6f51fce8e9851b9514c3b8a3
BLAKE2b-256 f84e8c5e59452d00310ecea922a308ff1752e886df48edb1a4141942be37858a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a8aff3f2805d6dfe3ccdcf5d75d17ef730ac096b75bb58e2e94dedaa72a6d84
MD5 1471e1b8e9bb539a2e5e6e8c464528be
BLAKE2b-256 6bfaf26d10580e5b830f4500e9125391fd1753b4b40a5a74c25d6281b4dd9009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2da7fb7ed9dc6984b4e0ed7a03fdfa7ef55a8fe4e7d4a5b20cac3578eb8a538
MD5 ed1c194df5e92f27e64f367e20eb964b
BLAKE2b-256 7bf7fa8311ec112f82c10fd23a4c71bb240dd24556f27408252071e7aaf8846a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e6fa5285b8c8b781fd045f50078e2dff9cc809b8acc2f1aeaf8c33e6ec7758c0
MD5 6d4f817db81380a2909f8fa9e5abe66b
BLAKE2b-256 9af3a8c65398dd09c68cc3b51212e0a961d90b095703e896f5a12456c5410bde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fab0a053400d3f09897a52be1b5e5646c1c53d34ed9ec2503ecf213b128d6d7c
MD5 37ccb0a8f1bee7fe70e8c4e704652f66
BLAKE2b-256 7d05adbfae98229a460ae490e49f03e53eae5437e95e7913296e2996540e0760

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bdcad0fe929b5e3c86ab42d4ef48322826e9a0b52302533c456d9faa15e8e61
MD5 5b246f0f3e03669eab55647637029ff8
BLAKE2b-256 579f44ab8587967b82c68144237d0806b878f16b5dd017ccdfa967dbfb956aa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3fca97a3737f7c518cf0453626a1aa3ba82dc6272725d437c18739b1ac1c5dfc
MD5 c3a388412e5bfb31bf1b74558f5fc3ac
BLAKE2b-256 2ca80c443669df9d2b785d5c837a7546da4dac3166d5384201d04924f71699b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9c02a2e16e6bfcc952431db0aa4789486b234071347f68c4e65067f8687122d
MD5 7e8fbedf6707d1a1209a7e3b30966151
BLAKE2b-256 54c544f84ed92a62868cbdbdac9d880f8434cf9d04c194ff63c897e63b223283

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fc06544f9ce551030a56aaf7ea21a5d0807bf4f4a4dec1b8bff9b7ff07a5a20
MD5 3ac6442daa238ba0aaf732dd33283c45
BLAKE2b-256 026c704d02280f1a3a88611043d5d441dbc3619049a830958902025dd7bc3689

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ad5a7b625c69139f8ce3084687e68c25682f0110f95a68bcbe7acae455feee9b
MD5 1e1d3fa8e6c4e860fb9308090a64302e
BLAKE2b-256 cd59e843ca354a4a10c5e782b8fc1b685b1a87d3e24618add5e171ff5789b764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b84a8e2d5e2238bc74f637566e1127ee7c768aa871a4db4e36e998a29aa754dd
MD5 f48aed2198f77feac1d138676d8ebb56
BLAKE2b-256 832091c10522e6c860880cdefc7e1a1b358edf24ef8df5e5e64d1b1230e0720c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c1b96d00bf57528f6839d11e8b5e35223008548f883bd206e31c2fd8cb31564
MD5 31ef31b681b98e3afa6f96ab637e1cf6
BLAKE2b-256 9bc3211c491c90076f8d7c8ffdcbd8922b207c6c0555b5706fe0c4c750424ae1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 649ce0b59a7bf98b1313678d3d112ffbc01cb0af88731878a648ab9fb46b9e5d
MD5 6f30d3cddb55bf7f146da2a6498154ea
BLAKE2b-256 f9b97478e14e64c409a913ac3caa1e4c91c5215062bf17c3237384728da1264b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b6dcb224d10e944bc50b86a40903f847c2735e9111ab3fd54a16344dce92226
MD5 03a44b45157c7c50445334aafc4a1b3e
BLAKE2b-256 e3ed5fb9f2be898431e5ba436466e849b28b90c62a04d51cd8b73a963da7b56c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.0.8-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for spacy-3.0.8-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 763ee3fee832f70eb4f6c2ead8935162e7db4f4d59d24cc514ab5d5c51ac5bea
MD5 6a43810b55133e9de1ac01375896c49b
BLAKE2b-256 8b71313a351308ee8873f4f6cff36394ee314ef4bd9fc6416a0f7b10a546eed6

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