From c6bb1110cbe9b2a9e9b31c5fc66e1e5c7aa5deba Mon Sep 17 00:00:00 2001 From: yvesf Date: Wed, 10 Jun 2009 08:17:19 +0000 Subject: ibo git-svn-id: http://xapek.org/svn/common/omegle@1098 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd --- megahal_local.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 megahal_local.py (limited to 'megahal_local.py') 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) -- cgit v1.2.1