A simple bot to talk to github
First, install uwsgi
and flask
sudo apt-get install uwsgi uwsgi-plugin-python python-flask
Next, configure nginx
by adding the following lines to a server block.
location /chatter/ {
include uwsgi_params;
uwsgi_pass 127.0.0.1:9001;
}
Look at making the robot more conversational. NLTK is a good start, and this StackOverflow answer has some more links.