An open API service indexing awesome lists of open source software.

https://github.com/mouse-reeve/foreign-tongue

generate languages
https://github.com/mouse-reeve/foreign-tongue

conlang language linguistics natural-language

Last synced: 11 months ago
JSON representation

generate languages

Awesome Lists containing this project

README

          

# Foreign Tongue

Randomly generate a human-like langauge.

Requires python 3.

```python3
from foreigntongue import Language, get_latin, get_ipa

lang = Language()
get_latin(lang.get_word('NN', 'fish'))
# 'ah'

get_ipa(lang.get_word('NN', 'fish'))
# 'ɑʔ'
```