gpt4 book ai didi

python - 使用 Python 进行网页抓取

转载 作者:IT老高 更新时间:2023-10-28 12:21:57 31 4
gpt4 key购买 nike

我想从网站获取每日日出/日落时间。是否可以使用 Python 抓取网页内容?使用了哪些模块?有教程吗?

最佳答案

将 urllib2 与出色的 BeautifulSoup 结合使用图书馆:

import urllib2
from BeautifulSoup import BeautifulSoup
# or if you're using BeautifulSoup4:
# from bs4 import BeautifulSoup

soup = BeautifulSoup(urllib2.urlopen('http://example.com').read())

for row in soup('table', {'class': 'spad'})[0].tbody('tr'):
tds = row('td')
print tds[0].string, tds[1].string
# will print date and sunrise

关于python - 使用 Python 进行网页抓取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2081586/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com