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 Travis Build Status 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.5.tar.gz (5.8 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.5-cp39-cp39-win_amd64.whl (9.4 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-2.3.5-cp39-cp39-manylinux2014_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.9

spacy-2.3.5-cp39-cp39-macosx_10_9_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-2.3.5-cp38-cp38-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-2.3.5-cp38-cp38-manylinux2014_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.8

spacy-2.3.5-cp38-cp38-macosx_10_9_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-2.3.5-cp37-cp37m-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-2.3.5-cp37-cp37m-manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.7m

spacy-2.3.5-cp37-cp37m-macosx_10_9_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-2.3.5-cp36-cp36m-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-2.3.5-cp36-cp36m-manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.6m

spacy-2.3.5-cp36-cp36m-macosx_10_9_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-2.3.5.tar.gz
  • Upload date:
  • Size: 5.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5.tar.gz
Algorithm Hash digest
SHA256 315278ab60094643baecd866017c7d4cbd966efd2d517ad0e6c888edf7fa5aef
MD5 29590262adc88b04650a980bacef667c
BLAKE2b-256 4571507b8dbbe3ee6f93c0356c3e5e902e0f598c02d919ad3116e16559eb011f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 45497775e986d2790c7ee3625c565e3ef7e9ffa607d50230aa3382dd6d9b26e7
MD5 39e7a4f64f7494f0d7622eb1b0f6de55
BLAKE2b-256 0da0b568e88641f382b09d75c2b6e24b8fd2947bade79255dd6fbb323b3a1051

See more details on using hashes here.

File details

Details for the file spacy-2.3.5-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: spacy-2.3.5-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49f7818bd8a597887013fdaaea3263d8b6e99ca64db0933c32f0896158898209
MD5 6ed2078d99f7bfb7dc118a0d675a1f82
BLAKE2b-256 d393e171d45fe1449f864d3fe7cc25fb26eb04b2acd18be482f58b7db5144b9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e9496f5ea3d08f2b9fc3e326c2c8cc7886df0db982a41dca2521d3f22ca043e
MD5 06299031d0f59cc482e06ee741205665
BLAKE2b-256 ede2fc242a6095ca053e9695263c98720b3f8b55377e0c261acf22d6a57dea90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 14bb12de0d03beb2d8309f194154db70fb364a0fae727e864c2b0228bf3438d8
MD5 42884722b1372aac29fe640f0e1c821b
BLAKE2b-256 a5b8fda9a72d927a5e261a3fecb689597b987f57f5d4ce484ba4a3e55fe2af39

See more details on using hashes here.

File details

Details for the file spacy-2.3.5-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: spacy-2.3.5-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7b3d7928d047e5abcd591f8cf6a1c508da16423d371b8a21332101cab46ff7c
MD5 cd12b2c6f942fb36aa75e30bd9ea3055
BLAKE2b-256 307f6e0040d1c01e5e8adf049b9702583b9e187488d1365419c9f6d185b22f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 118a92582b1054b5de7bc5ed763f47ee89388847ede1e0597c6df4b509643e14
MD5 16cbf793f2c19fb9ed46bc789f8c5b3c
BLAKE2b-256 d32b1f8a2441d1151187f36a0a6f3001f81b31da52972ff93b95b2a5f010cb61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4b7c0c8ab94c6433f08633fef415a054d1f3345b205bcb064578c79f35192917
MD5 122c2cad0182dcccd3532ff5b863cf80
BLAKE2b-256 6563da83e546869deeb119c895dbd36d62e643ee50fdf2db4d4c271841b9de6d

See more details on using hashes here.

File details

Details for the file spacy-2.3.5-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: spacy-2.3.5-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f153d8aa6104694389ef85c578ac1a3900b142f108248c7b9f5790d010fbe4ee
MD5 e43e35554768d822c0a1883b4c561047
BLAKE2b-256 95891539c4024c339650c222b0b2ca2b3e3f13523b7a02671f8001b7b1cee6f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec9eebfae2a35e464d1c35aa2109422765967ba5b10fa9f11da8873801d2241a
MD5 6c801df522a13f4612b4e89e0ba320c4
BLAKE2b-256 fad8e4de2da9975aa87e02e34cc775e8def3fcf99fd59da4315c928f40e40dd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4e2e79ab7c2af2af8a91913d6d096dd2e6a5a422142cfb35b30c574f776b9fd7
MD5 8f4af7ed84fa8b2fe3857970aca2cc45
BLAKE2b-256 75bf8e23493d4910bdee3e5c11add35dcfac67e2b3552a3fcba9aaf716e4600a

See more details on using hashes here.

File details

Details for the file spacy-2.3.5-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: spacy-2.3.5-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cecb9987a875620d0f185ff07dd04cd64d5097de48689e506256a27a46a644a1
MD5 62fb661dad15232f5ce1ab4a301a0231
BLAKE2b-256 e5bfca7bb25edd21f1cf9d498d0023808279672a664a70585e1962617ca2740c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-2.3.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for spacy-2.3.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 faa728e56f7b8fe0a70c4bedc42611da23de86b783f6ad588a92c115f427b90c
MD5 45a0967ccd8950935f12f9c07f33f7c5
BLAKE2b-256 a94fe0c9e289cf90c330c7641d182201210db56f56d134a8f99580f2abda8d7d

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