Hello, World!
This is a paragraph.
- Item 1
- Item 2
- Item 3
目录
Python常用爬虫库
代码示例
requests + BeautifulSoup
Scrapy
Selenium
PyQuery
Axios
requests-html
pyppeteer
总结
Python是一种非常流行的编程语言,因其易学易用和广泛的应用而受到开发者的喜爱。在Python中,有许多库可以用于爬虫程序的开发,这些库可以帮助我们快速地从互联网上抓取数据。本文将介绍一些常用的Python爬虫库及其用法。
Python的爬虫库非常丰富,以下是一些常用的库及其用法:
以上是一些常用的Python爬虫库及其用法,不同的库适用于不同的场景和需求。选择合适的库和方法可以大大提高数据采集的效率和准确性。
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# 获取网页标题
title = soup.title.string
print('网页标题:', title)
# 获取网页内容
content = soup.p.string
print('网页内容:', content)
import scrapy
class ExampleSpider(scrapy.Spider):
name = 'example'
start_urls = ['https://www.example.com']
def parse(self, response):
# 提取所需数据
title = response.css('title::text').get()
content = response.css('p::text').get()
yield {'title': title, 'content': content}
from selenium import webdriver
# 初始化WebDriver,使用Chrome浏览器
driver = webdriver.Chrome()
# 打开指定URL
driver.get('https://www.example.com')
# 定位元素并输入文本
element = driver.find_element_by_id('username')
element.send_keys('myusername')
# 定位元素并点击
element = driver.find_element_by_id('password')
element.send_keys('mypassword')
element.submit()
# 等待页面加载完成
driver.implicitly_wait(10)
# 定位元素并检查文本内容
element = driver.find_element_by_id('welcome-message')
assert 'Welcome, myusername!' in element.text
# 关闭浏览器窗口
driver.quit()
from pyquery import PyQuery as pq
# 加载HTML文档
html = """
Example
Hello, World!
This is a paragraph.
- Item 1
- Item 2
- Item 3
"""
# 解析HTML文档
doc = pq(html)
# 选择元素
title = doc('title').text()
heading = doc('#content h1').text()
paragraph = doc('#content p').text()
items = doc('#content ul li').texts()
# 打印结果
print(title) # Example
print(heading) # Hello, World!
print(paragraph) # This is a paragraph.
print(items) # ['Item 1', 'Item 2', 'Item 3']
Axios 是一个基于 Promise 的 HTTP 客户端,可以在浏览器和 Node.js 中使用。以下是一个简单的 Axios 代码示例:
const axios = require('axios');
axios.get('https://api.example.com/data')
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.log(error);
});
这个示例使用 Axios 发起一个 GET 请求,访问 https://api.example.com/data,并使用 then 方法处理成功响应,使用 catch 方法处理错误。如果请求成功,response.data 将包含响应数据。如果发生错误,error 对象将包含错误信息。 你可以使用 Axios 发起其他类型的 HTTP 请求,例如 POST、PUT 和 DELETE,只需要更改请求方法即可:
axios.post('https://api.example.com/data', {
name: 'John Doe',
email: '[email protected]'
})
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.log(error);
});
这个示例使用 Axios 发起一个 POST 请求,访问 https://api.example.com/data,并将一个包含 name 和 email 属性的对象作为请求主体发送。
from requests_html import HTMLSession
# 创建一个 HTMLSession 实例
session = HTMLSession()
# 使用 get 方法获取一个网页
response = session.get('https://example.com')
# 使用 BeautifulSoup 来解析网页内容
soup = response.html
# 输出页面的标题
print(soup.title)
# 输出所有的段落标签
for p in soup.find_all('p'):
print(p.text)
import asyncio
from pyppeteer import launch
async def main():
# 启动浏览器
browser = await launch()
page = await browser.newPage()
# 打开网页
await page.goto('http://example.com')
# 截图
await page.screenshot({'path': 'example.png'})
# 关闭浏览器
await browser.close()
asyncio.get_event_loop().run_until_complete(main())
以上是一些常用的Python爬虫库及其用法,每个库都有其独特的特点和优势,选择合适的库取决于具体的应用场景和需求。在编写爬虫程序时,还需要注意一些道德和法律规范,以确保我们的爬虫程序不会侵犯他人的隐私和权益。