Using Database with Python -Basic Structured Query Language-Email Database Demo

来源:互联网 发布:3d打印技术编程教程 编辑:程序博客网 时间:2024/06/14 19:00
import sqlite3


conn = sqlite3.connect('emaildb.sqlite')
cur = conn.cursor()


cur.execute('''
DROP TABLE IF EXISTS Counts''')


cur.execute('''
CREATE TABLE Counts (org TEXT, count INTEGER)''')


fname = raw_input('Enter file name: ')
if ( len(fname) < 1 ) : fname = '3.txt'
fh = open(fname)
for line in fh:
    if not line.startswith('From: ') : continue
    pieces = line.split()
    email = pieces[1]
    orgg=email.split('@')
    org=orgg[1]
    print org
    cur.execute('SELECT count FROM Counts WHERE org = ? ', (org, ))
    row = cur.fetchone()
    if row is None:
        cur.execute('''INSERT INTO Counts (org, count) 
                VALUES ( ?, 1 )''', ( org, ) )
    else : 
        cur.execute('UPDATE Counts SET count=count+1 WHERE org = ?', 
            (org, ))


    conn.commit()
sqlstr = 'SELECT org, count FROM Counts ORDER BY count DESC LIMIT 10'
print
print "Counts:"
ls1=list()
ls2=list()
for row in cur.execute(sqlstr) :
    print str(row[0]), row[1]


cur.close()


输出结果为

Counts:
iupui.edu 536
umich.edu 491
indiana.edu 178
caret.cam.ac.uk 157
vt.edu 110
uct.ac.za 96
media.berkeley.edu 56
ufp.pt 28
gmail.com 25
et.gatech.edu 17


0 0
原创粉丝点击