I am trying to prettify the json format but i am getting this error:
import requests as tt from bs4 import BeautifulSoup import json get_url=tt.get(\"https://in
Use json.dumps() instead. json.dump() needs a file object and dump JSON to it.
json.dumps()
json.dump()