Web Data Handling
Make a Request
1 | import urllib.request ## urllib module is used to send request and receive response from a server. It can used to get html / JSON / XML data from an api. |
Read
1 |
|
JSON Parsing
1 | import json |
XML Parsing
1 | import xml.dom.minidom |