【Python】Python爬虫爬取豆瓣电影top榜单
相关视频——Python爬虫编程基础5天速成(2021全新合集)Python入门+数据分析
找到一个div,在div里面翻找你要的内容。
# -*- coding: utf-8 -*-
from bs4 import BeautifulSoup #网页解析
import re #正则表达式,进行文字匹配
import urllib.request,urllib.error #制定URL,获取网页数据
#正则表达式
#影片详情链接
findLink = re.compile(r'') #创建正则表达式对象,表示规则(字符串的模式)
#影片片名
findImgSrc = re.compile(r'
共有 0 条评论