翼度科技»论坛 编程开发 python 查看内容

通过模仿学会Python爬虫(一):零基础上手

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
好家伙,爬虫来了
 
爬虫,这玩意,不会怎么办,
诶,先抄一份作业回来
1.别人的爬虫

 Python爬虫史上超详细讲解(零基础入门,老年人都看的懂)_ChenBinBini的博客-CSDN博客
[code]<strong># -*- codeing = utf-8 -*-from bs4 import BeautifulSoup  # 网页解析,获取数据import re  # 正则表达式,进行文字匹配`import urllib.request, urllib.error  # 制定URL,获取网页数据import xlwt  # 进行excel操作#import sqlite3  # 进行SQLite数据库操作findLink = re.compile(r'<a target="_blank" href="https://www.cnblogs.com/(.*?)">')  # 创建正则表达式对象,标售规则   影片详情链接的规则findImgSrc = re.compile(r'

举报 回复 使用道具