{"library":"spacy-lookups-data","title":"spaCy Lookups Data","type":"library","description":"Additional lookup tables, lemmatization data, and other language resources for spaCy. Version 1.0.5 is the latest stable release. The package provides supplementary data that spaCy loads on demand; it is updated infrequently but follows spaCy's major releases.","language":"python","status":"maintenance","last_verified":"Fri May 01","install":{"commands":["pip install spacy-lookups-data"],"cli":null},"imports":["from spacy.lookups import Lookups"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":"https://spacy.io","github":null,"docs":null,"changelog":null,"pypi":"https://pypi.org/project/spacy-lookups-data/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import spacy\nfrom spacy.lookups import Lookups\n\n# Load a small model that uses lookups\nnlp = spacy.load('en_core_web_sm')\n\n# Access lookups table (if available for the model)\n# The package provides data automatically; no explicit import needed.\n# Check if a table is present:\nlookups = nlp.vocab.lookups\nprint(lookups.get_table('lemma_rules')[:2])  # example, may be empty\n","lang":"python","description":"Verify that lookups data is available in a spaCy model. The package itself is not imported directly; its data is used transparently by spaCy.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}