Python爬虫笔记(一)——requests、re、BeautifulSoup库1、requests库2.with open(……) as ……3.re4.BeautifulSoup5.反爬机制和频繁请求 参考资料
目录1、requests库1.1 导入requests1.2获取某个网页1.3输出文件内容2.with open(……) as ……2.1打开文件open()2.2读取文件read()2.3关闭文件close()2.4try……finally……2.5with语句3.re3.1导入re库3.2re.findall()4.Beautiful...