关于python:豆瓣电影TOP250爬虫及可视化分析笔记

3次阅读

共计 2045 个字符,预计需要花费 6 分钟才能阅读完成。

“””
– coding: utf-8 –
@Time : 2021/11/7 下午 4:25
@Author : SunGuoqi
@Website : https://sunguoqi.com
@Github: https://github.com/sun0225SUN
“””
import re
import time
import requests
from bs4 import BeautifulSoup
import pandas as pd

数据寄存在列表里

datas = []

遍历十页数据

for k in range(10):

print("正在抓取第 {} 页数据...".format(k + 1))
url = 'https://movie.douban.com/top250?start=' + str(k * 25)
headers = {'User-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36'
}
r = requests.get(url, headers=headers)
soup = BeautifulSoup(r.text, 'lxml')
# 查找电影链接
lists = soup.find_all('div', {'class': 'hd'})
# 遍历每条电影链接
for item in lists:
    href = item.a['href']
    # 劳动一下,避免被封
    time.sleep(0.5)
    # 申请每条电影,取得详细信息
    response = requests.get(href, headers=headers)
    # 把获取好的电影数据打包成 BeautifulSoup 对象
    movie_soup = BeautifulSoup(response.text, 'lxml')
    # 解析每条电影数据
    # 片名
    name = movie_soup.find('span', {'property': 'v:itemreviewed'}).text.split(' ')[0]
    # 上映年份
    year = movie_soup.find('span', {'class': 'year'}).text.replace('(', '').replace(')','')
    # 评分
    score = movie_soup.find('strong', {'property': 'v:average'}).text
    # 评估人数
    votes = movie_soup.find('span', {'property': 'v:votes'}).text
    infos = movie_soup.find('div', {'id': 'info'}).text.split('\n')[1:11]
    # infos 返回的是一个列表,[贝宝](https://www.gendan5.com/wallet/PayPal.html)咱们只须要索引提取就好了
    # 导演
    director = infos[0].split(':')[1]
    # 编剧
    scriptwriter = infos[1].split(':')[1]
    # 主演
    actor = infos[2].split(':')[1]
    # 类型
    filmtype = infos[3].split(':')[1]
    # 国家 / 地区
    area = infos[4].split(':')[1]
    # 数据荡涤一下
    if '.' in area:
        area = infos[5].split(':')[1].split('/')[0]
        # 语言
        language = infos[6].split(':')[1].split('/')[0]
    else:
        area = infos[4].split(':')[1].split('/')[0]
        # 语言
        language = infos[5].split(':')[1].split('/')[0]
    if '大陆' in area or '香港' in area or '台湾' in area:
        area = '中国'
    if '戛纳' in area:
        area = '法国'
    # 时长
    times0 = movie_soup.find(attrs={'property': 'v:runtime'}).text
    times = re.findall('\d+', times0)[0]
    # 将数据写入列表
    datas.append({
        '片名': name,
        '上映年份': year,
        '评分': score,
        '评估人数': votes,
        '导演': director,
        '编剧': scriptwriter,
        '主演': actor,
        '类型': filmtype,
        '国家 / 地区': area,
        '语言': language,
        '时长(分钟)': times
    })
    print("电影《{0}》已爬取实现...".format(name))

写入到文件

df = pd.DataFrame(datas)
df.to_csv(“top250.csv”, index=False, header=True, encoding=’utf_8_sig’)

正文完
 0