Lets say i have a html table with 10 columns and 100 rows all i want to do is to use Beautifulsoup to look up for a data if exits and print full row.
import urllib3
from bs4 import BeautifulSou
http = urllib3.PoolManager()
url "https://en.wikipedia.org/wiki/List_of_Asian_countries_by_area"
response = http.request('GET', url)
soup = BeautifulSoup(response.data, "html.parser")
for tr in soup.find_all('tr')[2:]:
tds = tr.find_all('td')
print(tds)
Edit: