簡體   English   中英

無法從網頁獲取表格

[英]Can't get a table from a web page

我正在使用BeautifulSoup嘗試從此URL獲取所有2000家公司的整個表格:

https://www.forbes.com/global2000/list/#tab:overall

這是我編寫的代碼:

from bs4 import BeautifulSoup
import urllib.request

html_content = urllib.request.urlopen('https://www.forbes.com/global2000/list/#header:position')

soup = BeautifulSoup(html_content, 'lxml')
table = soup.find_all('table')[0]
new_table = pd.DataFrame(columns=range(0,7), index = [0])

row_marker = 0
for row in table.find_all('tr'):
   column_marker = 0
   columns = row.find_all('td')

   for column in columns:
      new_table.iat[row_marker,column_marker] = column.get_text()
      column_marker += 1
new_table

結果,我只得到列的名稱,而不是表本身。

我怎么能得到整個桌子。

內容是通過javascript生成的,因此您必須使用selenium來模仿瀏覽器並滾動運動,然后使用beautiful soup解析頁面源,或者在某些情況下,例如這樣,您可以通過查詢其ajax API來訪問這些值。 :

import requests
import json

headers = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0'}

target = 'https://www.forbes.com/ajax/list/data?year=2017&uri=global2000&type=organization'

with requests.Session() as s:
    s.headers = headers
    data = json.loads(s.get(target).text)

print([x['name'] for x in data[:5]])

輸出(前5項)

['3M', '3i Group', '77 Bank', 'AAC Technologies Holdings', 'ABB']

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM