Add demo org file

master
trémeur 10 months ago
parent 3b5cb360d5
commit 4176cb113f

@ -0,0 +1,14 @@
<2024-02-17 Sat>
* note
Files should be stored in a tree and named like so: =YYYY/MM/YYYY-MM-DD.org=.
* games
** acquired
*** demo game 1 (ps2)
** gameplay
*** demo game 2 (pc)
Notes about the games can be stored under each heading.
** beaten
*** demo game 3 (pc)
** completed
*** demo game 4 (nintendo ds)

@ -6,7 +6,6 @@ from datetime import datetime
Load in the list of games from a set of .org files.
"""
home = str(Path.home())
thisyear = datetime.now().strftime("%Y")
year = 2016
@ -158,30 +157,5 @@ def unplayed(selection):
unplayed = total(selection) - (completed(selection) + beaten(selection) + unfinished(selection) + endless(selection))
return(unplayed)
# completed = 0
# beaten = 0
# endless = 0
# unfinished = 0
# total = len(games)
# if total > 0:
# for game in games:
# try:
# if game["completed"]:
# completed += 1
# except:
# try:
# if game["beaten"]:
# beaten += 1
# except:
# try:
# if game["gameplay"]:
# if game["id"] in variables.endlessgames:
# endless += 1
# else:
# unfinished += 1
# except:
# pass
# unplayed = total - (completed + beaten + unfinished + endless)
if __name__ == "__main__":
print(endless(games))

Loading…
Cancel
Save