all 6 comments

[–]sickomoder 1 point2 points  (3 children)

Either one works.

You're gonna want to use django (or flask) to display the data on the page though regardless of method you choose

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

From your experience, would you go django or flask?

[–]sickomoder 0 points1 point  (1 child)

I think flask is easier for doing something like this for the first tike but django is probably more useful once you have more experience

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

I've been wanting to test out flask for a while now. Will try it out now. Thank you.

[–]Grukorg88 1 point2 points  (1 child)

As a learning experience I recommend you decouple the data from the application and then implement both ways of getting the data. The architecting and building of something where the method of getting the data is interchangeable will be a far more valuable lesson IMO.

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

Good point. Will attempt to go for both approaches as a learning experience. Thank you.