xxxxxxxxxx
import sqlite3,os; import pandas as pd
def connect_to_db(dbf):
sqlconn=None
try:
sqlconn=sqlite3.connect(dbf); return sqlconn
except Error as err:
print(err)
if sqlconn is not None: sqlconn.close()
connection=connect_to_db('example.db')
if connection is not None: cursor=connection.cursor()
def get_query(q):
pretty_print(html('<p>SQL Queries</p>'))
tr=[]; cursor.execute(q); result=cursor.fetchall()
for r in result: tr+=[r]
display(table(tr))
thp=[('font-size','17px'),('text-align','center'),
('font-weight','bold'),('padding','5px 5px'),
('color','white'),('background-color','slategray')]
tdp=[('font-size','16px'),('padding','5px 5px'),
('text-align','center'),('color','darkblue'),
('background-color','silver')]
style_dict=[dict(selector='th',props=thp),
dict(selector='td',props=tdp)]
xxxxxxxxxx
url='https://raw.github.com/pandas-dev/pandas/'+\
'master/pandas/tests/io/data/csv/tips.csv'
tips=pd.read_csv(url)
tips.to_sql('tips',con=connection,if_exists='replace')
get_query('''
SELECT *
FROM tips
WHERE time='Dinner'
LIMIT 3;
''')
if connection is not None: connection.close()
pretty_print(html('<p>Pandas Queries</p>'))
tips[tips['time']=='Dinner'].head(int(3))\
.style.set_table_styles(style_dict)
xxxxxxxxxx
if os.path.exists('example.db'): os.remove('example.db')
else: print('The file does not exist')
os.listdir()