Skip to content

foobarbecue/momblish

 
 

Repository files navigation

momblish

Momblish is a library for generating fake words in any phoenetic.

http://mentalfloss.com/article/69880/7-fake-words-ended-dictionary

It is named after a "fake" word put into the OED on accident.

Momblish uses trigram analysis to generate (mostly) pronounacble gibberish - so it can be used for any language that can be n-gram analyzed.

Description

To use moblish, import it -

from momblish import Momblish

m = Momblish.english()

Currently - only the english corpus is available.

Each time you load the English momblish it will perform an analysis on /usr/share/dict and use that data to generate nonsense words.

To avoid this computation overhead, you can save the pre-analyzed corpus as a file and read it in on demand.

from mombmlish import Momblish
from momblish.corpus import Corpus

m = Momblish.english()
m.corpus.save('/tmp/corpus.json')

c = Corpus.load('/tmp/corpus.json')
n = Momblish(c)

To get Momblish to generate words for you call word on a Momblish instance.

sentence will make a generator you can feed to your program to make word lists of varying length.

Note

This project has been set up using PyScaffold 3.1. For details and usage information on PyScaffold see https://pyscaffold.org/.

About

What nonsense! Lango!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%