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.

💥 We'd love to hear more about your experience with spaCy! Fill out our survey here.

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

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

📖 Documentation

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

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.5.2.tar.gz (1.2 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.5.2-cp311-cp311-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.11Windows x86-64

spacy-3.5.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.5.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.5.2-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy-3.5.2-cp311-cp311-macosx_10_9_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy-3.5.2-cp310-cp310-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.5.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.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.5.2-cp310-cp310-macosx_10_9_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

spacy-3.5.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.5.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.5.2-cp39-cp39-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.5.2-cp38-cp38-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.5.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.5.2-cp38-cp38-macosx_11_0_arm64.whl (6.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.5.2-cp37-cp37m-win_amd64.whl (12.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.5.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.5.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.5.2-cp37-cp37m-macosx_10_9_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.5.2-cp36-cp36m-win_amd64.whl (13.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.5.2-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.5.2-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.5.2.tar.gz.

File metadata

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

File hashes

Hashes for spacy-3.5.2.tar.gz
Algorithm Hash digest
SHA256 22c1ffaab285b7477003d4b5b038414cc32468a690d479015b9a698c531c813b
MD5 fd074da4f25f2362acce5ff13f05d545
BLAKE2b-256 7f1746f037b3d49844e4cd529f8d24e3873d52befeab1533899f183290b8b6d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ac4cde010cd09775f659e57ad005276f4c52657af039769433beefa161e0288
MD5 a63c3543ffe22e7cb8beab67049f790d
BLAKE2b-256 e8ccd12c644b75e895a28fbba99a0a236e98cb7038d9f643481baadaf0eb9ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 572d01288e40bb57adf1a41949776e005bb0d3c19e9e830f5718355ac891ba44
MD5 66e09be0914810de8fd47c182241c9f9
BLAKE2b-256 b794cc548bf109a4fa43af0f65cc672d82bfbacbe81d1897474e81c3cba41c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5fb40480dd611d31149b6b122c99a22d46e15d6b367da36e41dda73eaaf3036
MD5 d5ff32112219e90c3aeee1458fb6c113
BLAKE2b-256 ae25acda12a13e66e218f772fc2c6d4c240425a95acaa69bb0f9c3b9f45e0ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb0b7ddc37ff28ba2e59fc3b88f411d570ac41b64477f56500b4ffdae582d242
MD5 99b73ae1b0e94c73715d9d4b10cb173f
BLAKE2b-256 0a7a1849e457753e1f0befbee69b22162d76fd1eedce2954135e39bf678620f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3f6a44d697e8e8a304fc2ed46f3e9c564ae7b148c0500ad35c56cda285e1b41
MD5 0a5a1ba6c2287d1d84f6903c29edded0
BLAKE2b-256 1efe889fe1c5ac6f0870ed2c17e9d6ca5c47a5814b62030ea0447e2b79233d54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.2 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.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee629cb45e9cb378bb0bce7d740758d1761f04da1e1463c496bddd93a1738c9b
MD5 23944850a63e093014455c44b8f982e8
BLAKE2b-256 4b010c803b1e22b7d59a2c1ed30a414be4e6c47020c97190f57e84de3497cea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1af8aae58c201ebc038be74109b8a88fbc417375122b92c82af4d7373e1dbe76
MD5 729fb25d0c48121f2a98cae6ae19c48a
BLAKE2b-256 89e744250c55f8019bb5d4ab3a949c6776d7dd2ef9831f41548015863682fa79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8b76dc9a14dc36863828d982354c025a833ee89a763c22bb83ef6ff51da4656
MD5 54368c244d182bf8abb033a8f82b1129
BLAKE2b-256 ec50efa4b97d14d32e5bd088588fd281dc689910950db3b135d24e143c11e119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b7a1b43b778ee8f61dfac34d47b795ee1cf1d8dc26f66c178f5900fca8dd331
MD5 90e497f329dd030de9d0e5b4ded63b2c
BLAKE2b-256 f179823a1ae94885c3242cc99ba072e26ef5c5a64273926c3c6c63b96b2641e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5ac232dda9aae44caef639243695702f2e15d78c2b0e05ed6d3368386b61bd9
MD5 37695aa0e961e9b79b0c6758e4add593
BLAKE2b-256 814a666f0d9773805e1210f10f7ba77897d29af3f65176390281b50def41d3a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.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.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f0e687e6f1d40f3ed5f250f7242cf0c1058aa396338c341fa595700b57410f43
MD5 6dc5e914501d0df4b3dcdb931c427843
BLAKE2b-256 0247770bfcbb93ee81d2e4e38f1bc5fb89ef401446e9adda2fdbcd9cad9691b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a168f76105c21dc4aab9f2dc9c4b1662f86910cb7799b40dd5aac8840888f017
MD5 2c4c48e6f5d1c97c8229796a055e1237
BLAKE2b-256 ed464192342debf3bbb6fda82e4c67f68d881f9819116cd15721a39f5a3850f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b1a4ed3ece6d763415e596ac312e1f6870171e557b6d26daf35a0206cb76f2a
MD5 b741d4a3fa63730f6f22eee10599d09c
BLAKE2b-256 f39802d5c8ccbbdd33ae329372cc348734e853fa9afc8a3e1dbd8e2b317fdf7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eb26967fd66e756ba3c90f61d3803de845255b6a0b7a08a5b4e044d9b02029d
MD5 bd26015e0e31be50c0a8a8646eb1102f
BLAKE2b-256 6f61061acfc31186696d46e4a14ccc9022dd1a4bc6b99e8d2302aee822348dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ecdba339249873d7f70af5da075aaac0acc15dd93db4167c4a0514a5219e2c2
MD5 19e9e1cfdc13a14116faa1568427ceec
BLAKE2b-256 606b2ea8408e489e723f45e3bc81772065253dded7e45c6b033fba11f1ac5223

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.6 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.5.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4f1c1c1283da6c8206e06adc459a96abf9e3515b3c8e08e4ff722a80c5692d6f
MD5 a27ffbc029594cb5395b4a16b0a49cef
BLAKE2b-256 efd17302f5ccb0890b87144a30e8cd9a412690e04f9ea56f8f1fe7f64d64a869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3b06f48231c537fd05db60d050baaecbdf4322a8cc58cb540787ce8817d3817
MD5 de843cb625d1f72171c5f8d856e5b601
BLAKE2b-256 758f6246b9216e4455f1c35126099fe8858c20b8cf9a0303f31e9040a3d71a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 728d84a2d47d53a54a05934790ff089d8ff09982ba5ada5ab3fd89c70fc1db63
MD5 d5c2a828231aeb368c2f3a89c179cbba
BLAKE2b-256 efd34912e0d30f406f769e7dfb346df4d60c6d96a6e84b760d074bded51de4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcd10594641306cd697540fa68ea24aa5400556f113aa229834e803f7d8fb9cf
MD5 9a968599b9b85a9ad9341318fa1aa86d
BLAKE2b-256 16d3307d81e68c6a6beb4f2d3795ee927a651331ac53e18ac814e50351e03507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 655a2a19065a129468b47a3d56e96e8404e952f6219d42f3248e6075a0e43eaa
MD5 d1f606f19683dfad7bc3664f0df50932
BLAKE2b-256 090b9ab14c679172133e47db501be3675e49c30a6dfb1b97fce7ace192667976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.5 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.5.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f4f8c5e070bef0e4cd897d0c2f54e78bd386e83afd1147221ca22ca1c3a1eea1
MD5 75a78092bae551b0158d978d1dff8d17
BLAKE2b-256 87c7aee17359106e6c2449b2bf776cf1e1f22ee321781abf39f95eec228a1278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2bf6a44e5a87fa4a8be57cd31494609af2bc9d249a2f477d00ea8f279b59751
MD5 ae564ed057280ea8667d31ec2bc19a86
BLAKE2b-256 8985f4015bc7332b4f05be6f3785d1ce8abe1a9b90d6cf0ff2ba2d31893d6b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fcdb5005230af1dd269b19b41af25c657b88932b2b371be63321e079c9f04c8
MD5 77b33f945d0029483839924573728c66
BLAKE2b-256 982c49fa57a54caf4851a5434ddf278fdb5215812effc281b91b85143be6258f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ddc1f35289b848a544bc2429497a5b11b0c60c01220efea38dcbe9e2779894c6
MD5 60f2b6cabe242b1f94f3719cf271eb9a
BLAKE2b-256 714707bf401bec584df524ff91eacdc974eb6bff1baf6ab6d19acd29eef0a2fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 13.1 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.5.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 97aa6b954964f5bc5d5bb6c12e3de81c053e66c7f5e214d5e4fde8ef467cb2de
MD5 0ac4c7f1ff66888262930d49e2042cd8
BLAKE2b-256 2c4f7ed5ef72b8c05e6202e1272c052cf303582b36117890196b7e4044a8992b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d296e80cb69861eaa4fd3f9f7f4be6ac812f6e711e47ee4b61f4c41df0ab2d0
MD5 84c93a8479855354808285aad9df0899
BLAKE2b-256 b4721eee1a1c244c05e8f125f29f0110b51af0ab26f233ca6b9307a3c12612a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52056e71e8e1c35911494493cc3395e0d1fa4a9c7113ffe210424694dc9b7a09
MD5 1131e4c8d3853f2c5b1e07945c66406a
BLAKE2b-256 52ae4cb36074bdfc1534b3627f83af6423b6020aee47d064b492dfc16d2644d2

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