Skip to main content

Industrial-strength Natural Language Processing (NLP) with Python and Cython

Project description

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 pre-trained statistical models and word vectors, and currently supports tokenization for 20+ languages. It features the fastest syntactic parser in the world, 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.0 out now! Check out the new features here.

Build Status Appveyor Build Status Current Release Version pypi Version conda Version spaCy on Gitter spaCy on Twitter

📖 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.0

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. 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.

Bug Reports

GitHub Issue Tracker

Usage Questions

StackOverflow, Gitter Chat, Reddit User Group

General Discussion

Gitter Chat, Reddit User Group

Features

  • Fastest syntactic parser in the world

  • Named entity recognition

  • Non-destructive tokenization

  • Support for 20+ languages

  • Pre-trained statistical models and word vectors

  • 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

  • State-of-the-art speed

  • 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

CPython 2.7, 3.4+. Only 64 bit.

Package managers

pip (source packages only), conda (via conda-forge)

pip

Using pip, spaCy releases are currently only available as source packages.

pip install spacy

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 spacy

conda

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

conda config --add channels conda-forge
conda install 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.

Available Models

Detailed model descriptions, accuracy figures and benchmarks.

Models Documentation

Detailed usage instructions.

# out-of-the-box: download best-matching default model
python -m spacy download en

# download best-matching version of specific model for your spaCy installation
python -m spacy download en_core_web_lg

# pip install .tar.gz archive from path or URL
pip install /Users/you/en_core_web_sm-2.0.0.tar.gz

If you have SSL certification problems, SSL customization options are described in the help:

# help for the download command python -m spacy download –help

Loading and using models

To load a model, use spacy.load() with the model’s shortcut link:

import spacy
nlp = spacy.load('en')
doc = nlp(u'This is a sentence.')

If you’ve installed a model via pip, you can also import it directly and then call its load() method:

import spacy
import en_core_web_sm

nlp = en_core_web_sm.load()
doc = nlp(u'This is a sentence.')

📖 For more info and examples, check out the models documentation.

Support for older versions

If you’re using an older version (v1.6.0 or below), you can still download and install the old models from within spaCy using python -m spacy.en.download all or python -m spacy.de.download all. The .tar.gz archives are also attached to the v1.6.0 release. To download and install the models manually, unpack the archive, drop the contained directory into spacy/data and load the model via spacy.load('en') or spacy.load('de').

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.

# make sure you are using the latest pip
python -m pip install -U pip
git clone https://github.com/explosion/spaCy
cd spaCy

python -m venv .env
source .env/bin/activate
export PYTHONPATH=`pwd`
pip install -r requirements.txt
python setup.py build_ext --inplace

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.

Instead of the above verbose commands, you can also use the following Fabric commands. All commands assume that your virtual environment is located in a directory .env. If you’re using a different directory, you can change it via the environment variable VENV_DIR, for example VENV_DIR=".custom-env" fab clean make.

fab env

Create virtual environment and delete previous one, if it exists.

fab make

Compile the source.

fab clean

Remove compiled objects, including the generated C++.

fab test

Run basic tests, aborting after first failure.

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 Visual Studio Express or higher 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 find out where spaCy is installed and run pytest on that directory. Don’t forget to also install the test utilities via spaCy’s requirements.txt:

python -c "import os; import spacy; print(os.path.dirname(spacy.__file__))"
pip install -r path/to/requirements.txt
python -m pytest <spacy-directory>

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

Uploaded Source

Built Distributions

