-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest_engine.py
54 lines (46 loc) · 1.69 KB
/
request_engine.py
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
42
43
44
45
46
47
48
49
50
51
52
53
54
import sqlite3 as sql
class DbFunctions:
"""
Handles twitter database functions
"""
def __init__(self, name):
"""
:param name: name from the DB that will store the data
"""
self.name = name
self.address = "./"
def set_tables(self):
"""
Create all the necessary tables to store twitter streaming data and analysis
"""
with sql.connect('./{}.db'.format(self.name)) as conn:
conn.execute("""CREATE TABLE IF NOT EXISTS contatos(
id_contato INTEGER PRIMARY KEY,
data DATE,
hora TIME,
endereco TEXT,
nome TEXT,
email TEXT,
num_telefone TEXT,
canal TEXT)
""")
def cria_contato_db(self, infos):
"""
Handle with insertion into tweet table
"""
query = "insert into contatos(data, hora, endereco, nome, email, num_telefone, canal) values(?, ?, ?, ?, ?, ?, ?);"
with sql.connect('./{}.db'.format(self.name)) as conn:
c = conn.cursor()
c.execute(query, infos)
id_contato = c.lastrowid
return id_contato
def obtem_contato_db(self, id_contato):
"""
Handle with insertion into tweet table
"""
query = "select * from contatos where id_contato = {};".format(id_contato)
with sql.connect('./{}.db'.format(self.name)) as conn:
c = conn.cursor()
proc_data = c.execute(query)
data = proc_data.fetchall()
return data