最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

爬蟲python案例

2023-02-22 18:30 作者:四季養(yǎng)花  | 我要投稿

import requests

from bs4 import BeautifulSoup

import csv


# 定義函數(shù)來獲取名人名言

def get_quotes(url):

? ? # 發(fā)送請(qǐng)求并獲取網(wǎng)頁內(nèi)容

? ? response = requests.get(url)

? ? html = response.text


? ? # 使用 BeautifulSoup 解析網(wǎng)頁內(nèi)容

? ? soup = BeautifulSoup(html, 'html.parser')

? ? quotes = soup.select('.quote')


? ? # 提取名人名言并將它們保存到列表中

? ? results = []

? ? for quote in quotes:

? ? ? ? text = quote.select_one('.text').text

? ? ? ? author = quote.select_one('.author').text

? ? ? ? results.append({'text': text, 'author': author})

? ??

? ? return results


# 定義函數(shù)來保存名人名言到 CSV 文件中

def save_quotes(quotes, filename):

? ? with open(filename, 'w', newline='') as file:

? ? ? ? writer = csv.writer(file)

? ? ? ? writer.writerow(['text', 'author'])

? ? ? ? for quote in quotes:

? ? ? ? ? ? writer.writerow([quote['text'], quote['author']])


# 調(diào)用函數(shù)獲取名人名言并保存到 CSV 文件中

url = 'https://quotes.toscrape.com/'

quotes = get_quotes(url)

save_quotes(quotes, 'quotes.csv')


爬蟲python案例的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國家法律
新乡市| 东安县| 平阴县| 德昌县| 永德县| 松滋市| 和林格尔县| 霍山县| 洪泽县| 邯郸县| 南川市| 镇巴县| 岗巴县| 栾川县| 玛纳斯县| 通渭县| 六盘水市| 巴林左旗| 海盐县| 宿松县| 武功县| 龙口市| 资中县| 平罗县| 武安市| 洱源县| 柯坪县| 开原市| 南汇区| 太湖县| 应城市| 东乌珠穆沁旗| 二手房| 乌拉特前旗| 壤塘县| 平阳县| 吉安市| 顺昌县| 衡水市| 沙雅县| 明溪县|