spacy-2.0.13-cp37-cp37m-win_amd64.whl (22.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-2.0.13-cp37-cp37m-win32.whl (22.3 MB view details)

Uploaded CPython 3.7mWindows x86

spacy-2.0.13-cp37-cp37m-manylinux1_x86_64.whl (23.3 MB view details)

Uploaded CPython 3.7m

spacy-2.0.13-cp37-cp37m-manylinux1_i686.whl (22.9 MB view details)

Uploaded CPython 3.7m

spacy-2.0.13-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

spacy-2.0.13-cp36-cp36m-win_amd64.whl (22.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-2.0.13-cp36-cp36m-win32.whl (22.3 MB view details)

Uploaded CPython 3.6mWindows x86

spacy-2.0.13-cp36-cp36m-manylinux1_x86_64.whl (23.3 MB view details)

Uploaded CPython 3.6m

spacy-2.0.13-cp36-cp36m-manylinux1_i686.whl (22.8 MB view details)

Uploaded CPython 3.6m

spacy-2.0.13-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.6mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

spacy-2.0.13-cp35-cp35m-win_amd64.whl (22.6 MB view details)

Uploaded CPython 3.5mWindows x86-64

spacy-2.0.13-cp35-cp35m-win32.whl (22.3 MB view details)

Uploaded CPython 3.5mWindows x86

spacy-2.0.13-cp35-cp35m-manylinux1_x86_64.whl (23.2 MB view details)

Uploaded CPython 3.5m

spacy-2.0.13-cp35-cp35m-manylinux1_i686.whl (22.8 MB view details)

Uploaded CPython 3.5m

spacy-2.0.13-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (25.5 MB view details)

Uploaded CPython 3.5mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

spacy-2.0.13-cp27-cp27mu-manylinux1_x86_64.whl (23.2 MB view details)

Uploaded CPython 2.7mu

spacy-2.0.13-cp27-cp27mu-manylinux1_i686.whl (22.8 MB view details)

Uploaded CPython 2.7mu

spacy-2.0.13-cp27-cp27m-win_amd64.whl (22.7 MB view details)

Uploaded CPython 2.7mWindows x86-64

spacy-2.0.13-cp27-cp27m-win32.whl (22.3 MB view details)

Uploaded CPython 2.7mWindows x86

spacy-2.0.13-cp27-cp27m-manylinux1_x86_64.whl (23.2 MB view details)

Uploaded CPython 2.7m

spacy-2.0.13-cp27-cp27m-manylinux1_i686.whl (22.8 MB view details)

Uploaded CPython 2.7m

spacy-2.0.13-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (25.8 MB view details)

Uploaded CPython 2.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-2.0.13.tar.gz
  • Upload date:
  • Size: 23.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.3

File hashes

Hashes for spacy-2.0.13.tar.gz
Algorithm Hash digest
SHA256 5621c1edf004f54f163bb3d922303675001dfce5fea50f93d6ecb59f5d1d4610
MD5 9c2978ebd3b6221fee962b64ae02b2df
BLAKE2b-256 1e745bab6e1b5373b715941d04b5f226632dd3bf84faa6f749df4de320b45a32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.13-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 47fcafa80220e66153616dbe0707fe8fceb3cab65962a0739b4d89be3a9bc2d4
MD5 b829aa3b1e0ed57aa58d838f95fa9212
BLAKE2b-256 d58fcf9c51c7d9efdae09f65b78919984178a40eaa8d59f37071d9dea88843db

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp37-cp37m-win32.whl.

File metadata

  • Download URL: spacy-2.0.13-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4563c9ff0e2a975df473e1ab5f5cd1aa9964efe9b6fa0c59c8a19ad7f852275f
MD5 803b8e55808ebcbb67eb952e91af9e92
BLAKE2b-256 b2d4019d88ab117d6468e7362dc90f98d8783a4a98dc591a61fbcb3771da34b1

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: spacy-2.0.13-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e359e9f02699412146c896af322b692bc616679a67f382f9ba79dd6983db14f6
MD5 658e6e9d93e0ba851d483da8e220f88c
BLAKE2b-256 053903dfd0164c884f8a0250605cf64edf55d9ac8315c3c345453780a7dae7d8

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: spacy-2.0.13-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 22.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 81a6d63fe6d942b000d7afdd64a85d3ece7b0e79c64c7fdf93ca7e6b03d791cb
MD5 766860f5b02d61293b0b58ede9ba68a5
BLAKE2b-256 ae63185fe30e16efe2c83e6a7894b756c8fddfc95ead72290d663ed37c174b2f

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for spacy-2.0.13-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1dd8bb78644b92989c48ef35e558e9741dbea168bef286a8daeb624380874d1e
MD5 787ff2e5b41199e728e75554d6f5f8f2
BLAKE2b-256 b1607b2a06204469ba6c60db23c41c3dbd23f5d57a09c069f0a7a7eb345cdbee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.13-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b358b4ea5c25b1eff344903cf69b970f31c819c42261e8c65103104dc4ffe4f1
MD5 bed8d35624065f025c1b69aff57c143e
BLAKE2b-256 fee659a5fad80d95bb16f141842dd8dcf76416053cebfdc4fe6348b2721cc50b

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp36-cp36m-win32.whl.

File metadata

  • Download URL: spacy-2.0.13-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7824d551881936f12eb90fa517a7f0e6613b8571a37d87c5b597d7ca260effa4
MD5 f4f7988522a18b64f23a6d8a4b9fac2e
BLAKE2b-256 f9e1dbb84ffb5813f2234573813df2f61a63877c53983c60612077e3d8eed2d5

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: spacy-2.0.13-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d75a79a96e0471f0a109ad1093364a1f4d9d79b3996881017d78cc2cc56d872
MD5 5634bb22a9886739441f7c3464296189
BLAKE2b-256 e608c67d0dee1aa7e5cbcd35835ce666e47a482d47bd0af0a9c24acc654b8a2d

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: spacy-2.0.13-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8139ad9af90b38322820c5b07977f95c91c13ec7ba4085398987c7603ca0a4da
MD5 2c1d964452aae0646753c9f412ea964c
BLAKE2b-256 bc707423f2be39ebb2938b4466ca81cfba0be872c16b53e6facb72857b67c766

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for spacy-2.0.13-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9050d5c1adf4d862cd2b94bd504b5b171cc457a2c7e702c880b9df679efe9259
MD5 5a293ce84dae7712988beab0553e4114
BLAKE2b-256 bc1b1c5ee7e28b728f0def2afd1dc2312d8cdcbce9ac14ccda4cbacd2b57a731

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: spacy-2.0.13-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e64f22aad76d6972914e1bec99f8e9faefcb91508604b6a3443acbd514da0ead
MD5 a46547bac672a497b4fe92b777b856e7
BLAKE2b-256 070e099d8ab24894f61c644172bde60884cc544cd134e5ba8fa76d75b25c9551

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp35-cp35m-win32.whl.

File metadata

  • Download URL: spacy-2.0.13-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6fc3e04dd1748c4b7dc2414b09e8d3a1bb6b142fa33819ddfed395a098fa9985
MD5 4fd8034b62eceabe5fc78c7baa7b3b5d
BLAKE2b-256 479d98b6097ba1eb12d7645d78dc48d5f59c5fe64b792379fc8f35026f77158d

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: spacy-2.0.13-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7a9b8aa40725bc2f002c99bd95b4f575810148497f7bc5c3881a7ebc63e5ec34
MD5 4c8b455fb9612bffc2393cc5421a579f
BLAKE2b-256 a59ae4f33b893dbf365d973b32dcb13b1ddbfa5919bbe1ac4e63df238076d40f

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: spacy-2.0.13-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d821ae32521a8092c7dc644653f0ba4a7087f1bb5ea7050385093e7f98b696d
MD5 ca963a94a02ec1ab5d8b8973cb3f8050
BLAKE2b-256 a954b48528873bc838cd8ed7496b5aac489bf895202eae6e270171858c7ef42f

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for spacy-2.0.13-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a7fdd4963df10a4437a939828a4686a1a35c907c50dc3c0a6d4075b8ad47da83
MD5 92ec7a9c3800978b4be6d368bd19132d
BLAKE2b-256 f760dd5f1f0dbaa6fddf5f407ceddcadc18554ad4066a6cda8c438900730dcf7

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: spacy-2.0.13-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 33d67ad7d2bb48fe66ffeb6d8a4f22d70f6e6f5574c82dda9713945a1bcc0328
MD5 eb714443ac69a6f468a3963ae9aacc4a
BLAKE2b-256 51bb913557bc8bb08980d060ec0785ab6ef5e1f9254638c3116775cfed40390c

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: spacy-2.0.13-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 88192635427f4fbe761501c0acdf3c89e036347170bf17b2ca15952f20bea8fc
MD5 128596cf6d6791f4f90bcea5b739f6e5
BLAKE2b-256 79dbb1558da6aae65a4c8ff9502d6428c200b1c8cacca8e74b1dd1192df162f0

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: spacy-2.0.13-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 22.7 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2e00167eec01144754f365d8797b762626b8ca9be30e21540de3f32506210a9c
MD5 799a33fb9317a3e18f74caf448585fc7
BLAKE2b-256 ffd89fd3b343a8a1cad90ca51d3bfd588a3c5425f714b7354e78347852ad07b7

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp27-cp27m-win32.whl.

File metadata

  • Download URL: spacy-2.0.13-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1751354b52b37db9328dcdd246c47b69cfb1909aa7893eadb3411c84c32a35a9
MD5 5a6af3f156fcb31bf9dc094cbbefebe6
BLAKE2b-256 54775a465b79d46eb69d5c64ab1a8e46c3e0ed0eb8587bc99e3a3548c21b8e62

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: spacy-2.0.13-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fcefa1184b1aedb68e78bcd0d6388c848e417a6f610abfa6d54b800db3de3eb6
MD5 75c6bba766ff0de872213bd924adf317
BLAKE2b-256 7d412a4d94b0fe42c8ed044d0b74e743000998308a5340ace992fda131389a69

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: spacy-2.0.13-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.0

File hashes

Hashes for spacy-2.0.13-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d2637268d13c8e1ecf3ce8f51a07a31ebc4b4020b43eda67666d4dca365b948
MD5 e9daa7941f6c54008b551d7db643b572
BLAKE2b-256 1fab4ff888270f9abc5c5c90ab407ca65686d03bde4b1692ca7658de92ff7b08

See more details on using hashes here.

File details

Details for the file spacy-2.0.13-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for spacy-2.0.13-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4ae664f4a250131f84cb84e66e51ad68a5b388c640327fe22264d5e2d477e1a3
MD5 4efae1540909438fdc1bfd4b5a437791
BLAKE2b-256 58dd8b76fa864b667095ce90282d2d160e6297b84c6d2da7f042152da56efe68

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page