Metadata-Version: 1.0
Name: PyMarkov
Version: 0.1.0
Summary: Markov Chains made easy
Home-page: http://pypi.python.org/pypi/PyMarkov/
Author: Slater Victoroff
Author-email: Slater.R.Victoroff@gmail.com
License: LICENSE.txt
Description: ===========
        PyMarkov
        ===========
        
        Very simple an easy to use Markov Chain utility for Python::
        
            #!/usr/bin/env python
        
            from pyMarkov import markov
        
            text = "This is a random bunch of text"
            markov_dict = markov.train([text], 2) # 2 is the ply
            print markov.generate(markov_dict, 10, 2) # 2 is the ply, 10 is the length
            >>> 'random bunch of text'
        
Platform: UNKNOWN
