Answers for "python print html as a string"

0

python print html as a string

import requests
page = requests.get(url)
print(page.text.encode("utf8"))
Posted by: Guest on April-08-2021

Code answers related to "python print html as a string"

Browse Popular Code Answers by Language