gitextract_ym42fg_3/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── data-issue.md │ │ └── feature_request.md │ └── workflows/ │ ├── checks.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bench/ │ ├── README.md │ ├── conftest.py │ └── test_bench.py ├── docs/ │ ├── .readthedocs.yaml │ ├── Makefile │ ├── _static/ │ │ ├── css/ │ │ │ └── svg.css │ │ └── demo.ipynb │ ├── api/ │ │ ├── wn.compat.rst │ │ ├── wn.compat.sensekey.rst │ │ ├── wn.constants.rst │ │ ├── wn.ic.rst │ │ ├── wn.ili.rst │ │ ├── wn.lmf.rst │ │ ├── wn.morphy.rst │ │ ├── wn.project.rst │ │ ├── wn.rst │ │ ├── wn.similarity.rst │ │ ├── wn.taxonomy.rst │ │ ├── wn.util.rst │ │ └── wn.validate.rst │ ├── cli.rst │ ├── conf.py │ ├── docutils.conf │ ├── faq.rst │ ├── guides/ │ │ ├── basic.rst │ │ ├── interlingual.rst │ │ ├── lemmatization.rst │ │ ├── lexicons.rst │ │ ├── nltk-migration.rst │ │ └── wordnet.rst │ ├── index.rst │ ├── make.bat │ ├── requirements.txt │ └── setup.rst ├── pyproject.toml ├── tests/ │ ├── _config_test.py │ ├── _util_test.py │ ├── compat_sensekey_test.py │ ├── conftest.py │ ├── data/ │ │ ├── E101-0.xml │ │ ├── E101-1.xml │ │ ├── E101-2.xml │ │ ├── E101-3.xml │ │ ├── README.md │ │ ├── W305-0.xml │ │ ├── W306-0.xml │ │ ├── W307-0.xml │ │ ├── mini-ili-with-status.tsv │ │ ├── mini-ili.tsv │ │ ├── mini-lmf-1.0.xml │ │ ├── mini-lmf-1.1.xml │ │ ├── mini-lmf-1.3.xml │ │ ├── mini-lmf-1.4.xml │ │ ├── sense-key-variations.xml │ │ ├── sense-key-variations2.xml │ │ ├── sense-member-order.xml │ │ └── test-package/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── citation.bib │ │ └── test-wn.xml │ ├── db_test.py │ ├── export_test.py │ ├── ic_test.py │ ├── ili_test.py │ ├── lmf_test.py │ ├── morphy_test.py │ ├── primary_query_test.py │ ├── project_test.py │ ├── relations_test.py │ ├── secondary_query_test.py │ ├── similarity_test.py │ ├── taxonomy_test.py │ ├── util_test.py │ ├── validate_test.py │ └── wordnet_test.py └── wn/ ├── __init__.py ├── __main__.py ├── _add.py ├── _config.py ├── _core.py ├── _db.py ├── _download.py ├── _exceptions.py ├── _export.py ├── _lexicon.py ├── _metadata.py ├── _module_functions.py ├── _queries.py ├── _types.py ├── _util.py ├── _wordnet.py ├── compat/ │ ├── __init__.py │ └── sensekey.py ├── constants.py ├── ic.py ├── ili.py ├── index.toml ├── lmf.py ├── metrics.py ├── morphy.py ├── project.py ├── py.typed ├── schema.sql ├── similarity.py ├── taxonomy.py ├── util.py └── validate.py