import mh_python import pyPgSQL.PgSQL mh_python.initbrain() conn = pyPgSQL.PgSQL.connect("") cur = conn.cursor() cur.execute(""" SELECT message FROM omegle_messages WHERE NOT ( message ILIKE '%www.%' OR message ILIKE '%http:%' OR message ILIKE '%@%.%'); """) c=0 while True: messages = cur.fetchmany(1000) if len(messages)==0: break for message in messages: c+=1 if c%50==0: print "%s%s" % ("\033[2K\033[E",c), mh_python.learn("%s"%message[0]) print "" cur.close() conn.close() import sys while True: print ">>> ", x=sys.stdin.readline().strip() print "<<< %s " % mh_python.doreply(x)