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 60+ 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.4.0 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 →

💬 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 60+ 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.4.1.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.4.1-cp310-cp310-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.10Windows x86-64

spacy-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy-3.4.1-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy-3.4.1-cp310-cp310-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy-3.4.1-cp39-cp39-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.9Windows x86-64

spacy-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy-3.4.1-cp39-cp39-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy-3.4.1-cp38-cp38-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.8Windows x86-64

spacy-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy-3.4.1-cp38-cp38-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy-3.4.1-cp38-cp38-macosx_10_9_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy-3.4.1-cp37-cp37m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

spacy-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy-3.4.1-cp37-cp37m-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy-3.4.1-cp36-cp36m-win_amd64.whl (12.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

spacy-3.4.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy-3.4.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

spacy-3.4.1-cp36-cp36m-macosx_10_9_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for spacy-3.4.1.tar.gz
Algorithm Hash digest
SHA256 59c5cf5d348a6c0e64a59ac5cfe6cd85d08e866337870c95d1ec6161d531e463
MD5 31ae10b7db524183a5aa4c479f9bcd94
BLAKE2b-256 3b497c403af0a18772c78f1d5b205b8c3555f3ed80a7752409b6a7d19ada6deb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 46ec87090ad138ba35e177c29657ad52aa600b25bdfe35d12ced113db1cca828
MD5 0572e611369d5784bec38738a8f41328
BLAKE2b-256 1f657108f32b6281394fba518fc946d4316632c3cf2891683f4b1e05696a06bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec826d9c482c81ed37fa9fd95da9601ccdf8962bfef985e5523b228d6be24ff9
MD5 f0c57fedfcca44950dd1be134cda24e3
BLAKE2b-256 a51898b82532c3a79a49a19f8ad9677a16a7d8640159c8b2def6ac465437528c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 361b057df89956b874da41fba0febe4491131a5954e293baffc4e54db95f985a
MD5 e415e525a22d783ead81e67b0cf3cbee
BLAKE2b-256 f9a99ccce32ead4bcc9426f6c0d2a728fc26139e32902691411e738865c821b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e982e3f8d915c6597a0eba7f44f7e7520960f9edf6a8dcf447759fbfc39a77f9
MD5 b8615359169815d5d62b3879eb41f27a
BLAKE2b-256 47f2d149b32017887e7a6ae283f4a03158f2f3179acc6fe062676584b0f0de02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32e5d9512ae11716f032f5030f99e4b140e9e028ece5811db496b86d50c0f177
MD5 00f5a386973fe2ae64c8a6ebed674c03
BLAKE2b-256 13b10695a9220982aaabc9c6b2a1c32613778f94af7bfcf33eb3f37055182a6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 23aaa7cac0233fd0e1057eb71b4ecf6a8e453d693a431ac416e099322edd4c1d
MD5 89c68ffc14f470591f98369004a05044
BLAKE2b-256 231c9f44f3258abd158cd45cf856242923629430d27651ddea9b8b53cdcc02d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3da242a5805b3f9fd5a2ed6f7d84177d6b4f189597e00fb338c782b8520d6bc
MD5 7710dc7d2de5c9fb9a34fc142f1627af
BLAKE2b-256 8d687e5e0b90092a87cfee9c7051505960956b35934ba7cfc406ee061656da1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60a3facb99c53ced0cb218865237764349f0cf4ecc559cc6bebe120f1d685c95
MD5 0d0ac6beacbfdcfbbe037a5152ffaf99
BLAKE2b-256 24847c9a088f27ec66ea19e121c66da0d7a66553787a6e6aff61da292c1474d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d78a71e9bffafe19c6d0f1de3e32bdb48f8e2ab4b5c6dc88dc0c83197f2ff5f0
MD5 b11eeda43a6c39860fdf022e62be20bc
BLAKE2b-256 a96985b8adf8d4196c7cf0510930e04c33b1935fb16d71ffcc8e7601c334a364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 509edc4cc55c463abf71c2f630b0dda4dedf06ea6ed8614334c081d87e54f96b
MD5 65c1f5c5d67219f7d6a69261490b5a74
BLAKE2b-256 06378f5e11c5d1ddd999f282d9f0325a36da423d744a8eb404c06a24a39f58db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f652cf821ab118a2d672d1b68951e740ea0cedcd6ee5d3d9fcdeb27ae188fbd5
MD5 a44a1e6af7a85147c2a9203ff652f9f1
BLAKE2b-256 377af491d487b8699df61a70c204362a9e4fe657a3593bdec0a0b7f38d98c339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9966bcad9063309ce6a41a1bcc488ad9fc786ad6c52cbcd98621ddfa41f283e3
MD5 06b9377d62ddc060f71d4e97f91e5cb1
BLAKE2b-256 533f36a3f6fa20f2e9ef79b16a8ba65dc3357a76c74aa3b6116beb709c3d5a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5c0183de17b3d8e59cff0bed4de7bdf6d341ae9263757212207a62bf9844177
MD5 f85516666b1fa268f40a394b22e17282
BLAKE2b-256 32665197abf61465b37febdb4f6e2e91e54fa311d99408fa55240a9649a12e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 420fdfe8882f4ca5aa7d730135af92f17baa7f6226e45097f48acf312d0b49bf
MD5 ed3cff189af51bebba9cb7444ab8fc5a
BLAKE2b-256 dde74a1fe94b8c19c9bb96b164cb108843044e38f8c22fbfaf0d2a4da76186c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 256dc4f14922275f8576d255b3d36598a119f73241b12d53d3bc7e16ca50a717
MD5 fb7dfff4498550b1934356c6f0b47926
BLAKE2b-256 80a438609944897a0634e12cda61122f0105cfe9099b58fd63208339904c5b70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0a93797b9fea6ec1ecf3b95d86b8228d364470afac7278b23c13fd4305ad4ec2
MD5 90a240a0f502856a02e6e82e9198b778
BLAKE2b-256 b9ddab33d943457562f95e4d587c832ae4479596eec53dfb5b76e906bf1d29a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9fe2b226b4c09fccf3d4f4e2f584020cadeb271972c951878208525df73d1bf
MD5 7d92ea631fb8bb3516b2c38b333305c5
BLAKE2b-256 8fe9549827a28e8bca55ffed4bcc730ced8a66bbd905d18c1ce80d2a5c56abf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b2d9d1a6795c49829747d7e011b0882be3e82c650552a93493f9b9fc3387892
MD5 14d77d91bdc13ce5d8e59da7a7806306
BLAKE2b-256 6687497fbf3811b8dec7798edc3667d6f2ee1b1a1dc75782fd45c651b5ee4829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46112e1a47c0656804a89f1dbdbc3e554694a682f24659d1651823f52e29a81b
MD5 b72d20d80af3279bb7f91eb254d1504d
BLAKE2b-256 9d93a2df9a9a4ca2df8605ba273bbeac75fc45933cd3902604c444f9d8c6caf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: spacy-3.4.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for spacy-3.4.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 eaee9ed8b130f2b324c42ce6cef44a5e5183013a67b26260053818331be6d212
MD5 058faaeb518ea3fd3057f3517714e075
BLAKE2b-256 67c97af4bf69046497fafc2987f975023f67a254fa6566cc7d39e722e2a7d59f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d996f50910d243d356ea540ff609fee83c5ba036d4090fa87afeb51c65a280b
MD5 640c144603de6352a81c415b2cbec523
BLAKE2b-256 feb90c119ca0d0e7fba7a2998a5b4a883890a3c4c4b28bf41d21904fb647e658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy-3.4.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55688aff12540475ae2010b4f0220ec0728c93d4d1a8f73d0b35fb363558c7ec
MD5 a1014edc2e4d0d7f31d4fbadc5a00a99
BLAKE2b-256 4b93a0bf262b13120129cfd8bb791658181fd10a207acda5f3b93436aa00a0ae

See more details on using hashes here.

File details

Details for the file spacy-3.4.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy-3.4.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4e38ee787ccd59849e76f7f9d21fc7dc25e855e194f2cc0b166c7e7bf34be40
MD5 01fa6120b39f2af22d3eb8afb066c5d1
BLAKE2b-256 6ae1dcd6dd29cc2b9477cfb470d9710e972a7591faa9ad84f955c3040e5387ef

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