parent
23a1afd098
commit
2e1344d49a
@ -1 +1,2 @@ |
||||
venv |
||||
venv |
||||
links.db |
@ -0,0 +1,19 @@ |
||||
import sqlite3 |
||||
con = sqlite3.connect('links.db') |
||||
|
||||
# array of links to store |
||||
links = [ |
||||
('http://csclub.uwaterloo.ca/','CS Club Website',3,1), |
||||
('https://www.instagram.com/uwcsclub/','Instagram',4,1), |
||||
('https://www.facebook.com/uw.computerscienceclub','Facebook',5,0), |
||||
('http://twitch.tv/uwcsclub','Twitch',6,0), |
||||
('http://bit.ly/uwcsclub-yt','YouTube',7,1), |
||||
] |
||||
|
||||
# SQLite setup |
||||
cur = con.cursor() |
||||
cur.execute("CREATE TABLE links (url text, name text, clicks int, active int)") |
||||
cur.executemany("INSERT INTO links VALUES (?,?,?,?)", links) |
||||
con.commit() |
||||
|
||||
con.close() |
Loading…
Reference in new issue