-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathemaildb2.py
More file actions
41 lines (32 loc) · 1.09 KB
/
emaildb2.py
File metadata and controls
41 lines (32 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
# @Author: Rohan Kumara
# @Date: 2020-09-28 23:18:52
# @Last Modified by: Rohan Kumara
# @Last Modified time: 2020-09-29 01:28:17
import sqlite3
conn = sqlite3.connect('email1.sqlite')
cur = conn.cursor()
cur.execute('DROP TABLE IF EXISTS Counts')
cur.execute('CREATE TABLE Counts (org TEXT, count INTEGER)')
## input data to database
fname = input('Enter file name:')
if (len(fname) < 1): fname = 'mbox.txt'
fh = open(fname)
for line in fh:
if not line.startswith('From: '): continue
pieces = line.split()
email = pieces[1]
org = email.split('@')
dom = org[len(org)-1]
cur.execute('SELECT count FROM Counts WHERE org = ? ', (dom,))
row = cur.fetchone()
if row is None :
cur.execute('INSERT INTO Counts (org, count) VALUES (?, 1)',(dom,))
else:
cur.execute('UPDATE Counts SET count = count + 1 WHERE org = ?', (dom,))
conn.commit()
#https://www.sqlite.org/lang_select.html
sqlstr = 'SELECT org, count FROM Counts ORDER BY count DESC LIMIT 1000'
for row in cur.execute(sqlstr):
print(str(row[0]), row[1])
cur.close()