Metadata-Version: 1.1
Name: markmywords
Version: 0.2
Summary: A text-generating Markov chain library
Home-page: http://github.com/useanalias/markmywords
Author: useanalias
Author-email: use.an.alias@gmail.com
License: MIT
Description: markmywords
        -----------
        
        This library is nothing more and nothing less than a simple Markov chain text generator.
        
        >>> from markmywords import Markov
        >>> with open('declaration.txt', 'r') as f:
        ...     text = f.read()
        >>> m = Markov(text, degree=2)
        >>> m.generate(max_words=13)
        "petitioned for redress in the meantime exposed to all the dangers of invasion" 
        
Keywords: markov chain artificial intelligence text generation
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries
