2020年11月9日

python爬虫学习:网页采集器、豆瓣电影爬取、百度翻译

摘要: 一、百度翻译 import requests import json if __name__ == '__main__': word = input('enter a word:') url = 'https://fanyi.baidu.com/sug' headers = { 'User-Agen 阅读全文

posted @ 2020-11-09 23:54 沫戏回首 阅读(229) 评论(0) 推荐(0) 编辑

入门爬虫-requests模块

摘要: requests模块:python原生的一款基于网络请求的模块,功能非常强大,简单便捷,效率极高, 作用:模拟浏览器发送请求。 需要在你的应用程序中导入该模块,首先安装。 搜索requests 然后点击下面的install即可,在项目中就可用通过,import requests引用 requests 阅读全文

posted @ 2020-11-09 23:47 沫戏回首 阅读(65) 评论(0) 推荐(0) 编辑

导航