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 statistical models and word vectors, and currently supports tokenization for 60+ languages. It features state-of-the-art speed, convolutional neural network models for tagging, parsing and named entity recognition and easy deep learning integration. It's commercial open-source software, released under the MIT license.

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

🌙 Version 3.0 (nightly) out now! Check out the release notes here.

Azure Pipelines Current Release Version pypi Version conda Version Python wheels PyPi downloads Conda downloads Model downloads Code style: black 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 v2.3 New features, backwards incompatibilities and migration guide.
API Reference The detailed reference for spaCy's API.
Models Download statistical language models for spaCy.
Universe Libraries, extensions, demos, books and courses.
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 and @ines, along with core contributors @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

  • Non-destructive tokenization
  • Named entity recognition
  • Support for 50+ languages
  • pretrained statistical models and word vectors
  • State-of-the-art speed
  • Easy deep learning integration
  • Part-of-speech tagging
  • Labelled dependency parsing
  • Syntax-driven sentence segmentation
  • Built in visualizers for syntax and NER
  • Convenient string-to-hash mapping
  • Export to numpy data arrays
  • Efficient binary serialization
  • Easy model packaging and deployment
  • 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 2.7, 3.5+ (only 64 bit)
  • Package managers: pip · conda (via conda-forge)

pip

Using pip, spaCy releases are available as source packages and binary wheels (as of v2.0.13). Before you install spaCy and its dependencies, make sure that pip, setuptools and wheel are up to date.

pip install -U pip setuptools wheel
pip install spacy

For installation on python 2.7 or 3.5 where binary wheels are not provided for the most recent versions of the dependencies, you can prefer older binary wheels over newer source packages with --prefer-binary:

pip install spacy --prefer-binary

To install additional data tables for lemmatization and normalization in spaCy v2.2+ 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 for v2.2+ plus normalization data for v2.3+, 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

Thanks to our great community, we've finally re-added conda support. You can now install spaCy via conda-forge:

conda install -c conda-forge spacy

For the feedstock including the build recipe and configuration, check out this repository. Improvements and pull requests to the recipe and setup are always appreciated.

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 1.x to spaCy 2.x, see the migration guide.

Download models

As of v1.7.0, models 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 Models Detailed model descriptions, accuracy figures and benchmarks.
Models Documentation Detailed usage instructions.
# download best-matching version of specific model for your spaCy installation
python -m spacy download en_core_web_sm

# pip install .tar.gz archive from path or URL
pip install /Users/you/en_core_web_sm-2.2.0.tar.gz
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz

Loading and using models

To load a model, use spacy.load() with the model name, a shortcut link 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. See notes on Ubuntu, OS X and Windows for details.

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 .

To install with extras:

pip install .[lookups,cuda102]

To install all dependencies required for development:

pip install -r requirements.txt

Compared to regular install via pip, requirements.txt additionally installs developer dependencies such as Cython. 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.

Ubuntu

Install system-level dependencies via apt-get:

sudo apt-get install build-essential python-dev git

macOS / OS X

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 official distributions these are VS 2008 (Python 2.7), VS 2010 (Python 3.4) and VS 2015 (Python 3.5).

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

See the documentation for more details and examples.

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-2.3.9.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

