json.load and json.loads are not interchangeable and must each be used in a specific contect code example
Example: python json dump
import json
with open("data_file.json", "w") as write_file:
json.dump(data, write_file)
import json
with open("data_file.json", "w") as write_file:
json.dump(data, write_file)