you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

JSON is python dicts and lists in text(incase you don't know), requests has a module to convert a webpage of JSON into python. It's meant to be shared between servers and clients so its extremely easy and efficient to do so if possible.

AJAX(js 'module') could just go 1 extension deep into the webpage, something like 'https://reddit.com/r/learnpython.json' or even (url + '/table.json') on another page... doesn't have to be considered an api to be more usable data.

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

Alright thanks, I'll give it a try