Skip to content
Snippets Groups Projects
Commit b82bb3d9 authored by osklahti's avatar osklahti
Browse files

alusta.py should be ready

parent ff7bbe24
No related branches found
No related tags found
No related merge requests found
......@@ -4,4 +4,24 @@ import sqlite3
with open("data.json") as f:
data = json.load(f)
print(data)
# alustetaan tietokantayhteys ja -kursori
con = sqlite3.connect("tietokanta.db")
cur = con.cursor()
# luodaan ensimmäinen taulu tietokantaan
cur.execute("CREATE TABLE ateria(id integer primary key, paiva, ruoka)")
# käydään data läpi ja laitetaan kiinnostava sisältö tietokantaan
for paiva in data["MenusForDays"]:
pvm = paiva['Date']
for ruoka in paiva["SetMenus"]:
# ei laiteta tyhjiä rivejä mukaan
if len(ruoka['Components']) != 0:
# yhdistetään ruokavaihtoehdon eri komponentit
ruokastring = ' '.join(ruoka['Components'])
cur.execute("INSERT INTO ateria (paiva, ruoka) VALUES(?, ?)", (pvm, ruokastring))
con.commit()
# luodaan myös tykkäyksille oma taulu
cur.execute("CREATE TABLE tykkaykset(id integer primary key, ruokaid)")
con.commit()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment