Logo Skip to Navigation Utility Menu Search Box XXX: reinstate this <div id="screen-switcher"></div> Main Menu NEED LEVEL TWO HEADER AND FOOTER Package Index Browse packages Package submission List trove classifiers List packages RSS (latest 40 updates) RSS (newest 40 packages) Python 3 Packages PyPI Tutorial PyPI Security PyPI Support PyPI Bug Reports PyPI Discussion PyPI Developer Info About News Documentation Download Community Foundation Core Development Package Index > PyMarkov > 0.1.0 Login Register Lost Login? Use OpenID Download PyMarkov-0.1.0.tar.gz Markov Chains made easy 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_...