Add the imports

Once we have the file open in our editor we can get started coding our project. First we are going to import both the default package json to manage data in the JSON format and the requests package that we installed.

import requests
import json

Last updated

Was this helpful?