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 30+ 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 Python wheels 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, conda (via conda-forge)

pip

Using pip, spaCy releases are available as source packages and binary wheels (as of v2.0.13).

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

Uploaded Source

Built Distributions

spacy-2.0.15-cp37-cp37m-win_amd64.whl (22.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

spacy-2.0.15-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.15-cp36-cp36m-win_amd64.whl (22.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6m

spacy-2.0.15-cp36-cp36m-manylinux1_i686.whl (22.9 MB view details)

Uploaded CPython 3.6m

spacy-2.0.15-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.15-cp35-cp35m-win_amd64.whl (22.6 MB view details)

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

spacy-2.0.15-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.6 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.15-cp27-cp27mu-manylinux1_x86_64.whl (23.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

spacy-2.0.15-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.15.tar.gz.

File metadata

  • Download URL: spacy-2.0.15.tar.gz
  • Upload date:
  • Size: 23.0 MB
  • Tags: Source
  • 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.15.tar.gz
Algorithm Hash digest
SHA256 da23f00a11535874bcf365e096aa0aec80ca15a017e87dabd494debc87a7a60e
MD5 6c7cfca20a908f32cbe5dbe00a6a62a4
BLAKE2b-256 a891394bcc864aaa4bc6d9785356e60e15ef7feea7bbf07886d2a3506233eb00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 22.7 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.15-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f8f66757647411d59c3cd375c3b6241d32fc5be36902dd062d25faca9ae6f198
MD5 ae8284b0b164b6f994a9a4d15500b22b
BLAKE2b-256 82976a78314ca8ebb1f1506c5e0120c49e97d0122b826ff1b0e0078a8005b0b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8189570d70e92fffe56f611b40326056afdd308e8cb02e67cf56fbf6e9247528
MD5 5027cc6cd2d02f6b6c5f32bdab765a1d
BLAKE2b-256 61047161e808c9406bcf84fa920ef3dfa26dbb0b896dbd2a7a6fa48f4cd043f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a858ff2814692a94afb583d5e613134c2f57e666b609966f6df1ce31c7eb06bf
MD5 8b7dbde55c83e74972380d36462c3010
BLAKE2b-256 50957262d43e94c0e31c2b52c05fad64e54083439e624d7d31fccb4e7a8f57ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 386fd900c73f95984a7cb50e7d728f951193c37204e1759f49c2aa4815422cdb
MD5 3722bbba98900e6aa46c95c66f7d3c6e
BLAKE2b-256 46847e77929a745298c153dcc8ba1b7520c59d88c3a6ac1b9024cde2342b5f19

See more details on using hashes here.

File details

Details for the file spacy-2.0.15-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.15-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 ae450568c8de32bb4b07d57a913e9c07c33ae63368bc357aa80dd8a4247be21c
MD5 92545671956e29b5cf20eddca3fedbf2
BLAKE2b-256 d5f64a61c2707f8006131abc4d4d3428b8a34e2e540d1ab115a2997ae2475d6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 653663ae0686c98125bbdc434c80e02fbcd88dc8bada5adbc993eac26f1a2832
MD5 e09667476cf5e7884d0d3f49a239a665
BLAKE2b-256 6769662af5f991c119a1b19d0235cf5721bcb773454845c48015d1cab080f473

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 cdc6e33122d4e764c1ad08349c49f8833ba2d0dc439f52ed9f4d9fd292335207
MD5 4d05419aecd13f36b5fae2be586ec326
BLAKE2b-256 00bffe591069af02e049c396cc6ab5f9dc53955e13f844b3a841f264eb667a6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07fb9118a15a9b954c3a2b151ac750ef87e6b9c74885c3da4b43e22433efc53e
MD5 0a495749a6a5fc07290bd4063546d94a
BLAKE2b-256 07fff6fbb45f6b0fdfb89ebe988acd09cee0d6b3a9fb274ebc1cf06645867d95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 22.9 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.15-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b48e5ddd1389902db8e5b216cfe2bbb561e8ca569f0c2534820bbc8e091f89b
MD5 52627d3257cdd89565ddab406f688efc
BLAKE2b-256 923d122c4911727afa884ca02ca44f155f5f677c29fc387411063a108f867af2

See more details on using hashes here.

File details

Details for the file spacy-2.0.15-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.15-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 eb0d31efbb8deb33ac463e1cba1b9575a29a21e55bd01306c724903511f161b9
MD5 85544f120e8bd7b70327634a2702fa01
BLAKE2b-256 675341cd42d060f9c9ccbe7236f4d5e9b0eca64d5e53a8e12bc297a739e4e92c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 56d8015092e33132920f498d07f41386adc045d8c781f1c4febeb5d5ba0d7b73
MD5 289fe891b5121388e98c7767ce307d20
BLAKE2b-256 58fad295b4689e843a1d7a78d9c7fab06b2dc75610753462570b22a996715c79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 056f29887519e58e1221c9fd2a82a93c74f8c437fb2dfe552b658c129f709dd1
MD5 b9722b05cd4f1f43d3cb4abcb86d8a7c
BLAKE2b-256 f0d2efcf1fc348e3934c62c578c7cc0823f80266ec628cb21fca5d00906eb6e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 021dcf1bc29fb24268b6abef0ee5829d2c8006e02f2c85890529cc06c7912bf1
MD5 6ac2c5e18891e153d90bb221655565bb
BLAKE2b-256 4cd713605366206eccf1a70b9e3504674e6d242600b0fcceb3e8066e43220e7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 faa5b53e7af9f39db7ef83b34811be1830011dea5bb00c491febcef8264b1d41
MD5 b1aba3a3971e2f0735c34de51c69681c
BLAKE2b-256 f88396f42c0c62b424207e6ae413229aaec25cfa0da38bd72cbcdbefcd009b27

See more details on using hashes here.

File details

Details for the file spacy-2.0.15-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.15-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 53d845d3e7d9f36fa5540e30e3f4495b59772f006b420a5759a7aa436e237cd3
MD5 4c4a97bb4bafb32a099664d69d85ae17
BLAKE2b-256 29a77f9d718ca5f2b12f75845d81872a537cad61aae2b2656a3839989737c358

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6fb0c6b2857de4375b3b7e34ac3e3a50ad368b4799a1acc1c24d7a026e57ba9
MD5 49320af28afe34982a99d4c440b57a1b
BLAKE2b-256 c62a6834b5f300ca01310205a25104fe83f24b111d5c7f685b6b2bc104833cbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8d5c57b4b38ff05de0915936f97e9ddc1e7b3c489a2194b1610f93c5d95715e
MD5 2e7700a8c7a61ee0ed885b8b4033587a
BLAKE2b-256 7b44ed916ab0d2b1cc119036714dbad3ff38048e218cda3bcc30c1c7d26647bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8cb91d3e61047529db8f1309ae326e28d625e367b07dd48bf6a3483d07011e15
MD5 a0139aff7585e373c6e49b293b491204
BLAKE2b-256 6d460996164894bc419a6be41c2cc4f695d5286193fd6d30575defdfa02a89f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 4af762faa6df97beb96345f49a3257f7c24a6360a06def050d040042f2588bbb
MD5 6da39c74fbdff0e464d7855b7b953a01
BLAKE2b-256 50193fce6f49ae085346c4e4d39f00eca2ccc2564806d85a615c8bfd9ae94342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2bfe6e5dad05cff4f99e4e2f7e74a75737d6daedc4c2b33260155c55e313e7a9
MD5 3eb5529e5fe82cbcc3486da454160929
BLAKE2b-256 67bb66ca1716f72b88401ac0d648ce3e6a2a99e01c77e9d5f7ef79682220a9b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.0.15-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.15-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 90af92fb9e8dc84602e719b78eff8bf6302c17f34bb46b67743e22e382ea7a35
MD5 ec7891ec6a6e95c640e4e9f948649688
BLAKE2b-256 3c2479ab88c205cfdfb5dc37d724e6183be1aec4a2a33349bc3260276485c72e

See more details on using hashes here.

File details

Details for the file spacy-2.0.15-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.15-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 b9aca106b245854e019062e4dcbdc1d66a59c085a78e64692a260802876570b0
MD5 11bef95d1f1a74095f231166f2bd1460
BLAKE2b-256 4894ee683a3a1fe8e4d3d52ddb36f310b2ff6c271be582e7f4eae337d76560c3

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