spacy-2.3.9-cp311-cp311-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-2.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-2.3.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy-2.3.9-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-2.3.9-cp311-cp311-macosx_10_9_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-2.3.9-cp310-cp310-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-2.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-2.3.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-2.3.9-cp310-cp310-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-2.3.9-cp310-cp310-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-2.3.9-cp39-cp39-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-2.3.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-2.3.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-2.3.9-cp39-cp39-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-2.3.9-cp39-cp39-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-2.3.9-cp38-cp38-win_amd64.whl (9.4 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-2.3.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-2.3.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-2.3.9-cp38-cp38-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-2.3.9-cp38-cp38-macosx_10_9_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-2.3.9-cp37-cp37m-win_amd64.whl (9.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-2.3.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-2.3.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-2.3.9-cp37-cp37m-macosx_10_9_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-2.3.9-cp36-cp36m-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-2.3.9-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-2.3.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for spacy-2.3.9.tar.gz
Algorithm Hash digest
SHA256 403620847f32030da4d9489c11232f6b6e2eca55d65be5c8468c52d5cf629c7f
MD5 01f461a61545da5e9ba5e0de62b98e3e
BLAKE2b-256 d53f67f3deaa10ca9e6ff78677116a415a51109472a9e0d893d024439cc465b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 9.1 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-2.3.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc567cf3fc8629d95fd82879f57a900fbce1ac8ed7d0444f647f204ef86023e8
MD5 b9c713978d84bf9c10ef50b71688e348
BLAKE2b-256 011ed6c437fb31fd1b9e5989a968317d73e8efca3f48a927d3cd80d19495983f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1bdd5872dfc73cfc4b856e48279fd0abb9826c08f182363742bd5f887206e6d
MD5 cea718c7b124c4a17f0255a034428a75
BLAKE2b-256 bc786bbb986dce508ae4f018256048421ee5a669f2cb0388ffb0aa5913042bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 396354f71940b41397af063771b81eb77ad98a2cb8fc3260dda22bd262f75796
MD5 6af3ffa7ec935f52bc4628a7f6a84ed6
BLAKE2b-256 14b0ddb8dcf4822b9d22b280568ca9654f47e01a7d7f4b93838c211c9c71796d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a02d320daa2a674c16d3ac62c597de737c790f6361491c32120e022ea4d268cf
MD5 3cef14cce10a0f59a3408eefc2f97cf7
BLAKE2b-256 48f7afe1660f24bc101034ab103c2f8abc77b459ecf7b3d777efdca548799b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bc42271a9c3b6588b05fc359ff39302a90555a30d285dfe8558ef159a5bb015
MD5 eab225933b57d304c0a0d8fe3b2b6303
BLAKE2b-256 81bf1cfbb611396e19da103a46e39405f41368f29d9846ab0bb3888b4747c7b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 9.1 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-2.3.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bb6b951fdb3b58c429f15ea258c5594cc236df294f79ab946c28b46ab71e24bb
MD5 f3098d99da119fa66c2322ca0a0035d8
BLAKE2b-256 64ba812ec7c4483713da154172c39af0252659afa723f4caf4791f75a029efb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2f481f6a988c97db6f1e7373c96fe6d3f737714a21d78d22de12504d96d2a48
MD5 92992cdcf740acb3d78c35d81dec9585
BLAKE2b-256 c87cbb5b8683efd1d36a1d415e426aa95030a7c6f1b2aab492f8403b85560ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9974a721fb5ee2546591088371b8410b17599750f66cb4e89739e42ea601e139
MD5 258e59cc3c5ab9e2d6c8c25c0e96657f
BLAKE2b-256 58df7d447a7dab796cb4d945fa2aebbebe32a54263e087185ab353e547bb1ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0c42317b9073efedc078396570929d52993eb083f7a861f8a6d767503c29d19
MD5 10f81e75141707035e5faa79aa01b18f
BLAKE2b-256 24a9b89e584aca30239c7cffc64502fa226e287df623db9a0efbf7df5ef179c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d2675357e8156d84a244446cd170e13e464d6174ba2f7286388da9eafcf8bcf
MD5 0ab3ec6bccadc0b023e0d42ec151d1d9
BLAKE2b-256 c80d68701a7b66ef60796bd9301b6d17d0a6a998f55d51908153b54174224ca0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 9.1 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-2.3.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d0679ee3652281833b9d3e103b754161e9e4ac770cf8c80ab324216a8f50a025
MD5 ca539bbff774f142eb5dd3736b994d6a
BLAKE2b-256 661f02aca749966fc9ea288970863765745635cb3a9c463723dfb84f48b95ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0331420d1099418860f753798f7d59bc7023bef82a09da77fb500f491161d54
MD5 a73dd7f9f49562caa562583882b0d473
BLAKE2b-256 4323f6862ed5ebea981e6a8f64de1a78d0fc6e75c9882d852b160e6a12794b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1faacfea2853746611cbc7d5cc971f6c2853d7fa16c65ce24ac6d3493b6eb7a
MD5 632b2fec42e4f1e4a7937636f7edc30e
BLAKE2b-256 38b2cb3c918fc3d4f7c48c4bccf37af98b6e2800d16e45619c3c8fe5652fac03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdece093290de3822f472e7e748525f8f665e17a39f802319f03f6e28686eff3
MD5 21f726a0cb722c25a8dc438491c4cdff
BLAKE2b-256 45a4f91227c68b8927ddb955129a962b418e21866791845508e6882fe5cfeb6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8962b8a1d61ecd3f73978c2875c0703f0b3762ab89adb78c0a70737f72c4bbe
MD5 35e4c0af378b88f62406df82f8d1f6d7
BLAKE2b-256 e30db8bb88bf8d24e3ccb7f4c44bd386891e63d9e1d40ee15e1ee1967ddd95a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 9.4 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-2.3.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 48879165b4c5e864377e23b8ee137aa1a1b3f5d976906844f383210cf68efc1e
MD5 8351580c65bd72e9fd8a917ba0f4bbd4
BLAKE2b-256 a77125c8ee044461a4b1e4f5bbf1085a38bf1bb518bfa4fdaeeb1d380bfddf2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 590bcb8e0ab1595877470f06a02d311cb96054d2d8075cb5fd1cb2158b429cda
MD5 cdcf693afa2076a72e6163e679852e5d
BLAKE2b-256 b1730b02af32b9d6e4683460c2760b5af62c14ffa41a4469b305ff91e7723796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d92166e49208bc8bd3f3ae204b4b46baa988960b5fda084ec847f3f925697bf3
MD5 ced6be84506fa50830fce87f61b2f6a9
BLAKE2b-256 1d5b2a43721330cfc6aac5df8724066508067be71a8e21cd402e82da644c829a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61d3ff87438712cc48b428bee654cba11c54bb98ffd92101ea175439a9bcbcec
MD5 89925738f4caadc64b9d9478ddfeefab
BLAKE2b-256 1a55b161ce456ae79d2b6fbf7085b0f440ab0a431626439ba44b441b9358016e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45d9b78db9fbe0ef9d7660ff83b6399afc211d31e45622a31f1201af276f4a39
MD5 056a041d16c032a90effae1a25a9364a
BLAKE2b-256 dfe76dacb214222b839f8675c6c16d1efbf9abb7f34ebdd2b72a67d93499ef9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 9.3 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-2.3.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 effa6cb9052495a4395352b55d30a3ae9a5de743836e6dcb5ed5d2f52115e821
MD5 726fee7cea6a676dabd6d20846c53ce8
BLAKE2b-256 ca7dc1a6f607448d14597e98e7fd6c6cb6516a88ce6bc694025c1b7c57433dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f14627cedef9744fa48bcf378b6ea11eabd285daae5a560594c02e82d61c168a
MD5 d49f237df53f7e723433f2f334770d80
BLAKE2b-256 fa012a27f0c499698452eac36666ea42ca518436e197780c27f5c2fafb6b0c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42bc337ece4613c16d86f2aba443c4dd4d5e95861b178704919e3074aca2a0fa
MD5 9a6cdc45fe776bfbac44a590584b5700
BLAKE2b-256 b89aaa38bd9f90a73eb10d1c819ba3f5ff3a138c21925c692ac8cdfa5fe9e3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e22dca4c38866f2c4dd408586eea9e2b0f626f55aeddff2f175dd8bde71cf9ec
MD5 50755a583f2f3b328e6a561bb9a649e5
BLAKE2b-256 647251fa1212b312d24034fad9ef7e53f5e2df2258c2d5cf705d98b518484842

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 9.7 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-2.3.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f8fee03d4fde0d3ddbe53efe5fc7cbaec62757253f29e4bd1d5a21f3c0e1dafa
MD5 088d91c44c4894fa1c20197c286e3988
BLAKE2b-256 6365f718634c519d147cbc002634fcb6f41fbba16f5352ef0829b7b6cbf791c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11ae5cf204f4e7fc3a9f13a078a436ffd157f8df492255827cc54e10da887e59
MD5 bfba4dd649f11e7c2f3a94520df492e5
BLAKE2b-256 bd8ac96e1ea5a5a5d8ad52e1f7976c95ae9a18ec3a42426eb26a0bf8ed37aac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-2.3.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65144cdb488065a7c9fea672cbfd504ab538b8d29ba387d9ad132aca724752ce
MD5 489584585f3f5239937c8a80b49dfdc3
BLAKE2b-256 3f24819b6f9eed925140cf1db3bd2aec7f4e1e1beaa500af61af6209dc5c7cb3

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