views:

31

answers:

1

Does Python3 have a built in method to do this? Any guidance at all would be great! :)

The website in question exposes all of its information and even gives you an API key to use.

+1  A: 

Python includes a json module that can do the conversion for you. For downloading the actual data from the web site, use urllib.request.

Greg Hewgill