Trying to find a simple way to import data from a JSON file into Python. My initial thoughts would be to read the file line by line, but this might imply some additional processing which should already be done in a library.
The ideal solution would look something like:
import json_library
the_data = json_library.load_from_file('my_file.json')
where 'my_file.json' contains a JSON-formatted variable.