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

Uploaded CPython 3.12Windows x86-64

spacy-3.7.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (6.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

spacy-3.7.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.7.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

spacy-3.7.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.7.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.7.1-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.1.tar.gz.

File metadata

  • Download URL: spacy-3.7.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.7.1.tar.gz
Algorithm Hash digest
SHA256 5c6b727194d676f642534353d129d4f110c9cbf533268c230a333a4f92a5a185
MD5 9339c400415fe4c6339625527168caf4
BLAKE2b-256 ca16843e55cfae62c0608c5caf939e1a080d6291487fcced65eab62da5a557d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe1b7b2cdb4aa8a1ed373213b82f951c348bb2b5d0788865d8eb437f606c39ea
MD5 9e46ee2638e21d0155004d65add5b37a
BLAKE2b-256 400d6c31d61268bf1e8d540c79d69cdcd549c0ea8e8ec1f38066db73c0778e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ffc9707373a823843948d4b36bf80f5f1919836ee84d0a4efdad50a8353dc9c
MD5 4b832f8c9fc73595ac6daeab6bc99021
BLAKE2b-256 3b1665d9be9abc6ede7ef3ced39bfa0d11719331d4795f133dde8df9dcdd5c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74ca256a7087a6c9725efc62b162ad6a0bd135d6ee8018d9ee8625b8de3c66ba
MD5 a25bbaf309588054b79c4412694f1ffd
BLAKE2b-256 ea3ccd7d551e67c9ab4742a3ec4361c1c02870664ef7278b99fb7476cb314201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dce1a4f6da9ac66f634aa7a945bac48a5e8645b51830c03da0e13c8d2e3463e8
MD5 51afbc525b3bf194bd9d0856dcc5dd5f
BLAKE2b-256 7a05fd7ce75faddb7158ea821b89abc6838326e14f8ae9c1357cd5bf57f85f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 727bd2af75bf6612921d1fd281a18bfd1a9dd7262b3eeeea93f0c3de803a466a
MD5 1315c383d7bb57150206bc0863059e83
BLAKE2b-256 6086e409e7b108c9eb9d1ea635296aa44e1accba410773e03e5c737e6c783167

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08c63929f910f64f833267cca7449c77028a96526d299d6212a0e5a63c161af7
MD5 67bfeaeba6891bbcaa29ba1874d9c445
BLAKE2b-256 adca1f6d0446d8ed55290ca49db6416c4faeeca579d127f379a2e360f179b69c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0ac9e12426cbf17ef33437314b967af67afd72f35de7de65eaffbc39f806e09
MD5 35677616378b79a44fd470059e2b469b
BLAKE2b-256 89180c6d563df29f3934495074ff62a9668e13c92cd588272773cf8c32407764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2331e3b55032b03c657e4951e83afe25f7e9ec8bae7e479aa0a6a34516353166
MD5 5fc3420e92c6b771bb7d6e041fc573f7
BLAKE2b-256 0eaa803e55f1b877e18d04145ef21fc6b1c566434136de3595c339683402f9e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57834545db4bb528411aaa4ab1805af6181185d551d93752003692aa7163766
MD5 e9bf1296c60169a96457f9a7d9e1e577
BLAKE2b-256 2e5ed6333dfde4195072294495cfdee8135a99309a57d8e2493858fcd2a047d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e6d39180a44ce9eb8709c95845dadca3fe18b256a6f2974d10a94866451f13c
MD5 8d5232755fe50ff51d98f7c74c9292b9
BLAKE2b-256 2d9517bde607bb54eac74ed378bd11153ab66dec85cd99905b2048568e87d643

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40efc1f3cfe574778b5dc1b93869cb5716ba737e6df6db4a3a8beb09e1f755db
MD5 49618b36389e349bf77b4effa008884d
BLAKE2b-256 2036ce09d1461e911e796e60fdf143b7cb3e17b5c4ca5450584db903eae57413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1af9dec8c703ca6ff6b643afcd05bee156b7dbe6036f09599c0928158107da14
MD5 0a7d35a6e11f92e6996b1b930d6efd8f
BLAKE2b-256 fa7c8518799f3fc85e4c2538c0b4fc2306de90696f00c1a8286c943f9414292a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96384e2431bd213a810b88429aab6d573bc460f188576b7f26158ce8dc187dbb
MD5 e44a6fd0630ea3d6552d1f30142008f8
BLAKE2b-256 1deac7af864f44d12e109b9a026c9321c8697140b5be91e8cc5f20201add7a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4faf5ec6f548bdaad67047418c3d3dc940092efb53f5f3ee2eeef86f5641de76
MD5 3050cdaa7143e2cd7b949eb5f5808534
BLAKE2b-256 779b3fad1d762ac36347555bcb03d78bbb600f71b6063ccc7866119772e39fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdc6b7eb6025047f9aef1764b05d63ff613d4d74763c9095941d9a976684c5cd
MD5 9474707ad2b0706636e331ab34e7d1bc
BLAKE2b-256 e66c49c73df7fd4ceef33252d35855ffda409d746909e3c5751c3db5879bcc1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.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.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b9e0fb093552cdbdfe9911c2ddd33af79bbba050321b1d2326d26658555a089d
MD5 8c1d8b7a156f05d9b85c5fcf724f4b60
BLAKE2b-256 ff4631a7e5715304c06a03050dcc4587de6185ef6ef1a89436bb566eff9b0431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e339ef7d70d2652a23e36475d08eb63798236b03ea611b1032936198742f0e54
MD5 1ef581cda7eca568035606d52982ff18
BLAKE2b-256 f977a5d0658224c40255786c49d05ab99f251bd5f11adc8d2cb1dfa846212bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72e8fadeb107ab849fd8c5dee7f458d45b8563bdcaf51ff6ddb84c687aa314ee
MD5 fa01e28f99071211d11548c67ba0d4c4
BLAKE2b-256 028492890bc449de66cceedf5a4c7034e7927969823548d3e8dabf5deec6a51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38fe734c0bb3b79d01e409a5494aedae9a34018e00c2ce21fdbf6508cc714fe2
MD5 015c8bb04185ea90b5919ca1faaab914
BLAKE2b-256 d3d4061c15e92291f77b676ac849d8cf2b3b41386397675fc915389e2c0de276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20077189571e5aef60efc0e2518e00261bb54b8299768d7c30ba0f41af7ee765
MD5 5b10fe8e9780b34f8f12aa74914a60e8
BLAKE2b-256 76d143293cd58c222daa6c7feb7522c29b3f45441000e04b756eeaa5f49b423c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5835ff37901172d26ecac62e2a4646fe1b2e159ac28e9d01b8c1850fc957049e
MD5 565f4352384917587ab91feef9df5089
BLAKE2b-256 9e67031b19b07eed2186be8d82e43ff808e3e3c5b647fd18447eb49650b83171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0951ef235ac5ea1dc07aab2c2d46b290796ea1d4c7e470eb79580dc9bc3e1823
MD5 5cc1cc3a7912d2ec8e1433eb85851f4e
BLAKE2b-256 9cb22564765ae9ea591ce506eab316b8da18067f46ed0a76c8dc240a985ddf54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ee9b929bbec686b21e5714ddf7b3e7511c1a6cdf55c0fd0eab88d7941297659
MD5 f522ccb88e1b8c967d5b0c3b439c1995
BLAKE2b-256 abee39518e83a449ad486392470188364797b0e04c166ec981211de61edc66a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c5860ab3b1f68ede66b4b138c3976d1d284b9ac15548013d407d8b541d28276
MD5 7c4c7e146cd1808e2cf52b2af989bd3f
BLAKE2b-256 e0755a2b4edee52dc1032b880c8d76b25b763f56d2145e30a880bb19ee7089c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 585e5944685df5aa96c49e80ab8e171838f35a118954d81c0aace869d1df21a8
MD5 9df2fd840529b4557f5afcd25ae1ce60
BLAKE2b-256 fe28f31d78586bfc24c94c0f9aff7c753eea6cbd1beff11b6b6160a5a781b88f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.7.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.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 73c72d1a6888561a9eeb92d7bc3a43f816cef6b1e6673012f0cae4c68b51c92c
MD5 31260ec49d18fb423e9512672fb25327
BLAKE2b-256 d30fbf3a6c488ee8c83a3083a3d3dc5d0e7e4b06bfb4a2b559bae648d6e923d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f18ff5cb60e7e99f5993cf814a6ab181df2e262465620cee2d72421f51d0415
MD5 6a9383bff70373dde7024ea13ece0e0a
BLAKE2b-256 4fb64fa739f7c722310c3330cfc84000e25929f3dfac18962ad71fb7c3e041cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97b703aa3a1ccd12fb0ef78724cdabd9ccce3285ff507699a47e2aed56850a14
MD5 63abc667cd52bfbeea2b1f6f74d08278
BLAKE2b-256 551c2a5e17de0c16851b4741b058a0d0741a5a08be49a8718baf1433deb4d90d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0f293c3387040004b01c209a61cdffb643e15c9aa587b01d411422136b12b96
MD5 cd9818fddc92dbd5b138f4a80585ec5f
BLAKE2b-256 a6a4b9e97f4c0f73a72e8f757a20c0083bec1479e07a18f55f2f95377225d244

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