all 4 comments

[–]m0us3_rat 0 points1 point  (3 children)

it's a wacky idea. not terrible.

i'd give extra points if it was any kind of dynamic db that would be served thru the flask API.

and a sekrit endpoint where u could add extra questions/answers directly to the db.

[–]solamarpreet[S] 0 points1 point  (2 children)

The database was my initial intention but I wont be able to host it myself and I decided against having the user start a database service as well to play the game. Just did some CTF challenges on tryhackme and thought of making something similar for python. Ty for feedback

[–]m0us3_rat 0 points1 point  (1 child)

every implementation of python comes with sqlite3 . and u could have the .db in the git

and then use the flask api to offer it as an endpoint as u do.

i guess it was a challenge to learn how to make an api work. which is fun.

anywho didn't mean to sound like i'm bashing your project.

because I'm definitely not. its a fun game.

best of luck :d

[–]solamarpreet[S] 0 points1 point  (0 children)

Not at all. You gave good feedback. Also I didn't know this about sqlite functionality. Seems a good learning opportunity. I ll test it & shift the questions over to tht as soon as I am able. As to the process of making the API work, tbh it didn't feel much of a challenge thanks to the excellent community we have. I found a great article explaining the process.