Metadata-Version: 2.1
Name: wn-fast
Version: 0.9.3.1
Summary: Wordnet interface library (forked version with perfomance improvements)
Keywords: wordnet,interlingual,linguistics,language,library
Author-email: Michael Wayne Goodman <goodman.m.w@gmail.com>, Jannes Müller <jannes@mlrjs.de>
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Linguistic
Requires-Dist: requests
Requires-Dist: tomli
Requires-Dist: importlib_resources; python_version < '3.7'
Requires-Dist: typing-extensions; python_version < '3.8'
Requires-Dist: sphinx ; extra == "doc"
Requires-Dist: furo ; extra == "doc"
Requires-Dist: sphinx-copybutton ; extra == "doc"
Requires-Dist: wn-editor ; extra == "editor"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: mypy ; extra == "test"
Requires-Dist: flake8 ; extra == "test"
Requires-Dist: nox ; extra == "test"
Requires-Dist: types-requests ; extra == "test"
Requires-Dist: starlette ; extra == "web"
Project-URL: changelog, https://github.com/Hypercookie/wn/blob/main/CHANGELOG.md
Project-URL: documentation, https://wn.readthedocs.io
Project-URL: homepage, https://github.com/Hypercookie/wn
Provides-Extra: doc
Provides-Extra: editor
Provides-Extra: test
Provides-Extra: web



<p align="center">
  <img src="https://raw.githubusercontent.com/goodmami/wn/main/docs/_static/wn-logo.svg" alt="Wn logo">
  <br>
  <strong>a Python library for wordnets</strong>
  <br>
  <a href="https://pypi.org/project/wn/"><img src="https://img.shields.io/pypi/v/wn.svg?style=flat-square" alt="PyPI link"></a>
  <img src="https://img.shields.io/pypi/pyversions/wn.svg?style=flat-square" alt="Python Support">
  <a href="https://github.com/goodmami/wn/actions?query=workflow%3A%22tests%22"><img src="https://github.com/goodmami/wn/workflows/tests/badge.svg" alt="tests"></a>
  <a href="https://wn.readthedocs.io/en/latest/?badge=latest"><img src="https://readthedocs.org/projects/wn/badge/?version=latest&style=flat-square" alt="Documentation Status"></a>
  <br>
  <a href="https://github.com/goodmami/wn#available-wordnets">Available Wordnets</a>
  | <a href="https://wn.readthedocs.io/">Documentation</a>
  | <a href="https://wn.readthedocs.io/en/latest/faq.html">FAQ</a>
  | <a href="https://wn.readthedocs.io/en/latest/guides/nltk-migration.html">Migrating from NLTK</a>
  | <a href="https://github.com/goodmami/wn/projects">Roadmap</a>
</p>

---

Wn is a Python library for exploring information in wordnets. Install
it from PyPI and download some data:

```console
$ pip install wn
$ python -m wn download oewn:2021  # the Open English WordNet 2021
```

Then start exploring:

```python
>>> import wn
>>> en = wn.Wordnet('oewn:2021')  # Create Wordnet object to query
>>> ss = en.synsets('win')[0]     # Get the first synset for 'win'
>>> ss.definition()               # Get the synset's definition
'be the winner in a contest or competition; be victorious'
```


## Features

