Skip to main content

Several word association function based on datamuse API

Project description

# wordasso
small python package, several word association function based on datamuse API

## Installation

```
pip install wordasso
```

if it can not install spacy and the model needed automatically, you could fix this by installing it manually

```
pip install spacy
python -m spacy download en_core_web_sm
```
and then

```
pip install wordasso
```

## Usage
these functions are based on datamuse means like API which could be used to query 100 related words of a given word

### syn_words
return related words which has 'synonym' in tags list

```
>>> from wordasso.wordasso import syn_words
>>> print(syn_words("author"))

# output
['writer', 'source', 'generator']
```

### pho_words
return related words which sound like the key word most, default list size is 10.

```
>>> from wordasso.wordasso import pho_words
>>> print(pho_words("author"))

# output
['writer', 'actor', 'authorship', 'writers', 'drafter', 'reporter', 'owner', 'songwriter', 'signer', 'source']

>>> print(pho_words("author", L=5)

# output
['writer', 'actor', 'authorship', 'writers', 'drafter']
```

### ent_words
return Named Entities associated to the related words of the given word.

```
>>> from wordasso.wordasso import ent_words
>>> print(ent_words("author"))

# output
{French, Judeo, Christian, Islam, trustee, Medina, trustee, Judeo, Mecca, Muhammad}
```




Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wordasso-0.2.1.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

wordasso-0.2.1-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page