Skip to main content

Industrial-strength Natural Language Processing (NLP) in Python

Project description

spaCy: Industrial-strength NLP

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

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

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

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

📖 Documentation

Documentation
⭐️ spaCy 101 New to spaCy? Here's everything you need to know!
📚 Usage Guides How to use spaCy and its features.
🚀 New in v3.0 New features, backwards incompatibilities and migration guide.
🪐 Project Templates End-to-end workflows you can clone, modify and run.
🎛 API Reference The detailed reference for spaCy's API.
📦 Models Download trained pipelines for spaCy.
🌌 Universe Plugins, extensions, demos and books from the spaCy ecosystem.
👩‍🏫 Online Course Learn spaCy in this free and interactive online course.
📺 Videos Our YouTube channel with video tutorials, talks and more.
🛠 Changelog Changes and version history.
💝 Contribute How to contribute to the spaCy project and code base.
spaCy Tailored Pipelines Get a custom spaCy pipeline, tailor-made for your NLP problem by spaCy's core developers. Streamlined, production-ready, predictable and maintainable. Start by completing our 5-minute questionnaire to tell us what you need and we'll be in touch! Learn more →

💬 Where to ask questions

The spaCy project is maintained by the spaCy team. Please understand that we won't be able to provide individual support via email. We also believe that help is much more valuable if it's shared publicly, so that more people can benefit from it.

Type Platforms
🚨 Bug Reports GitHub Issue Tracker
🎁 Feature Requests & Ideas GitHub Discussions
👩‍💻 Usage Questions GitHub Discussions · Stack Overflow
🗯 General Discussion GitHub Discussions

Features

  • Support for 60+ languages
  • Trained pipelines for different languages and tasks
  • Multi-task learning with pretrained transformers like BERT
  • Support for pretrained word vectors and embeddings
  • State-of-the-art speed
  • Production-ready training system
  • Linguistically-motivated tokenization
  • Components for named entity recognition, part-of-speech-tagging, dependency parsing, sentence segmentation, text classification, lemmatization, morphological analysis, entity linking and more
  • Easily extensible with custom components and attributes
  • Support for custom models in PyTorch, TensorFlow and other frameworks
  • Built in visualizers for syntax and NER
  • Easy model packaging, deployment and workflow management
  • Robust, rigorously evaluated accuracy

📖 For more details, see the facts, figures and benchmarks.

⏳ Install spaCy

For detailed installation instructions, see the documentation.

  • Operating system: macOS / OS X · Linux · Windows (Cygwin, MinGW, Visual Studio)
  • Python version: Python 3.6+ (only 64 bit)
  • Package managers: pip · conda (via conda-forge)

pip

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

pip install -U pip setuptools wheel
pip install spacy

To install additional data tables for lemmatization and normalization you can run pip install spacy[lookups] or install spacy-lookups-data separately. The lookups package is needed to create blank models with lemmatization data, and to lemmatize in languages that don't yet come with pretrained models and aren't powered by third-party libraries.

When using pip it is generally recommended to install packages in a virtual environment to avoid modifying system state:

python -m venv .env
source .env/bin/activate
pip install -U pip setuptools wheel
pip install spacy

conda

You can also install spaCy from conda via the conda-forge channel. For the feedstock including the build recipe and configuration, check out this repository.

conda install -c conda-forge spacy

Updating spaCy

Some updates to spaCy may require downloading new statistical models. If you're running spaCy v2.0 or higher, you can use the validate command to check if your installed models are compatible and if not, print details on how to update them:

pip install -U spacy
python -m spacy validate

If you've trained your own models, keep in mind that your training and runtime inputs must match. After updating spaCy, we recommend retraining your models with the new version.

📖 For details on upgrading from spaCy 2.x to spaCy 3.x, see the migration guide.

📦 Download model packages

Trained pipelines for spaCy can be installed as Python packages. This means that they're a component of your application, just like any other module. Models can be installed using spaCy's download command, or manually by pointing pip to a path or URL.

Documentation
Available Pipelines Detailed pipeline descriptions, accuracy figures and benchmarks.
Models Documentation Detailed usage and installation instructions.
Training How to train your own pipelines on your data.
# Download best-matching version of specific model for your spaCy installation
python -m spacy download en_core_web_sm

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

Loading and using models

To load a model, use spacy.load() with the model name or a path to the model data directory.

import spacy
nlp = spacy.load("en_core_web_sm")
doc = nlp("This is a sentence.")

You can also import a model directly via its full name and then call its load() method with no arguments.

import spacy
import en_core_web_sm

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

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

⚒ Compile from source

The other way to install spaCy is to clone its GitHub repository and build it from source. That is the common way if you want to make changes to the code base. You'll need to make sure that you have a development environment consisting of a Python distribution including header files, a compiler, pip, virtualenv and git installed. The compiler part is the trickiest. How to do that depends on your system.

Platform
Ubuntu Install system-level dependencies via apt-get: sudo apt-get install build-essential python-dev git .
Mac Install a recent version of XCode, including the so-called "Command Line Tools". macOS and OS X ship with Python and git preinstalled.
Windows Install a version of the Visual C++ Build Tools or Visual Studio Express that matches the version that was used to compile your Python interpreter.

For more details and instructions, see the documentation on compiling spaCy from source and the quickstart widget to get the right commands for your platform and Python version.

git clone https://github.com/explosion/spaCy
cd spaCy

python -m venv .env
source .env/bin/activate

# make sure you are using the latest pip
python -m pip install -U pip setuptools wheel

pip install -r requirements.txt
pip install --no-build-isolation --editable .

To install with extras:

pip install --no-build-isolation --editable .[lookups,cuda102]

🚦 Run tests

spaCy comes with an extensive test suite. In order to run the tests, you'll usually want to clone the repository and build spaCy from source. This will also install the required development dependencies and test utilities defined in the requirements.txt.

Alternatively, you can run pytest on the tests from within the installed spacy package. Don't forget to also install the test utilities via spaCy's requirements.txt:

pip install -r requirements.txt
python -m pytest --pyargs spacy

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spacy-3.3.2.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

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

spacy-3.3.2-cp310-cp310-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.3.2-cp310-cp310-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.3.2-cp39-cp39-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.3.2-cp39-cp39-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.3.2-cp38-cp38-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-3.3.2-cp38-cp38-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.3.2-cp37-cp37m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.3.2-cp36-cp36m-win_amd64.whl (12.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.3.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.3.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.3.2.tar.gz
Algorithm Hash digest
SHA256 14ae89c999b2a027007492f28da8872b41543aae05cb09840ed0e7a9b72af932
MD5 5be7181a51584c66ebb1f98259354e40
BLAKE2b-256 ed83dc8d1b7651f75fbea21a8b1c5a1563a4715d580882c571b26f5f32d3e7cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.7 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-3.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9efc01f19203eb9ab454fefc539632753c4f7a7d7921890d340a0e09f8a7863b
MD5 c39fdc77d4b7bcb60d1547cd36f2f8b0
BLAKE2b-256 1805e175de2bbd14213003f6ee6ee46109addc6d96be4b74a4c846660dc9f85e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fe27d2dcb12eba8263721b595790fba073175979c8db2713a4e0c0d75914684
MD5 fbf7a130551a27deba3e0745e550d5fd
BLAKE2b-256 74c330093d953c440609c9b9aca9e8a3dbf8728dff93101510d75ad79913662d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40262619d6dc5fd93824b83046c76da1285d0f41301562c5372c61d2f3ff77fb
MD5 3ca630230d167355ede127f1d9f61ded
BLAKE2b-256 bbd7a118b66da9c4e3058b41d998e7f30994b27f03f36a9c69624d18198ee3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f914426442ab39ed51e059cd3010f36b196ce8418f3d3e202c132c31a74d8c32
MD5 0855e9dd16db194d4121210fe659c8f2
BLAKE2b-256 377584a60754da337d32d77750a0366396654ae42830e69147f63fa205624e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 961ea3100393179e0cf6e7e91dd83ff9ace0e5f36f8976d71f3258102749578b
MD5 4c2f48ee58a54013742d0143f4579f5b
BLAKE2b-256 73a0c227778e5f8c5cfc0ef584439b529712dccaef7e9157339aa022980e106c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.7 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-3.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3bf0f908589e64727a00df86131558e7b6c6e185d1dbc3054cf3ec95c4941503
MD5 760e2243b3072985550321fd9080eb66
BLAKE2b-256 7a90d739ff81e28b5f2525d5043574e3e2b4cc25fc459fc35e786f1a6abe30d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e778b31f5959ffbca3d54748e65a2ecc518562c64d4fd3a97a236dc3d133596
MD5 5d662a7b6dd98d99edd769abfca14aaf
BLAKE2b-256 6af77dc13a7a70256c1c554c995b8b4cfd2fc1eb98a6bc5301db760808996c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f211c20638b9fd5aeee26f904697729e8179b00c18a044c27c17db7e589d15f2
MD5 a64c5fd1337e2c7b4b8ed5ac4bba4103
BLAKE2b-256 960b0dab174c13fe56f6cff7cf552714a9f89784e68634e681a981564fcc7a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05efef2f268ce0f11a8d5477cca3259853cc8f4417515c656d195fda1bc3f1ff
MD5 d1ee5a99e68046a513662a39f39f995b
BLAKE2b-256 5cacf9856d6b4a875abdb438fa441abacbae89da277a35d5b3927384138a98c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90787991678ee809e21d59900bbc7fc67c7c594f98a4c14535a426486ede0905
MD5 8a9a8a4f751d68afe434be911ddc9dde
BLAKE2b-256 c0ed1d1c6421983a512cae1ed0e2c77e9097f9061586394fe0e96b0b370b68e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.1 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-3.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e80cfa85091a8698066b9a10e6163b3632509aab18c7701e843af9999a17c3fc
MD5 078ada240f4a1c501ed1ddd401835d3c
BLAKE2b-256 46681fc4fd1344b03a9403cc52b074014333a9685f6b89365f1a5bf1f7eea350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9687b6c6cacce2066038debbf49683c9513c3bb7ec11e01b08db1235f0e94d3c
MD5 3eea7298ec042cfed1d35fa191038033
BLAKE2b-256 2d0d39229c239ce5a3003b28d415cb78fdf75dba2ece48eca3a16c12b096bee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43632d14f0e7814851348c946227ed04ffea892d34cefe54f846f3dd0b758497
MD5 fa5da0c90cbb369601bf66bdb8881eed
BLAKE2b-256 7f296cd28c24d0ff7d92c19507eb610fd30a72d0345c7f28536436703e5fbdd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8e2d944ec6c1ee326c0ae0ae1e19e9eed8f72533793fce91067673b15367b8d
MD5 022f0f17ab0eaffb638f202c58f862ca
BLAKE2b-256 460ae2babb8db04a27c207ba4a0a2f5d1e15edb361f92aad3f569d2d59960051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f88c836eb0ee80daf1815b381a9442e101ebfb6859f419e97beda66b7ec6e6f
MD5 7e7c54a2722bc7eb7dc2638f7b9b2f1d
BLAKE2b-256 fd4fad149915bc87b42136d38cd208fa6c55a422c5e197a8c1381f7fd4111642

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.0 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-3.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8dc15ba139155ec71e7fb0f309a164eeb6cf2eb5549cf9d74b91e440e7a79516
MD5 b1e3e113d6b985e07ec71012a15644c7
BLAKE2b-256 3217ae6ea2f06ab2f3ce707a4350e7df7a5ffd3b2fed5f9306e6e6c408c3cf36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 002a5a9609b89d617d26cd86006ae098c1fcd46e5a56a24b7cb94204cd1ccc4b
MD5 2dfcc730ea4a015af7e298841fc41ec3
BLAKE2b-256 9d798b5b1a80851cd45d175b97fdc30b81ef60218353a04eac6ea2840b81f2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48ad592cbce0da179600b37c7dfe0c3c33461cfff24314d09d1e64e93696256f
MD5 55e58e2aa214c23d20d20b97b0bf7922
BLAKE2b-256 e7c085cd84fb89f602af6b89df10051b8c88ba3aebada0c5e5429c4ab19be179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 551c2c2e9473e94221f130c29ba4fd9c10e5b6479394a3d93a1f5f34b62bb4c0
MD5 b04aa05e3d69aca61d77a70467e4debf
BLAKE2b-256 8fc6ea41b5c713b9e06de16e5e0e83f7d46aa8c02db0bb0dedaf2bc7d931462d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.3.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.5 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-3.3.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dabbb3c1e0c9d947394a7b2f21a768c097dd14f2da12c2b78fd4b18e5288817f
MD5 727e6e857e34cafefb0fd536863114e7
BLAKE2b-256 37ed76a3d4dd0395705f2ddf334089a922bb31df875a7de5056a704391a88d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cedc1ed7567a2a33c1bb90320699d712e3e9a70e963e20d8af9aab4d5e13f030
MD5 f709f57d80576c5506f9c58e00d1f61f
BLAKE2b-256 ce4bedb5700be91a9061b041ab30257d15ff3b79208eaeeff591cf1959e2fa0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.3.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23713a7668bf30d6b4d3c8f0d758a2104775d07731ff0c528fe35740be413d15
MD5 0d8aa86772e56ba06de9debf89a1be14
BLAKE2b-256 c50ddc0ad7462183a113f5f7192953a26141450ea4df74c70290a4296a9e226c

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