├── .travis.yml ├── LICENSE ├── README.md ├── markov ├── __init__.py ├── markov.py └── tests.py └── setup.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieden-kennedy/python-markov/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieden-kennedy/python-markov/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieden-kennedy/python-markov/HEAD/README.md -------------------------------------------------------------------------------- /markov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieden-kennedy/python-markov/HEAD/markov/__init__.py -------------------------------------------------------------------------------- /markov/markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieden-kennedy/python-markov/HEAD/markov/markov.py -------------------------------------------------------------------------------- /markov/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieden-kennedy/python-markov/HEAD/markov/tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieden-kennedy/python-markov/HEAD/setup.py --------------------------------------------------------------------------------