A Markov Bot based on bigram probabilities to generate a random tweet based on your tweet history. A markov chain is formed by randomly seeding from your tweet history. It's fun !!
Try it : https://tweety.herokuapp.com
- Django 1.6.5
- Twpython 3.1.2
$ virtualenv tweety-app
$ cd tweety-app/
$ source bin/activate
$ pip install -r requirements.txt
$ foreman start
Note
- Get your
app_key
andapp_secret
from Twitter Dev Center and django appsecret_key
from settings. - Create
API_KEY
,API_SECRET
andSECRET_KEY
environment variables. - Install
heroku-toolbelt
or seperately installforeman
.