抓取100期双色球python代码
时间: 2023-06-24 08:08:05 浏览: 88
以下是一个基本的 Python 程序,用于从双色球官方网站抓取最近 100 期双色球的数据:
```python
import requests
from bs4 import BeautifulSoup
url = "http://www.cwl.gov.cn/cwl_admin/front/cwlkj/kjxx/findDrawNotice?name=ssq&issueCount=100"
response = requests.get(url)
soup = BeautifulSoup(response.content, "html.parser")
table = soup.find("table", {"class": "tb"})
for tr in table.find_all("tr")[2:]:
tds = tr.find_all("td")
issue = tds[0].text.strip()
red_balls = [tds[i].text.strip() for i in range(1, 7)]
blue_ball = tds[7].text.strip()
print(f"Issue: {issue}, Red Balls: {red_balls}, Blue Ball: {blue_ball}")
```
该程序使用了 requests 库和 BeautifulSoup 库。它首先指定了要抓取的 URL,然后使用 requests 发送 GET 请求并获取响应。接下来,使用 BeautifulSoup 解析响应内容并提取最近 100 期双色球的数据。最后,程序打印出每一期的信息,包括期号、红球和蓝球号码。
阅读全文