文章目录
- python的xpath插件需要的库下载出现问题
- 懒加载
- python 爬取图片,网址都正确但是下不下来的原因:爬取下来的文字包含Windows不能识别的特殊字符
- selenium的find_element_by_id()出现的问题
- 爬虫信息写入mysql时的1045号错误
python的xpath插件需要的库下载出现问题
ERROR: Could not find a version that satisfies the requirement XXXXX (from versions: none)问题解决
办法
懒加载
爬虫编写时由于网页资源过多,就会存在只会将浏览过的图片才让获取就是懒加载问题.
知识点了解
使用data-original而不采用src
python 爬取图片,网址都正确但是下不下来的原因:爬取下来的文字包含Windows不能识别的特殊字符
line 257, in urlretrieve tfp = open(filename, ‘wb‘)OSError: [Errno 22] Invalid argument:
解决办法
selenium的find_element_by_id()出现的问题
AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_id‘
解决办法
爬虫信息写入mysql时的1045号错误
pymysql.err.OperationalError:
(1045, “Access denied for user ‘root’@‘localhost’ (using password: YES)”)
方案