|
好家伙,爬虫来了
爬虫,这玩意,不会怎么办,
诶,先抄一份作业回来
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' |
|