diff options
Diffstat (limited to 'megahal_local.py')
-rw-r--r-- | megahal_local.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/megahal_local.py b/megahal_local.py new file mode 100644 index 0000000..cb96a0f --- /dev/null +++ b/megahal_local.py @@ -0,0 +1,27 @@ +import mh_python +import pyPgSQL.PgSQL + +mh_python.initbrain() +print "\033[2J" + + +conn = pyPgSQL.PgSQL.connect("") + +cur = conn.cursor() +cur.execute("SELECT message FROM omegle_messages") +messages = cur.fetchall() +c=0 +for message in messages: + c+=1 + if c%20==0: + print "%s%s/%s" % ("\033[2K\033[E",c,len(messages)), + mh_python.learn(message[0]) + +print "" +cur.close() +conn.close() +import sys +while True: + print ">>> ", + x=sys.stdin.readline().strip() + print "<<< %s " % mh_python.doreply(x) |