I Want to Download This Page Using Python. page link is https://tntenders.gov.in/nicgep/app?component=%24DirectLink&page=FrontEndTendersByOrganisation&service=direct&session=T&sp=S0g8N%2FzBGK2IUXzIfka6LnQ%3D%3D
page image is
This is My Python code
import requests image_url = "https://tntenders.gov.in/nicgep/app?component=%24DirectLink&page=FrontEndTendersByOrganisation&service=direct&session=T&sp=S0g8N%2FzBGK2IUXzIfka6LnQ%3D%3D" # URL of the image to be downloaded is defined as image_url r = requests.get(image_url) # create HTTP response object with open("python_logo.html",'wb') as f: f.write(r.content) After Downloaded This Page Cannot be shown
this page is shown here
What can i do for download the page?? Anyone Have Answer?? Help me!