- Multilingual by design; first-class support for wordnets in any language
- Interlingual queries via the [Collaborative Interlingual Index](https://github.com/globalwordnet/cili/)
- Six [similarity metrics](https://wn.readthedocs.io/en/latest/api/wn.similarity.html)
- Functions for [exploring taxonomies](https://wn.readthedocs.io/en/latest/api/wn.taxonomy.html)
- Support for [lemmatization] ([Morphy] for English is built-in) and unicode [normalization]
- Full support of the [WN-LMF 1.1](https://globalwordnet.github.io/schemas/) format, including word pronunciations and lexicon extensions
- SQL-based backend offers very fast startup and improved performance on many kinds of queries

[lemmatization]: https://wn.readthedocs.io/en/latest/guides/lemmatization.html#lemmatization
[normalization]: https://wn.readthedocs.io/en/latest/guides/lemmatization.html#normalization
[Morphy]: https://wn.readthedocs.io/en/latest/api/wn.morphy.html


## Available Wordnets

Any WN-LMF-formatted wordnet can be added to Wn's database from a local
file or remote URL, but Wn also maintains an index (see
[wn/index.toml](https://github.com/goodmami/wn/blob/main/wn/index.toml))
of available projects, similar to a package manager for software, to aid
in the discovery and downloading of new wordnets. The projects in this
index are listed below.

### English Wordnets

There are several English wordnets available. In general it is
recommended to use the latest [Open English Wordnet], but if you have
stricter compatibility needs for, e.g., experiment replicability, you
may try the [OMW English Wordnet based on WordNet 3.0] (compatible with
the Princeton WordNet 3.0 and with the [NLTK]), or [OpenWordnet-EN] (for
use with the Portuguese wordnet [OpenWordnet-PT]).

| Name                                       | Specifier              | # Synsets | Notes |
| ------------------------------------------ | ---------------------- | --------: | ----- |
| [Open English WordNet] | `oewn:2021`<br/> `ewn:2020`<br/> `ewn:2019` | 120039<br/>120053<br/>117791 | Recommended<br/>&nbsp;<br/>&nbsp; |
| [OMW English Wordnet based on WordNet 3.0] | `omw-en:1.4` | 117659 | Included with `omw:1.4` |
| [OMW English Wordnet based on WordNet 3.1] | `omw-en31:1.4` | 117791 |  |
| [OpenWordnet-EN] | `own-en:1.0.0` | 117659 | Included with `own:1.0.0` |

[Open English WordNet]: https://en-word.net
[Open Multilingual Wordnet]: https://github.com/omwn
[OMW English Wordnet based on WordNet 3.0]: https://github.com/omwn/omw-data
[OMW English Wordnet based on WordNet 3.1]: https://github.com/omwn/omw-data
[OpenWordnet-EN]: https://github.com/own-pt/openWordnet-PT
[OpenWordnet-PT]: https://github.com/own-pt/openWordnet-PT
[NLTK]: https://www.nltk.org/

### Other Wordnets and Collections

These are standalone non-English wordnets and collections. The wordnets
of each collection are listed further down.

| Name                                       | Specifier                     | # Synsets       | Language         |
| ------------------------------------------ | ----------------------------- | --------------: | ---------------- |
| [Open Multilingual Wordnet]                | `omw:1.4`                     | n/a             | multiple [[mul]] |
| [Open German WordNet]                      | `odenet:1.4`<br/>`odenet:1.3` | 36268<br/>36159 | German [de]      |
| [Open Wordnets for Portuguese and English] | `own:1.0.0`                   | n/a             | multiple [[mul]] |
| [KurdNet]                                  | `kurdnet:1.0`                 |            2144 | Kurdish [ckb]    |

[Open English WordNet]: https://github.com/globalwordnet/english-wordnet
[Open Multilingual Wordnet]: https://github.com/omwn
[OMW English Wordnet based on WordNet 3.0]: https://github.com/omwn
[OMW English Wordnet based on WordNet 3.1]: https://github.com/omwn
[Open German WordNet]: https://github.com/hdaSprachtechnologie/odenet
[Open Wordnets for Portuguese and English]: https://github.com/own-pt
[mul]: https://iso639-3.sil.org/code/mul
[KurdNet]: https://sinaahmadi.github.io/resources/kurdnet.html

### Open Multilingual Wordnet (OMW) Collection

The *Open Multilingual Wordnet* collection (`omw:1.4`) installs the
following lexicons (from
[here](https://github.com/omwn/omw-data/releases/tag/v1.4)) which can
also be downloaded and installed independently:

| Name                                     | Specifier      | # Synsets | Language                         |
| ---------------------------------------- | -------------- | --------: | -------------------------------- |
| Albanet                                  | `omw-sq:1.4`   |      4675 | Albanian [sq]                    |
| Arabic WordNet (AWN v2)                  | `omw-arb:1.4`  |      9916 | Arabic [arb]                     |
| BulTreeBank Wordnet (BTB-WN)             | `omw-bg:1.4`   |      4959 | Bulgarian [bg]                   |
| Chinese Open Wordnet                     | `omw-cmn:1.4`  |     42312 | Mandarin (Simplified) [cmn-Hans] |
| Croatian Wordnet                         | `omw-hr:1.4`   |     23120 | Croatian [hr]                    |
| DanNet                                   | `omw-da:1.4`   |      4476 | Danish [da]                      |
| FinnWordNet                              | `omw-fi:1.4`   |    116763 | Finnish [fi]                     |
| Greek Wordnet                            | `omw-el:1.4`   |     18049 | Greek [el]                       |
| Hebrew Wordnet                           | `omw-he:1.4`   |      5448 | Hebrew [he]                      |
| IceWordNet                               | `omw-is:1.4`   |      4951 | Icelandic [is]                   |
| Italian Wordnet                          | `omw-iwn:1.4`  |     15563 | Italian [it]                     |
| Japanese Wordnet                         | `omw-ja:1.4`   |     57184 | Japanese [ja]                    |
| Lithuanian  WordNet                      | `omw-lt:1.4`   |      9462 | Lithuanian [lt]                  |
| Multilingual Central Repository          | `omw-ca:1.4`   |     45826 | Catalan [ca]                     |
| Multilingual Central Repository          | `omw-eu:1.4`   |     29413 | Basque [eu]                      |
| Multilingual Central Repository          | `omw-gl:1.4`   |     19312 | Galician [gl]                    |
| Multilingual Central Repository          | `omw-es:1.4`   |     38512 | Spanish [es]                     |
| MultiWordNet                             | `omw-it:1.4`   |     35001 | Italian [it]                     |
| Norwegian Wordnet                        | `omw-nb:1.4`   |      4455 | Norwegian (Bokmål) [nb]          |
| Norwegian Wordnet                        | `omw-nn:1.4`   |      3671 | Norwegian (Nynorsk) [nn]         |
| OMW English Wordnet based on WordNet 3.0 | `omw-en:1.4`   |    117659 | English [en]                     |
| Open Dutch WordNet                       | `omw-nl:1.4`   |     30177 | Dutch [nl]                       |
| OpenWN-PT                                | `omw-pt:1.4`   |     43895 | Portuguese [pt]                  |
| plWordNet                                | `omw-pl:1.4`   |     33826 | Polish [pl]                      |
| Romanian Wordnet                         | `omw-ro:1.4`   |     56026 | Romanian [ro]                    |
| Slovak WordNet                           | `omw-sk:1.4`   |     18507 | Slovak [sk]                      |
| sloWNet                                  | `omw-sl:1.4`   |     42583 | Slovenian [sl]                   |
| Swedish (SALDO)                          | `omw-sv:1.4`   |      6796 | Swedish [sv]                     |
| Thai Wordnet                             | `omw-th:1.4`   |     73350 | Thai [th]                        |
| WOLF (Wordnet Libre du Français)         | `omw-fr:1.4`   |     59091 | French [fr]                      |
| Wordnet Bahasa                           | `omw-id:1.4`   |     38085 | Indonesian [id]                  |
| Wordnet Bahasa                           | `omw-zsm:1.4`  |     36911 | Malaysian [zsm]                  |

### Open Wordnet (OWN) Collection

The *Open Wordnets for Portuguese and English* collection (`own:1.0.0`)
installs the following lexicons (from
[here](https://github.com/own-pt/openWordnet-PT/releases/tag/v1.0.0))
which can also be downloaded and installed independently:

| Name           | Specifier      | # Synsets | Language        |
| -------------- | -------------- | --------: | --------------- |
| OpenWordnet-PT | `own-pt:1.0.0` |     52670 | Portuguese [pt] |
| OpenWordnet-EN | `own-en:1.0.0` |    117659 | English [en]    |

### Collaborative Interlingual Index

While not a wordnet, the [Collaborative Interlingual Index] (CILI)
represents the interlingual backbone of many wordnets. Wn, including
interlingual queries, will function without CILI loaded, but adding it
to the database makes available the full list of concepts, their status
(active, deprecated, etc.), and their definitions.

| Name                               | Specifier  | # Concepts |
| ---------------------------------- | ---------- | ---------: |
| [Collaborative Interlingual Index] | `cili:1.0` |     117659 |

[Collaborative Interlingual Index]: https://github.com/globalwordnet/cili/


## Changes to the Index

### `ewn` → `oewn`

The 2021 version of the *Open English WordNet* (`oewn:2021`) has
changed its lexicon ID from `ewn` to `oewn`, so the index is updated
accordingly. The previous versions are still available as `ewn:2019`
and `ewn:2020`.

### `pwn` → `omw-en`, `omw-en31`

The wordnet formerly called the *Princeton WordNet* (`pwn:3.0`,
`pwn:3.1`) is now called the *OMW English Wordnet based on WordNet
3.0* (`omw-en`) and the *OMW English Wordnet based on WordNet 3.1*
(`omw-en31`). This is more accurate, as it is a OMW-produced
derivative of the original WordNet data, and it also avoids license or
trademark issues.

### `*wn` → `omw-*` for OMW wordnets

All OMW wordnets have changed their ID scheme from `...wn` to `omw-..` and the version no longer
includes `+omw` (e.g., `bulwn:1.3+omw` is now `omw-bg:1.4`).

