spacy

Installation
SKILL.md

spaCy

spaCy is "Industrial Strength" NLP. Unlike NLTK (academic), spaCy focuses on providing the best single algorithm for a task. v3.8 supports Python 3.13.

When to Use

  • NER (Named Entity Recognition): Extracting person names, dates, orgs.
  • Parsing: Dependency parsing to understand sentence structure.
  • Speed: Cython-optimized pipelines.

Core Concepts

Pipeline

Tokenizer -> Tagger -> Parser -> NER.

Doc / Token / Span

The core data structures. Efficient memory usage.

Related skills
Installs
1
GitHub Stars
7
First Seen
Feb 10, 2026