python爬虫利润表代码
时间: 2023-12-20 11:29:13 浏览: 113
python 爬虫代码
以下是一个简单的Python爬虫利润表代码的例子:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://finance.yahoo.com/quote/AAPL/financials?p=AAPL'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
table = soup.find_all('div', {'class': 'D(tbr)'})
for row in table:
cols = row.find_all('div', {'class': 'D(tbc)'})
for col in cols:
print(col.text, end='\t')
print()
```
这个代码使用了requests库和BeautifulSoup库来获取和解析网页。它从雅虎财经获取了苹果公司的利润表,并将其打印出来。
阅读全文