记录常用的爬虫代码段(长期更新)
判断文件路径不存在创建文件路径
if not osp.exists(path): os.makedirs(path)
去除字符串非法字符,防止创建文件夹报错
#去掉非法字符 pitow = re.sub('[\/:*?"<>|]','-',name)
本文来自博客园,作者:脆,转载请注明原文链接:https://www.cnblogs.com/Wei-notes/p/17334516.html
判断文件路径不存在创建文件路径
if not osp.exists(path): os.makedirs(path)
去除字符串非法字符,防止创建文件夹报错
#去掉非法字符 pitow = re.sub('[\/:*?"<>|]','-',name)
本文来自博客园,作者:脆,转载请注明原文链接:https://www.cnblogs.com/Wei-notes/p/17334516.html