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

This version

3.7.0

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

Uploaded CPython 3.12Windows x86-64

spacy-3.7.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

spacy-3.7.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

spacy-3.7.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

spacy-3.7.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

spacy-3.7.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

spacy-3.7.0-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.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: spacy-3.7.0.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.0.tar.gz
Algorithm Hash digest
SHA256 ba07890a607d5a0421a3a1f63e1aa76694085eaf5f94e12a98edbff321fc9323
MD5 eeeb722c63b639485d75b76ecdcc5ad2
BLAKE2b-256 a7844210080c47e24d1ebff42466551f837d34ae137a6387258698ebd822e291

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d216cf189781b611d9dcbc7a6cc1ee377cf878b74a4b12b310950a07ceafc0bd
MD5 a5faebf42e001f8cfb7bcd61d68ffd3b
BLAKE2b-256 0937013ebb62015eaff1cd39d05344bd843a7d88700bbea19509036a7271895e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ff99e25ba65da2abdb8b425f53762c20c9e3214818cfcaf8c53d30a48f5a36d
MD5 1bece9b18e8cfec43169a5cbf0158d43
BLAKE2b-256 dc38f7fc2b69598847733cdc4de6eecaa3bb04154fddb14f00b5bb724c5a404c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc63d92a434d7d39cab321ca15c53a610733ae0080a46da5c7ffea5797a545fe
MD5 31ff43f95afc326fb6d7692686e30f4f
BLAKE2b-256 3bd52d6998b31b6d743fba20f5d3f557e256621e41125daffb2c5864ce8c20f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a91a0db4df3abc978df18343076a62f0ffe10ef64f7e7f1d3e9c52808ffc10e7
MD5 da60705d8a9951bee58cc1e0f3e2ce81
BLAKE2b-256 297637cbd0cb9c495fbc30e6bc24c5d10caa5f17926ed176820d8e12bdbe1ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e7a758042c0c888909d56db84027ec886df93524d5542f560b63d48530e3acc
MD5 e013af3a409c45967b689ce2e4d0d6c6
BLAKE2b-256 8df67017d27765b65ddc280f3ff181a84fff37082e043c2d0d44ccfb7c19198f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 49da3e1d29ae9fcabbc84113ada16f058be6fbfdfaac0c6452a484b4acc94ed0
MD5 eb07611d2cf71ac515191bb64bce945e
BLAKE2b-256 7c5482db444873150ef20815f5adb40d49cb77d28071bbae2d4525535505d0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12416702370b409f88090813fbedef1073263ffa8af18d817357fdf86d53e181
MD5 5ee048621a1a9e5cf83ca61bf955efe8
BLAKE2b-256 4c82342bfa2fda567e404a3afc9af757e54230f6dada4b2da03a10cd54c413ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58e266712f4a2744afe06983ecf35f363d818e1655a117107b54649d00380e31
MD5 64b1964863b427b7c8d2f5ccc3292cca
BLAKE2b-256 9289420bb001812906675882c35321a5d62d75e87136cd19f124d6c8f0ec02ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63e1e0de9966707577f91cb0e2865f8cc4a7953c28e8ac516ecb6e8b8f8dbe88
MD5 d47aec82cea74899923ea060078a54fb
BLAKE2b-256 7bf2a919c2a5c0f0250070cc8f7336b814e5d356d90247c2507462b3baefcdf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e36f698343025cc9ba19bc1d836724bdb18196823a26aab95c756c7e037d820
MD5 43a3717582c930beaecedd666b6036e4
BLAKE2b-256 167767271571a8f1ca0bc0bd0fe3026a7a8b1e8f4459a8052f9a0f97cb017197

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3cd962194d45bf35eb228cdd5c1358c835905cb3004fcace9aa8085fdea109df
MD5 e30cfa8803b8d2b5e4267c85e96fc9b6
BLAKE2b-256 6a3ea58cf0406a09699d4b0d5f1449208bc1577b554ef19fe44550ad3e66b87f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42f57715ddaf3b1029f59e15d8764d5c9d1793d4418dfb387c5df338df3a874f
MD5 8fb4b0d2d4ed2c9cdae887794b0da23d
BLAKE2b-256 942d782f52badeddf100759fc4be9b892f3ebaeac4d2e15d44c786c068703311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 926ae3bf06a776c70c44ff79f05921fbbbf6c2745ce6c186bdc8a227f06de609
MD5 9026862c3bcf8ed43213bcf4886cd20d
BLAKE2b-256 bc6cad5670637e03ca52982977c9f6a3239ea511fedb4cd06bc00f7503f6b0b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98223789069e794222d685756ecf828b103a9ec91284d16f3f4414ed41dce6b8
MD5 e53531f75f3f2bc7b7f743feace5dcdf
BLAKE2b-256 f55f1dfcf2d7ad1170f32e481aa17315737d1c82a217e9da260e828f76d53b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da9f9e06d7e29836c8a065125604d8096b28918b1798b5d0ee744043249efe13
MD5 4fe54c22a28fb68ed6443a59f788fe73
BLAKE2b-256 cab88b97486f683e81837c89c8e7ee24a3cca2d0fd68f37b87a7951575c66a16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.0-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.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ff4c8926022fd68efd2e1793003a7f98ede27d62e7a39e4e248aca870f46b8f5
MD5 86d2dfb6cddadf21a4e7657408eea6a7
BLAKE2b-256 47a947411f7d5ddd9005a071346f598673354666cae2398391595ee3ba3f10d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 254102beba26ad6e0dd084aefa073c8f0f9ccc73d0ed71ea1b74e2444960488d
MD5 4018d1e2bb6fc0e462219dcc68be0fa3
BLAKE2b-256 b0df630d4cda79d492dbf856b2fd12852b6abb239b8c50b01249b4acd7c17536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63091dec92e2b208993e868f6247bc2f6b6f87dcc7a3398e08cb582954a752d5
MD5 f4b9ce04ddcb604f318cd7c99560bac2
BLAKE2b-256 573c929646ef92562351c7722cd5da86ba4fea5447a60d6cbbcaded935ead8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c55de6ae238f8d58de7b634b715f53c8fdda1c6d6929a639302a04822a45c26a
MD5 d0cce8859bb8d47c78f4c22aadbf6c1a
BLAKE2b-256 c606dc2b200a9fc6ae4dca11feadcf30d2b1b21c0ff5d5283bc4089ff2a549c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7142dc06fa13435e92c227ea9e771e6d6aa36409c2eedfa6cc439799061b769b
MD5 4ce12c418618c90f7cee47d9725418b0
BLAKE2b-256 7a8617c223ff462f1f6b2da3d1d4cf3acac7b66003afdbb27b0e26136bf5d0ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e4d9f4af7a1dbde44a4dcefb08f379e274513e691cfbf110a3517caa5ef88d42
MD5 0faac006350ca22a5d6a5eb8d908edae
BLAKE2b-256 73a908d256e9df4a3474f9587ffb6655d9c52baeb34711774390883e7f3be4cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b180ebc170a241d41e4f62681fc01b27bd3fffc1146a04025688a90a7598d41c
MD5 1a1800987d4815cdbc5fa643beb20d5b
BLAKE2b-256 5054eaa6f120acffcb617c68d3ed68221660edb83755b70a5e6ea4e7df70ef25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e14cef297b894ad5d97df0d48da298e91899996368bf46817c8ba288feabbbb3
MD5 8ec27f5fd731c54c05628f0936dbc547
BLAKE2b-256 f6ff13b9e33700cb5cd4cd596462cbf9c0b5106bbb2e1fb8641ab6ad3ca2d821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7547e978d34c0c958a8a5d419278390f71629a87bb8cdc8f3df1b6d0a3773f0e
MD5 9474f5d44def051f936b8ece2b027255
BLAKE2b-256 a6c7f0a22f2015a70ede943b3b8f760f46de42ab12cdaffbd55c276e8164cda9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4ad06f4b339883a49d38fc96f51922a2360006f60bcb8191ad679c52d4e72ba
MD5 f6b267a5101ad746eeadd234f2d7cd7b
BLAKE2b-256 222c330ad3040aafbac08ccde47b4c3ae421baec675e09b28d9859a3ba79c2f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.0-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.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f253c409dc1062d48bd609c37bf445608df61d79c5e15a2e6afd660993a05a51
MD5 23a8673b9802b786450c57b954e87819
BLAKE2b-256 1a24b541f99225472c21c9b9ca56c3a7d77f02ecbe867f706e67f514dccbffa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7198b77bfc816255deb70e76182f6af414b70bd684f39c71fb45b98cfc26020a
MD5 a50f15f4647e544922877c4a352910d6
BLAKE2b-256 17bb45c7bbeae713362d274de3712f12c8a3148f8b1ff7b496377502f2da96d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90070a265901f92be92bb0e272fa9e6d13fcc86dba32bafb2fa40d380e26f571
MD5 5c84f4edac13367d73da1707ea8c2c16
BLAKE2b-256 7d03edb94fb96d7e1a7507ae09b569ace7047d7cd9276c7701b7fbfeb0d1efa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e6f40fd99a822fb2a4a9470d0b2b3a6cca7f7d3b65ae13716b1c1cb7d03d319
MD5 42e9460e3c992d580fd9babb68e9aec4
BLAKE2b-256 4c195e171a35ca79d44296f0061338c01e6e04f43fcc38ce613b04e2e3577015

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