Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
ITKY2102 tp8 backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ITKY210x-kurssit
ITKY2102 tp8 backend
Commits
b82bb3d9
Commit
b82bb3d9
authored
1 year ago
by
osklahti
Browse files
Options
Downloads
Patches
Plain Diff
alusta.py should be ready
parent
ff7bbe24
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
alusta.py
+21
-1
21 additions, 1 deletion
alusta.py
with
21 additions
and
1 deletion
alusta.py
+
21
−
1
View file @
b82bb3d9
...
...
@@ -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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment