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
22767707
Commit
22767707
authored
1 year ago
by
osklahti
Browse files
Options
Downloads
Patches
Plain Diff
tyopaja.py looking ready to go
parent
36f16741
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
tyopaja.py
+39
-0
39 additions, 0 deletions
tyopaja.py
with
39 additions
and
0 deletions
tyopaja.py
0 → 100644
+
39
−
0
View file @
22767707
import
sqlite3
# alustetaan tietokantayhteys ja -kursori
con
=
sqlite3
.
connect
(
"
tietokanta.db
"
)
cur
=
con
.
cursor
()
def
tykkaa
(
id
,
cur
):
cur
.
execute
(
"
INSERT INTO tykkaykset (ruokaid) VALUES (?)
"
,
(
id
,))
con
.
commit
()
def
haetykkaykset
(
id
,
cur
):
res
=
cur
.
execute
(
"
SELECT COUNT(*) FROM tykkaykset WHERE ruokaid = (?)
"
,
(
id
,))
# data saadaan taas ännikössä
return
res
.
fetchone
()[
0
]
# haetaan tietoja
pvm
=
'
2024-02-26
'
paivanruuat
=
cur
.
execute
(
"
SELECT id, ruoka FROM ateria WHERE paiva LIKE
'
2024-02-26%
'"
).
fetchall
()
while
True
:
for
ruokatuple
in
paivanruuat
:
# data saadaan änniköissä (engl. tuple)
id
=
ruokatuple
[
0
]
ruoka
=
ruokatuple
[
1
]
#print(id)
print
(
str
(
id
)
+
"
"
+
ruoka
)
print
(
"
Tykkäyksiä:
"
+
str
(
haetykkaykset
(
id
,
cur
)))
tulos
=
input
(
"
Kirjoita q poistuaksesi tai ruuan id tykätäksesi
"
)
if
(
tulos
==
"
q
"
):
break
try
:
tulos
=
int
(
tulos
)
except
ValueError
:
tulos
=
-
1
if
(
tulos
>
0
and
tulos
<
len
(
paivanruuat
)
+
1
):
tykkaa
(
tulos
,
cur
)
else
:
print
(
"
syöte ei ollut validi
"
)
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