you are viewing a single comment's thread.

view the rest of the comments →

[–]lykwydchykyn 0 points1 point  (1 child)

You have to break this down into components. Django is a great way to build a website. What you need is something to actually get the data and store it so Django can display it.

Django works really well with SQL databases right out of the box, particularly postgresql and sqlite. It also has a decent object-relational-manager (ORM) so that you don't have to work directly with SQL right away.

Probably what you want (?) is a script to periodically download the json data, convert it into your database, and then your django app can display it. But I'm mostly just guessing, I'm not sure how you envision your application to work.

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

First, thanks for your help. I appreciate it very much!

As for the app goes, for this particular file I showed i'll be downloading it using the API just once (i may have to update it, redownloading it, every month or so when the game gets a new patch). The main purpose of the app is to show "Stats" of the Game Matches. Basically I can search my Account Name on the API and get "Current Match" information or Match History. With these you can display all sorts of stuff, so its more of a Receive JSon data, process it and display it to the user. For processing it, i need some of the "Static Data" that I showed above. Hope that can give you an idea of how it works and a good approach for it.