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.3.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.3-cp311-cp311-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

spacy-3.5.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: spacy-3.5.3.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.3.tar.gz
Algorithm Hash digest
SHA256 35971d6721576538d6c423c66a09ce00bf66e10e40726a57b7a81993180c248c
MD5 441db143f935dc3e6bebcbcbf9666700
BLAKE2b-256 4ca6ea3bb98bb7fcb6177c3b44e778d17e3aaebfa283feb6763578abaa8664de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3549364d4b2bf01736667e3fba3ce599e73ba281f003225de1033a648d5563f9
MD5 860a263986f4714c4dd6b07f45fa742b
BLAKE2b-256 d0515b8c366d90d1910e088e1cd5fbecea566d860beb056ec19d7a93f4604367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a59cea275f5724494c77aec66b1758e42268504c34d055a6db2e95f652bd87a5
MD5 7b3916a1fb038b138e2f98cf477b06bc
BLAKE2b-256 e0ebb3cdba6e38edc8acce5b58d1dd0e37f3954f36e036836735bce99f5afc8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c555e20187d7db210e3823eedff0f6fb029d23bc8e138342791f305510bf0c66
MD5 339b49b43bb26ad2b28d32550d06c8c0
BLAKE2b-256 13fcc7dc724bcfb63891929bd1079e525d10950d0d2131e886dec18b24e255b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 902f511ea8f8d9336d62b252f61d9068d93824ae70c5cb048954a3017cc38f1b
MD5 0dcf29e99915fa9482d1b725958b8ff0
BLAKE2b-256 c81cebfb91adee72b5c98f707ceaeeec9bc8d54346f5a7788dcae77c695bb53a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59a473b8fbd79a22fdc98c017b14135b5c60c1813de01490a1eaa232a95a538b
MD5 63f20918d3ab9e3464b4318130d8a44f
BLAKE2b-256 ad7fa7fe870035451cfa015703a75c90d8a90987ff0b5c6ad36ba7accb8380a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2474f1a78557c5697529c48c5c9190f590ead21fbddf47cde757b399b807746c
MD5 c6e03acaada6afb415c0d09e4dfd4ec2
BLAKE2b-256 5fce7cf5e92da74600e256109cba3c6694512e044e8cd35623330b678a932df1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ff8e6408d7672cdfd1b2035d2b5ca36b6c107c9b46debd9e5ba634700f761f5
MD5 299a315d1c87938a90d6d9718f9bc3e9
BLAKE2b-256 0a99e5d68754b79d24e1ab0f8aa5271e16dfa019cae75c1ae6f8c75b10dff42c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 860702748e654489e37464a5fca1444ee1b2534572084d416534a88646639c48
MD5 be73629edc9a8209319d16646598c278
BLAKE2b-256 e95e58270160d86c325d1932e83f3a46e7d112f97b5356669ef45bac311a8c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b628bdeb6484eb4bfb1141d43013420d0356fc111033430292aea29b34b79e3
MD5 20b79b0b2d6d822d3e1fecdb2fb01114
BLAKE2b-256 52960d71f461848412a713d5ab25a0d5bf4e6160ca10fb52670f5c7dad3c5af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4eaa68b677b1292381bade13d5b20342e31791d3ffdaa261eca3c3c0687bf53f
MD5 a8d6835a5f36ca6c90e5e6e0cde9cfb7
BLAKE2b-256 a69473c7b82b42aecd6097f154304a44b3d1a68ec819eb29d40898d70f8423f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c28b1bfda0d5b0abba961c8679e21767493d48572c94d54acb4018d27f89f4e1
MD5 5afdd58e3fed0a6579ed56a361ec5093
BLAKE2b-256 63d2f356de9a8f7e2bec5521253ff0bdb739db39cee8304bc793125dad5f08da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f5c4ca98f12e14f13dba08139c62671a623e6ff2d0d96783f8d09b33a8cd973
MD5 625b34f33dc3a40ee7a5e5d4e6830434
BLAKE2b-256 fb79bf46c571cee35037f4c37c79658e548d89cb804febcf39f6bb814e06a575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a06285f19aaf1b4ea8d0c60285cd8712f9577a4cc64984e0841fa213a465e364
MD5 fd8c02856d3491d769d9b4e67728d1b4
BLAKE2b-256 9700747b4dadfe56f8cffa24b9348a805be295d3dd969a8233acd294af0274d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87a5d0d87bc00b0b2c620bea3e8b226cd6913130a723dcaaa07b03e5d933ff59
MD5 39fab1f20a31e53867888ad8522aa39a
BLAKE2b-256 5e8c8ded4533e98f2e21cb04d6fbbe788bf9848dfba4d956e7c9870ad2e5d51f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d584ff7e6f0c044a5b17ceb6276ea65f054b157f31ce924318bf9b2c75fb8729
MD5 0e1832eb4f2eae70ca8e72098d79c89d
BLAKE2b-256 5c48eca527569df63cbf90695034fd86844cdb6a94d7398d8f5200afc8a984ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f58297c982823b19476a8efab302d269202af997c0b6500590ee55cd363428e8
MD5 aa5a45bbb41fa20f1aaaa02ac441a1c2
BLAKE2b-256 81740c4546354851cae3ea1357a52a4a05b2387a5ae3c0523e991325071a3461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77032fb9f1434ead183e5755e8b4edb58383577c9a14cdb784106aa9771126fc
MD5 f4083232281804256c90dffd9fe034ed
BLAKE2b-256 05eba67f2bf174bb23844d007df56c0b393ff7e16f7d4909e83a394f79536aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d82d1aeae9e8ee04ccf863a42690493b0b0b912be81783bf737c5963e6e5a8c4
MD5 21b8ff006a6924869c93b07a927743a8
BLAKE2b-256 9c5da838d749726712d7b04a35e7f11eb1e6ae0c9a1f6cf41e99f520bdb26a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87caac0b18404a3cd43da1823914f7f54b60d640e36cc7240a8d05dff548be9e
MD5 8d9e282e87f804d2d291f09aa5d659cd
BLAKE2b-256 5ce5d42361d6328ee7010c5a11ac380ab71ea387164478f22c183b2ba29c3340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acc3ec415ba804515ff1449b13fefc07b393ea6a1ac3461b66b32f62b852467b
MD5 e60d6f131b5cdd4a29e7b8dc2594fe7f
BLAKE2b-256 ad388a2307a1ba99c251c78d3f27574571ce4a34ef7a0778495c90f748379343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.3-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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 13e54e45b447b6f52c7a050c69898fb7cab5dfc769dc073cc325b4ee8b278893
MD5 8a9eb33791fcb399775ff566c4c8ae2f
BLAKE2b-256 3bba71bfe1dc76cefbf56833c2ee725fc56acb268f012170eb30082b7807cacd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa543a185aabf8b33b7e280849fa4f1ae552a34e95a4b6a910d322527def7064
MD5 19103e7d3042a59009eb7f9ca39bf1de
BLAKE2b-256 db24799d2a80c0936775c001e223e4340e79a5795820cafafbd764a9755132ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f01ee5285a40d09c45c71bf756eb360de6ca4bb7d00aab4ca20e5379bb69bce
MD5 9a1f28ad631ad2bfc72f264fa11f3f8e
BLAKE2b-256 8932cceff71eee6f56c01292c0b39b1a0a64aa6b8fef343d946364f246cf2ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ef98c2f5e36682a88b55ed841548e27bf8a400746c6bba406933f299ea873fc
MD5 b89b3b6775c9bcbd10a89181377ebb5d
BLAKE2b-256 7d2bb7455e78bf4a5754f8eb7c42f65a2d263955cb9da4fcaa75d0b8c0359980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.5.3-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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 98dc4240dd2e27ce33a63f796ed3baf1c1b474e85ade5083b6cb604021423bf1
MD5 8bec642821dca8f34b55ae5a9171a8cc
BLAKE2b-256 d3ec4911b58c65c5cb1c275deedbf0ebccdff417b9bded7741fcbf5944fd1603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9248ed4f4daa1e969dda69fe725b2085edbda10c562642d37212f2703971b4ca
MD5 0214f3d86fe32bbca6c12b99cd769290
BLAKE2b-256 a12339346123907c196fbf402e4a64b426cc32b0d6523b3208ee34b9c4385bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.5.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c83c11310f9dd3872659e7907ee44b128b850775f9765557f890d817362e1df
MD5 0958235eee2425a4cbef0e29fcc15cb0
BLAKE2b-256 5e1cde91feda7ed83236ee7aac9044bc6b8b1f60dfcac316f2e876e2832e5bb7

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