当前位置:首页 > 编程技术 > 正文

爬虫如何获取时间

爬虫如何获取时间

爬虫获取时间的方法通常有以下几种:1. 使用Python内置库: `datetime`:Python内置的`datetime`模块可以用来获取当前时间,也可以用来处理日...

爬虫获取时间的方法通常有以下几种:

1. 使用Python内置库:

`datetime`:Python内置的`datetime`模块可以用来获取当前时间,也可以用来处理日期和时间。

```python

from datetime import datetime

current_time = datetime.now()

print(current_time)

```

2. 使用第三方库:

`requests`:如果你需要从某个网站获取时间,可以使用`requests`库发送HTTP请求,并解析返回的HTML或JSON数据中的时间信息。

`BeautifulSoup`或`lxml`:用于解析HTML或XML文档,从中提取时间信息。

`dateutil`:用于解析复杂的日期和时间字符串。

示例代码:

```python

import requests

from bs4 import BeautifulSoup

from dateutil import parser

假设我们要从某个网页获取时间

url = 'http://example.com/time'

response = requests.get(url)

soup = BeautifulSoup(response.text, 'html.parser')

time_str = soup.find('div', {'id': 'time'

最新文章