Answers for "how to scrape data from a html"

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
0

how to scrape data from a html page saved locally

from bs4 import BeautifulSoup
import html5lib
myFile=open('C:/Users/CSE/AppData/Local/atom/app-1.42.0/practise.html','r')
soup=BeautifulSoup(myFile,"html5lib")
print(soup.prettify())
Posted by: Guest on October-07-2020

Code answers related to "how to scrape data from a html"

Python Answers by Framework

Browse Popular Code Answers by Language