Skip to content

Commit 9b877fc

Browse files
authoredDec 10, 2018
Add files via upload
1 parent 1fa7d93 commit 9b877fc

File tree

2 files changed

+132082
-0
lines changed

2 files changed

+132082
-0
lines changed
 

‎file_mail_count/file_mail_count.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# program to read data from file and fetch email from it and its count and store it in sqlite database
2+
import sqlite3
3+
4+
conn = sqlite3.connect('emaildb.sqlite')
5+
cur = conn.cursor()
6+
7+
cur.execute('DROP TABLE IF EXISTS Counts')
8+
9+
cur.execute('''
10+
CREATE TABLE Counts (org TEXT, count INTEGER)''')
11+
12+
fname = input('Enter file name: ')
13+
if (len(fname) < 1): fname = 'mbox.txt'
14+
fh = open(fname)
15+
for line in fh:
16+
if not line.startswith('From: '): continue
17+
pieces = line.split()
18+
email = pieces[1]
19+
organizationDomainlist = email.split('@')
20+
organizationDomain = organizationDomainlist[1]
21+
print(organizationDomain)
22+
cur.execute('SELECT count FROM Counts WHERE org = ? ', (organizationDomain,))
23+
row = cur.fetchone()
24+
if row is None:
25+
cur.execute('''INSERT INTO Counts (org, count)
26+
VALUES (?, 1)''', (organizationDomain,))
27+
else:
28+
cur.execute('UPDATE Counts SET count = count + 1 WHERE org = ?',
29+
(organizationDomain,))
30+
conn.commit()
31+
32+
# https://www.sqlite.org/lang_select.html
33+
sqlstr = 'SELECT org, count FROM Counts ORDER BY count DESC LIMIT 10'
34+
35+
for row in cur.execute(sqlstr):
36+
print(str(row[0]), row[1])
37+
38+
cur.close()

0 commit comments

Comments
 (0)
Please sign in to comment.