Plwordnet
Unofficial Python library for using the Polish Wordnet (plWordNet / Słowosieć)
Install / Use
/learn @maxadamski/PlwordnetREADME
Polish Wordnet Python library
Simple, easy-to-use and reasonably fast library for using the Słowosieć (also known as PlWordNet) - a lexico-semantic database of the Polish language. PlWordNet can also be browsed here.
I created this library, because since version 2.9, PlWordNet cannot be easily loaded into Python (for example with nltk), as it is only provided in a custom plwnxml format.
Usage
Load wordnet from an XML file (this will take about 20 seconds), and print basic statistics.
import plwordnet
wn = plwordnet.load('plwordnet_4_2.xml')
print(wn)
Expected output:
PlWordnet
lexical units: 513410
synsets: 353586
relation types: 306
synset relations: 1477849
lexical relations: 393137
Find lexical units with name leśny and print all relations, where where that unit is in the subject/parent position.
for lu in wn.find('leśny'):
for s, p, o in wn.lexical_relations_where(subject=lu):
print(p.format(s, o))
Expected output:
leśny.2 tworzy kolokację z polana.1
leśny.2 jest synonimem mpar. do las.1
leśny.3 przypomina las.1
leśny.4 jest derywatem od las.1
leśny.5 jest derywatem od las.1
leśny.6 przypomina las.1
Print all relation types and their ids:
for id, rel in wn.relation_types.items():
print(id, rel.name)
Expected output:
10 hiponimia
11 hiperonimia
12 antonimia
13 konwersja
...
See more usage examples in the examples notebook.
Installation
Note: plwordnet requires Python 3.7 or newer.
pip install plwordnet
Version support
This library should be able to read future versions of PlWordNet without modification, even if more relation types are added. Still, if you use this library with a version of PlWordNet that is not listed below, please consider contributing information if it is supported.
- [x] PlWordNet 4.2
- [x] PlWordNet 4.0
- [x] PlWordNet 3.2
- [x] PlWordNet 3.0
- [x] PlWordNet 2.3
- [x] PlWordNet 2.2
- [x] PlWordNet 2.1
Documentation
See plwordnet/wordnet.py for RelationType, Synset and LexicalUnit class definitions.
Package functions
load(source): Reads PlWordNet, wheresrcis a path to the wordnet XML file, or a path to the pickled wordnet object. Passed paths can point to files compressed with gzip or lzma.
Wordnet instance properties
lexical_relations: List of (subject, predicate, object) triplessynset_relations: List of (subject, predicate, object) triplesrelation_types: Mapping from relation type id to objectrelation_by_name: Mapping from human readable relation name to relation idslexical_units: Mapping from lexical unit id to unit objectlexical_units_by_name: Mapping from lexical unit name to a set of matching lexical unit idssynsets: Mapping from synset id to object(lexical|synset)_relations_(s|o|p): Mapping from id of subject/object/predicate to a set of matching lexical unit/synset relation ids
Wordnet methods
find(value): Returns a list ofLexicalUnit, where the name is equal tovalue. If given a specific variant (likeleśny.1), this method returns either theLexicalUnit, orNone.lexical_relations_where(subject, predicate, object): Returns lexical relation triples, with matching subject or/and predicate or/and object. Subject, predicate and object arguments can be integer ids orLexicalUnitandRelationTypeobjects.synset_relations_where(subject, predicate, object): Returns synset relation triples, with matching subject or/and predicate or/and object. Subject, predicate and object arguments can be integer ids orSynsetandRelationTypeobjects.hypernyms(synset, interlingual=False): Returns hypernyms of a synset (synsetcan be an integer id or aSynsetobject)hyponyms(synset, interlingual=False): Returns hyponyms of a synset (synsetcan be an integer id or aSynsetobject)hypernym_paths(synset, full_search=False, interlingual=False): Returns a hypernym path to a synset with no hypernyms (or all possible paths iffull_search=True)dump(dst): Pickles theWordnetobject to opened filedstor to a new file with pathdst.
RelationType methods
format(x, y, short=False): Substitutesxandyinto theRelationTypedisplay formatdisplay. Ifshort,xandyare separated by the short relation nameshortcut.
Related Skills
node-connect
350.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
claude-opus-4-5-migration
109.9kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
frontend-design
109.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
model-usage
350.1kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
