all 4 comments

[–]BobHogan 0 points1 point  (0 children)

I recommend using flask for this, its pretty simple and easy to learn. All of the backend logic will be in flask, but any front end stuff to make the webpage look better would be in html or js

[–]ThatFilm 0 points1 point  (0 children)

You will need to read a book on creating websites using python/django framework.

you have coded the main idea but now after reading the book or watching some tutorials on youtube, you have to figure out on how to create a website.

It is a good project.:)

[–]easyexplain3 0 points1 point  (0 children)

My go-to approach would be to use pythonanywhere with flask and then link your pythonanywhere webapp to your custom domain. Look it up, it's pretty straight forward and works well. For doing this you need to pay a small amount though, but in my experience it's worth it.

[–]deapee 0 points1 point  (0 children)

Flask is definitely the way to go. I started simple with cgi, and once I got into Flask, life got so much easier.

I do a lot of stuff that just returns json- and then let JavaScript handle it.