module 'urllib' has no attribute 'request'
时间: 2023-04-15 13:01:22 浏览: 283
使用urllib,request爬取ajax动态页面信息(爬取响应json文件)
urllib 模块是 Python 标准库中的一部分, 主要用于处理网络请求。如果你在使用 urllib 模块时遇到 "module urllib has no attribute request" 的错误, 这可能是因为你正在使用 Python 2 版本, 在 Python 2 中, urllib 模块是被拆分成了三个模块: urllib, urllib2 和 urllib3. 你需要检查你的代码, 确保你使用了正确的模块, 例如在 Python 2 中使用 urllib2.request 或在 Python 3 中使用 urllib.request。
阅读全文