I'm trying to grab the table out of this webpage. I'm not sure if I'm grabbing the right tags. Here is what I have so far.
from bs4 import BeautifulSoup
import requests
page='http://www.airchina.com.cn/www/en/html/index/ir/traffic/'
r=requests.get(page)
soup=BeautifulSoup(r.text)
test=soup.findAll('div', {'class': 'main noneBg'})
rows=test.findAll("td")
Is main noneBg
the table? when i hover over that tag, it does highlight the table?