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 70+ 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.6 out now! Check out the release notes here.

tests 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.
⚙️ spaCy VS Code Extension Additional tooling and features for working with spaCy's config files.
👩‍🏫 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 →
spaCy Tailored Pipelines Bespoke advice for problem solving, strategy and analysis for applied NLP projects. Services include data strategy, code reviews, pipeline design and annotation coaching. Curious? Fill in 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 70+ 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

This version

3.6.1

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.6.1.tar.gz (1.3 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.6.1-cp311-cp311-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy-3.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy-3.6.1-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-3.6.1-cp311-cp311-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.6.1-cp310-cp310-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.6.1-cp310-cp310-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.6.1-cp310-cp310-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.6.1-cp39-cp39-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.6.1-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.6.1-cp39-cp39-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.6.1-cp38-cp38-win_amd64.whl (12.4 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-3.6.1-cp38-cp38-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.6.1-cp38-cp38-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.6.1-cp37-cp37m-win_amd64.whl (12.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.6.1-cp36-cp36m-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.6.1.tar.gz
Algorithm Hash digest
SHA256 6323a98706ae2d5561694b03a8b0b5751887a002903a4894e68aeb29cc672166
MD5 7cabe52f75dadde837bfdefcc8192d49
BLAKE2b-256 94f5c1cb70915af0a1976c40512e450ec86dba02ef547e3af49bd9061af4bbd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c6b7184bac8c8f72c4e3dbfd7c82eb0541c03fbccded11412269ae906f0d16c9
MD5 40662f07a6817f5f02be450d4ee87244
BLAKE2b-256 d69e8afc618cfed4b5dc602b11754d4d9193a268439704defae301bffca7f04c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c51ceb2e0352c99b1703ef97849c10cb27ceb58348cb76ab4734477d485035b
MD5 ea370f616be202cf71ffc96ed7109b4c
BLAKE2b-256 350e89cfb0241844bf088245415efb2146172bfa62e7fec439f72920c5df165c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f426f312e945191218a3f753d7ce0068f08d27b253de0e30b9fbae81778bb90
MD5 6cb3b8959aab572c23c0b773ce08696e
BLAKE2b-256 5303c637685780eb336293e276263ca5804cf5da438ed437e133816e59afbb33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ee28656f518e0d454dcc6840a17ec4c6141c055cda86e6b7a772ec6b55cde24
MD5 be6952dcad4d698e0acffb9061c19d5f
BLAKE2b-256 66327cd50cc40a1dd52c1e4d0f374aaffe32d91e40c0eec7100f5e288413c29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 369c1102eadfcfe155ff1d8d540411b784fe163171e15f02e0b47e030af7c527
MD5 d39c9abcd2dd60cb44af0f31c1b5b957
BLAKE2b-256 7e8ea6671bbe0742713bc23a2dcd043ce401c859f29cfaf1487ddb43317163c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 385dd3e48a8bb980ec2b8a70831ab3d2d43496357bae91b486c0e99dedb991aa
MD5 a4b36f73652f76187411b8b06e29784b
BLAKE2b-256 341acd4f39dcd28628bf69d2a6642aea3854f2de877196c737bf08e4ef3ca372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 479132dd3118024e97022735d6ad10d50c789f3979675a8db86e40f333fa335f
MD5 539cc27454f260320dfbae297844a447
BLAKE2b-256 5893051fc55f3e4e6d0d97beb77bbd5cd9e17589a0092305b4ae6164c6dcb58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f75430fef7e18e6a4c32ca7efa3fb17020eaaa5d7ca0aeac6f663748a32888d
MD5 21751d1cc47a5a013213d4948492f6c1
BLAKE2b-256 e0122b2054dfeec157745fdf1252c62b39c1dfff53b56f212300e0a1a27a07fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb00bc74f59b537518a398fd066c0f7a8f029c763cc88afa1a0a59914f639e83
MD5 33015d873aa4263c05efc8a32817c6e6
BLAKE2b-256 54a8000b1df88d6c7d4ca268274e2cc7481a040c92f7b1e6b19a726d58ef543d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fb23b9af51ee8baeea4920d6ffc8ef85bc3ea7a6338dbf330a0626cf6ac6ea9
MD5 cf7a826020e4c0eca61af5549e79fbfb
BLAKE2b-256 77ec305ad732d9793652b528630499c37e0d1558d017aeab6572d61a30e99b96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c9d112681d3666a75b07dea8c65a0b3f46ebebb9b90fda568089254134f0d28b
MD5 9b8f06d161992b37f393c0c255eccab2
BLAKE2b-256 6108f21d6f07a879cdfe284bc5bacfcf86c054866c24fe2e7c2e383d7a04421b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fdee99625ee3c11537182598c81a17d4d4521c73b59e6c1d0ad6749c6654f16
MD5 4aa805bc4b2b6b86369342b4bd323d57
BLAKE2b-256 8a930449639ca5ea9c1f0d68118909e09845806f2ba01f22c712c5d2f6d818e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7762c1944cdacc0d04f5c781c79cc7beb1caa6cbc2b74687a997775f0846cec1
MD5 33992db8253032bfed9bab8fc0f5f981
BLAKE2b-256 975b7c4a690b2fb452a98bee5ee2fb006b5aab90059c03864f10385c97917aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b797eedaf29b8726e5fb81e4b839b1734a07c835243a2d59a28cc974d2a9067
MD5 50502dd901a827634cc27ea8830eab76
BLAKE2b-256 ad5d185edd1015e6cd3914060be29a0a1cce9655e9cab48eaddf92ae4aad4656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b5350ad1b70fb9b9e17be220dd866c6b91a950a45cfe6ce524041ef52593621
MD5 f950a0d62d27aaf585a8ac0be2d25124
BLAKE2b-256 1765a925ae6f614bd8537dcdc352095ec4f334c61522dfe1b2ecd5203ebab226

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 738d806851760c2917e20046332af1ccbef78ff43eaebb23914f4d90ed060539
MD5 875d01b5ea87284c6a41ed95abc954cb
BLAKE2b-256 14267447496e90ee51bf00d1af33085c180eeb26166149bed1d30ef4c53d862c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3de915f5419ad28d8d1c614c77172ce05b0b59a7c57854f098b7f2da98e28f40
MD5 bba2b9b89b8c90db8999e409340e5b22
BLAKE2b-256 9a7d36cab023e0dd65bc2144137f3377481e07f93ead8abfa0be28702f1430e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77ac5d89d909b30e64873caa93399aa5a1e72b363ae291e297c83a07db6b646f
MD5 164b610fb5555990f2be39a229d08ad3
BLAKE2b-256 26a52d2a3c82148c4ed84ed5f794c245ced6470e9d297ac79fdce7babd147f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3abd2b82dd483c13aeb10720f52416523415ac0af84106f0c1eaae29240fe709
MD5 6c77d6194aa05ceb7b0a418a8a0d5c06
BLAKE2b-256 4e100c0b678298f8a4326a815f221746706471bc7ec6e708e436731132cceb58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a110dc5bbc5b37176168bb24064f7e49b9f29f5a4857f09114e5953c3754b311
MD5 56451c002865f772fb95bbe8bab78e5d
BLAKE2b-256 2cf54aacdbc74b0bfbb485a63a2b1d2982c2fde53702b7cd8b19d9db2ae7bb18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 13554a7bda6f9b148f54f3df0870b487c590921eaff0d7ce1a8be15b70e77a92
MD5 1b4a599c2cbb33a5b696467489cd189d
BLAKE2b-256 3d0092c285842300015d9b62f9d43a9fcd8549534e6e916eb8e857d92dca973a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca97c6052e098f00c0bed89dfa7c0d9a7ea24667d67854baa7dba53c61c8c6f0
MD5 daf7e775f248a2c2064476a36d3b7acd
BLAKE2b-256 1b0988bb47efcc6908d9272410a6f2966a01bb44585aae37c8d190e1bc0aee58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 590886ca51ad4509100eeae233d22086e3736ab3ff54bf588f356a0862cdb735
MD5 4b80e48135e4bcd248f063cb7413422e
BLAKE2b-256 47e04bc0844ac7feddd0841dd896462f8dc92e4b2a671b9bd1b472fdfbcb8510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46c27249590a0227d33ad33871e99820c2e9890b59f970a37f8f95f4520ca2eb
MD5 f9d0584b6977ae4902e7ab0601e3e17d
BLAKE2b-256 350f100047fb01a242df658e6675e2b3967b5480d39643d5d943c093b21f3b08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.6.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.9 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.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 eb93b401f7070fb7e6be64b4d9ac5c69f6ed49c9a7c13532481b425a9ee5d980
MD5 b8d831ab47ac340dd36933cdbad25f6f
BLAKE2b-256 d80a67c480edeb5be0741019d31c9edf10d44928723150ed87e921253afeb518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17424ab01023ece5679fe5c9224241d4ba6b08069b756df77df5b0c857fa762c
MD5 c98cf31ae2df8d67737a9320c7dfc8ea
BLAKE2b-256 021d429e2d0ea627a507e7e809eea75a1bb2354583e4cd54f67ac1edf2442101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 643b69be30f092cc3215d576d9a194ee01a3da319accdc06ae5a521d83497093
MD5 6637af77373edb407481f17a46192462
BLAKE2b-256 95b76c16b7f19e602d5fb7d4dca28684187acc6f47678d1ed702a59b897307a4

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