xxxxxxxxxx
import requests
url = input('https://lifeplus.behzisti.net/LifePlus/Applicant/Index_1_2_3')
html_output_name = input('test2.htm')
req = requests.get(url, 'html.parser')
with open(html_output_name, 'w') as f:
f.write(req.text)
f.close()
xxxxxxxxxx
import urllib. request
def code_of_site(url):
weburl = urllib.request.urlopen(url)
code = weburl.read()
return code
print(code_of_site("https://www.codegrepper.com/app/index.php"))