1 Star 3 Fork 1

Actoress/Python简单爬虫-多网图书比价

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
user_requests.py 427 Bytes
一键复制 编辑 原始数据 按行查看 历史
Actoress 提交于 2018-11-26 11:40 . finish 1.0
"""
requests模拟请求
"""
import requests
def get_book():
URL = "http://search.dangdang.com/"
# 发起 get 请求
res = requests.get(URL, params={
'key': '9787550272095',
'act': 'input'
})
print(res.text) # 以文本的类型,打印内容
print(res.status_code) # 打印请求状态码
print(res.encoding) # 文件编码模式
if __name__ == '__main__':
get_book()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Actoress/practical_python_tools.git
git@gitee.com:Actoress/practical_python_tools.git
Actoress
practical_python_tools
Python简单爬虫-多网图书比价
master

搜索帮助