Answers for "python get html with python"

6

python get html from url

import requests

url = requests.get("http://google.com")
htmltext = url.text
Posted by: Guest on May-10-2020
1

python get html info

from bs4 import BeautifulSoup

my_HTML = #Some HTML file (could be a website, you can use urllib for that)

soup = BeautifulSoup(my_HTML, 'html.parser')

print(soup.prettify())
Posted by: Guest on August-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language