CSE 231

In order to communicate with API, we can use the urllib module provided in python to send HTTP requests and to read the responses. The request is sent using the urlopen() function that takes a string containing the URL. A file-like object is returned and used to read the response. ................
................