{ "info": { "author": "Stephen Prater", "author_email": "me@stephenprater.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Programming Language :: Python" ], "description": "========\nmomblish\n========\n\nMomblish is a library for generating fake words in any phoenetic.\n\nhttp://mentalfloss.com/article/69880/7-fake-words-ended-dictionary\n\nIt is named after a \"fake\" word put into the OED on accident.\n\n\nMomblish uses trigram analysis to generate (mostly) pronounacble gibberish - so\nit can be used for any language that can be n-gram analyzed.\n\nDescription\n===========\n\nTo use moblish, import it -\n\n.. code:: python\n\n from momblish import Momblish\n\n m = Momblish.english()\n\n\nCurrently - only the english corpus is available.\n\n\nEach time you load the English momblish it will perform an analysis on\n`/usr/share/dict` and use that data to generate nonsense words.\n\nTo avoid this computation overhead, you can save the pre-analyzed corpus\nas a file and read it in on demand.\n\n.. code:: python\n\n from mombmlish import Momblish\n from momblish.corpus import Corpus\n\n m = Momblish.english()\n m.corpus.save('/tmp/corpus.json')\n\n c = Corpus.load('/tmp/corpus.json')\n n = Momblish(c)\n\nTo get Momblish to generate words for you call `word` on a Momblish instance.\n\n`sentence` will make a generator you can feed to your program to make word lists\nof varying length.\n\n.. code:: python\n m.word() #= > 'PONESSAL'\n m.word(10) #= > 'MIDONIHYLA'\n w = m.sentence() #= > \n next(w) #= > 'TICK'\n next(w) #= > 'DRIXY'\n next(w) #= > 'UNREA'\n m.sentence(3, word_length=5) #= > ['LEDGE', 'DEAKA', 'HONGI']\n\nNote\n====\n\nThis project has been set up using PyScaffold 3.1. For details and usage\ninformation on PyScaffold see https://pyscaffold.org/.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/CypherpunkArmory/mumblish", "keywords": "", "license": "mit", "maintainer": "", "maintainer_email": "", "name": "momblish", "package_url": "https://pypi.org/project/momblish/", "platform": "any", "project_url": "https://pypi.org/project/momblish/", "project_urls": { "Homepage": "https://github.com/CypherpunkArmory/mumblish" }, "release_url": "https://pypi.org/project/momblish/0.0.1/", "requires_dist": [ "pytest ; extra == 'testing'", "pytest-cov ; extra == 'testing'" ], "requires_python": "", "summary": "Generate nonsense words in any language by corpus analysis", "version": "0.0.1" }, "last_serial": 4535307, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "8eb0602517ed00ff6e6cda6182385ec8", "sha256": "2d4016540ff8fe70dc18c81f667546f89493210bdb43480a12bc87428101fb65" }, "downloads": -1, "filename": "momblish-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8eb0602517ed00ff6e6cda6182385ec8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7487, "upload_time": "2018-11-27T18:36:53", "url": "https://files.pythonhosted.org/packages/74/73/0e22430c81cf28f59c3968410557188f1ea947c495ee4aa042fe8e85b398/momblish-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40435e4433bd893b2775ed407846b810", "sha256": "4fd785907b80092db992d9ae43270fff32c408e76477d93ef542cced2c2f5f8b" }, "downloads": -1, "filename": "momblish-0.0.1.tar.gz", "has_sig": false, "md5_digest": "40435e4433bd893b2775ed407846b810", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18152, "upload_time": "2018-11-27T18:40:38", "url": "https://files.pythonhosted.org/packages/da/00/3485fef1a537c7427da2664556319b1490a47e7a340995f0e8c086080052/momblish-0.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8eb0602517ed00ff6e6cda6182385ec8", "sha256": "2d4016540ff8fe70dc18c81f667546f89493210bdb43480a12bc87428101fb65" }, "downloads": -1, "filename": "momblish-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8eb0602517ed00ff6e6cda6182385ec8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7487, "upload_time": "2018-11-27T18:36:53", "url": "https://files.pythonhosted.org/packages/74/73/0e22430c81cf28f59c3968410557188f1ea947c495ee4aa042fe8e85b398/momblish-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40435e4433bd893b2775ed407846b810", "sha256": "4fd785907b80092db992d9ae43270fff32c408e76477d93ef542cced2c2f5f8b" }, "downloads": -1, "filename": "momblish-0.0.1.tar.gz", "has_sig": false, "md5_digest": "40435e4433bd893b2775ed407846b810", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18152, "upload_time": "2018-11-27T18:40:38", "url": "https://files.pythonhosted.org/packages/da/00/3485fef1a537c7427da2664556319b1490a47e7a340995f0e8c086080052/momblish-0.0.1.tar.gz" } ] }