Python Forum

Full Version: I cannot able to see output of this code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
import sqlite3

conn = sqlite3.connect('emaildb.sqlite')
cur = conn.cursor()
cur.execute('DROP TABLE IF EXISTS Counts')
cur.execute('CREATE TABLE Counts(email TEXT, count INTEGER)')

filename = input("Enter file name: ")
if len(filename) < 1:
    filename = 'new.txt'

fh = open(filename, "r")

g = fh.read()

for line in g:
    if not line.startswith("From: "):
        continue
    pieces = line.split()
    email = pieces[1]
    cur.execute("SELECT count FROM Counts WHERE email = ?", (email,))
    row = cur.fetchone()
    if row is None:
        cur.execute('INSERT INTO Counts(email, count) VALUES (?, 1)', (email,))
    else:
        cur.execute('UPDATE Counts SET count = count + 1 WHERE email = ?', (email,))
    conn.commit()

sqlstr = 'SELECT email, count FROM Counts ORDER BY count DESC LIMIT 10'

for row in cur.execute(sqlstr):
    print(row[0], row[1])

cur.close()
More details would be nice.

If nothing prints, that must mean that:
cur.execute('SELECT email, count FROM Counts ORDER BY count DESC LIMIT 10')
returns None. Is there anything in your Counts table?