2017-02-12 67 views
2

幾個月進入python,並且無法從使用BeautifulSoup的表格中獲取一些信息,我們將不勝感激。我沒有收到任何錯誤代碼,只是從表中沒有收到任何數據。美麗的湯無法從表格中獲取信息

import bs4 as bs 
import requests 

resp = requests.get('https://www.thestreet.com/markets/gainers.html') 
soup = bs.BeautifulSoup(resp.text, "lxml") 
table = soup.find('table', {'id': 'nyseData'}) 

tickers = [] 
for row in table.findAll('tr')[1:]: 
    ticker = row.findAll('td')[1].text 
    tickers.append(ticker) 

任何幫助非常感謝!

回答

1

你與網頁不允許訪問其網站的某些用戶代理問題運行英寸這可以通過在您的requests標頭中設置用戶代理字符串來解決。

你的與所述用戶代理代碼添加:

import bs4 as bs 
import requests 

headers = {'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'} 

resp = requests.get('https://www.thestreet.com/markets/gainers.html', headers=headers) 
soup = bs.BeautifulSoup(resp.text,'lxml') 
table = soup.find('table', {'id': 'nyseData'}) 

tickers = [] 
for row in table.findAll('tr')[1:]: 
    ticker = row.findAll('td')[1].text 
    tickers.append(ticker) 

print tickers 

輸出:

[u'QUOT', u'BCEI', u'ATEN', u'SKX', u'FBK', u'FBM', u'CGI', u'SDRL', u'ELLI', u'CELP', u'SXCP', u'CUB', u'GLF', u'SID', u'HBM', u'NE', u'CBG', u'PJT', u'VVI', u'ARL']