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.7 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.7+ (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.7.2.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.7.2-cp312-cp312-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.12Windows x86-64

spacy-3.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

spacy-3.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

spacy-3.7.2-cp312-cp312-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

spacy-3.7.2-cp312-cp312-macosx_10_9_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

spacy-3.7.2-cp311-cp311-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.7.2-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.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.7.2-cp310-cp310-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.7.2-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.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.7.2-cp39-cp39-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.7.2-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.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.7.2-cp39-cp39-macosx_10_9_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.7.2-cp38-cp38-win_amd64.whl (12.5 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.7.2-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.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.7.2-cp38-cp38-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.7.2-cp37-cp37m-win_amd64.whl (12.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.7.2-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.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.7.2-cp37-cp37m-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: spacy-3.7.2.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.7.2.tar.gz
Algorithm Hash digest
SHA256 cedf4927bf0d3fec773a6ce48d5d2c91bdb02fed3c7d5ec07bdb873f1126f1a0
MD5 64bea884ccf7654073217e5a680923ad
BLAKE2b-256 ef9f0afee264faa799e7300e2261680c518b2ec32bc2c1e5646684b51ec8b677

See more details on using hashes here.

File details

Details for the file spacy-3.7.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: spacy-3.7.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-3.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7419682aba99624cc4df7df66764b6ec62ff415f32c3682c1af2a37bd11a913
MD5 2f32ad899e4334457023874a4180d537
BLAKE2b-256 13e731226298e99a7babec707d2badb1ae0b9f94e262199f57faf08ed899f4ef

See more details on using hashes here.

File details

Details for the file spacy-3.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d35129b16ae2ca4212bf22a5c88b67b1e019e434fc48b69d3b95f80bc9e14e42
MD5 ae8af168b47acb445efcb533ef19e051
BLAKE2b-256 48d61a1758bab89103d728d438cfa41d2f9a9430ee3326a03dae028daa8e3a36

See more details on using hashes here.

File details

Details for the file spacy-3.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy-3.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbbe055d2170ac7505a9f580bbdcd2146d0701bdbd6cea2333e18b0db655b97a
MD5 f4f35fd0d17d4362655d8583fa4cf303
BLAKE2b-256 d30b254c60a09637c602b0e9652440046d5362699ad649b4bfb8d45553cf55d4

See more details on using hashes here.

File details

Details for the file spacy-3.7.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy-3.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df1b9c4bbadc89bad10dba226d52c113e231ea6ad35c8a916ab138b31f69fa24
MD5 931f7a45076bde92c55cbfad727f703a
BLAKE2b-256 1ca5d40e4efc687a03efafc5f1a2e629ee543b7a68a70567033e132e0305d3bb

See more details on using hashes here.

File details

Details for the file spacy-3.7.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.7.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2558df8c11905a0f77a2a3639a12ef8a522d171bcd88eaec039bedf6c60d7e01
MD5 7fc47bafe2c0012cf659a198d0086dd3
BLAKE2b-256 3b1eae5867496b241bf75a93035f2d506535c6346362b5414e48c091356b6878

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.1 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.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43e6147d3583b62a2d3af0cd913ac025068196d587345751e198391ff0b8c1e9
MD5 c6c99aae7799a85c3d2c67d089dd2695
BLAKE2b-256 90f00133b684e18932c7bf4075d94819746cee2c0329f2569db526b0fa1df1df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a334667625153f7aaf188c20af7e82c886e41a88483a056accba5a7d51095c6
MD5 2be16e3ae4c2190f5f547642b782bc7f
BLAKE2b-256 218fe67f493b6ae4d359d88fb7e22937749b9b40e2cbed601a2f870d2c94159b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26940681cf20c8831c558e2c3d345ff20b5bc3c5e6d41c66172d0c5136042f0b
MD5 7b79f53afbe279f8c0ad1f74cfb8e553
BLAKE2b-256 114b611dccc4f80f1b9d320797ec88b9b7fca4acdbc8a4c718c3fc1fa47a90f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7293de33b1e9ede151555070ad0fee3bac98aefcaac9e615eeeb4296846bd479
MD5 6ec09d72f4b01ccf2910de9c72dee287
BLAKE2b-256 caf3609bb7512cad1f02af13daa23aa433b931da34c502211f29fd47dceff624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5af30aea578e7414fb0eb4dbad0ff0fa0a7d8e833c3e733eceb2617534714c7d
MD5 3d2fce30387cba65ffd4706eef07b3bf
BLAKE2b-256 69677116bafd0aa853f4101a282defcb9d6dd8a32a76b5c4f8edf7603cbf8224

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.1 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.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66467128e494bfa4dc9c3996e4cbb26bac4741bca4cdd8dd83a6e71182148945
MD5 5becab18eb39d1e76584005373bf254a
BLAKE2b-256 f58f96f8f02c4719ad48973eb509b2bdaf7afe68447b54cb30f00420032c9c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a748ade269bdbea9baaa49ec00882404e7e921163cdc14f5612320d0a957dfd
MD5 b89cf228acbb847cc2e86af491821a50
BLAKE2b-256 d6c8d659de66da2be05ad10fe029954a90a5fb6ddffb75aaab6702173e9dd0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e3767b2cabbe337d62779ae4fdc4d57a39755c17dfc499de3ad2bae622caa43
MD5 c0b67503d1844e760098a5072bf8e884
BLAKE2b-256 9f20e32e99c9adce9d09234e27bdf054e2df452da9421fe2253a4cc68fa23664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f132c05368781be5d3be3d706afce7e7a9a0c9edc0dbb7c616162c37bc386561
MD5 5a235ebb0225632b4c0a0ed9e68cdc2d
BLAKE2b-256 dfd2440527cb9099be67ef0e121c71feee1f5a59c956cb10d35afdf4abc35ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4e285366d36c85f784d606a2d966912a18f4d24d47330c1c6acbdd9f19ee373
MD5 5372b37c37e63db0599618fbbdf1c3fb
BLAKE2b-256 cc0e601ac0963699c38a763af2cec9678097eb82d5d7fa4bc40238d68785050a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8a7291e7e1cfcb6041b26f96d0a66b603725c1beff4e0391c3d9226fae16e04
MD5 1c6587bfe966705a3e02458bed0ec437
BLAKE2b-256 f7a8ce2bf530416327386d10f9ed577a600a5499987cb3368215b46c7b2f7221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 111955d7f4786b952672e9c5cfd9f8b74d81e64b62d479f71efe9cfc2a027a1d
MD5 5fe71c3ddc0ee42150be055d5b4e9aac
BLAKE2b-256 d30e1b039db9cf1db9f5f710369161ef124151b1cbde02b2781521eb1915b031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ccbffb7825c08c0586ef7384d0aa23196f9ac106b5c7b3c551907316930f94f
MD5 9649af73f1d2202d1ffa30581d1bc340
BLAKE2b-256 6d784b1c00ca9aaf3f0cd140869e0219a3522093b1e33240c75a6098ec86c931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad7f378350104ca1f9e81180485d8b094aad7acb9b4bce84f1387b905cf230a2
MD5 a14bae72d7ed898902fd7bf06bbf7218
BLAKE2b-256 d95844942b2f252c0bb9d6c2c3112d6699532109a5e50e5aeeeda613e1e65149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b22e0e8dac76740d55556fa13ebb9e1c829779ea0b7ec7a9e04f32efc66f74b9
MD5 e60ed1648fe052d34210b881dc5816eb
BLAKE2b-256 e0f18a7701df03bf725a1469659bcecef181eeef6ba011103439ba4dde1fdaf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.5 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.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c2f3f04b4b894a6c42ee93cec2f2b158f246f344927e65d9d19b72c5a6493ea
MD5 1bfefb68ab80412ed413481d8051733d
BLAKE2b-256 a7664ce5e9b9dfce68b64b21c683ed891ce512b4d940b45bd6fae808656528a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 730f23340dd157817d2da6df21f69966791b0bdbd6ea108845a65f3e1c0e981c
MD5 41ec5807a795a5086b49cfb737368e00
BLAKE2b-256 6c946852af0a468b710a042876be3782183646525145b1d5e92a2c3e88b0acf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3d25d2f22ba1d2dd46d103e4a54826582de2b853b6f95dfb97b005563b38838
MD5 db853277488de1c2b9f08cb2ded4464f
BLAKE2b-256 4426c44c9f603334d9a63d9a72f89021782d141b1e5fed7a98391e14ff153a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d42f9151a2f01b34227ed31c8db8b7c67889ebcc637eae390faec8093ea1fb12
MD5 15d30562e56a4bb6492c106378f95e94
BLAKE2b-256 32691a984d3403acfadb497ce3cef266f61e166e157ee318a16e28ca912a1ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bd89770f61d5980e788ef382297322cceb7dcc4b848d68cb1da8af7d80d6eb6
MD5 7e35da208370af624e7e530550b76ca0
BLAKE2b-256 f1a05e3d997bd870d66851738aea19386ea7513a9710ccf5e0400a357173687b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.4 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.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5d9b12284871ca5daa7774604a964486957567a86f1af898da0260e94b815e0d
MD5 98de156319b0d48a4b3fb6f16b028030
BLAKE2b-256 f828fb76c00ad5c0917f701a477be403ad03d268f8b92b745274e0d90523f593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcaad95e3e7d0ea8f381f3e2d9e80b7f346ecb6566de9bd55361736fa563fc22
MD5 6f18ccbcdca76cbdc37f0bdbd268df97
BLAKE2b-256 34a881e670e151a2c47a302a2e72fa29ad98667db04a2ae057f093c42d1b6d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09c5c9db529dc1caa908813c58ba1643e929d2c811768596a2b64e2e01a882b1
MD5 97432a7c6ef49d0913b6d79408708535
BLAKE2b-256 c1440e58ac2e00db440608b72d6b42c5632bba2ffbc67e7f7903e9d9c9bc6a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b12ab9c4923ffd38da84baf09464982da44e8275d680fb3c5da2051d7dd7bd2d
MD5 ca14b7a288f3cf0741b5b882984ad842
BLAKE2b-256 2e4d0dce5b9df3e51a57476ac27e66b03953793e1f21ba09a1be166dbde43a26

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