requests模块
Posted zhouxudong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requests模块相关的知识,希望对你有一定的参考价值。
import requests
#普通的get请求
data={‘stu_name‘:‘小黑‘} url=‘http://相关的ip/api/user/stu_info‘ res=requests.get(url=url,params=data).text print(res)
#post请求
url1=‘http://相关的ip/api/user/login‘ data1={‘username‘:‘niuhanyang‘,‘passwd‘:‘aA123456‘} res=requests.post(url=url1,data=data1).text print(res)
#数据为json的post请求
url2=‘http://相关的ip/api/user/add_stu‘ data2= { "name":"花花猫", "grade":"双子座", "phone":13010111234, "sex":"男", "age":28, "addr":"江苏省苏州市北海大道32号" } res=requests.post(url2,json=data2).text print(res)
#上传文件的post请求
url3=‘http://相关的ip/api/file/file_upload‘ files={‘file‘:open(‘stu.json‘,‘rb‘)} res=requests.post(url3,files=files).content.decode() print(res) print(‘----------------以下为所有学生信息--------------- ‘)
#加入header的get请求
url4=‘http://相关的ip/api/user/all_stu‘ header={‘Referer‘:‘http://api.nnzhp.cn/‘} res=requests.get(url=url4,headers=header).text print(res)
以上是关于requests模块的主要内容,如果未能解决你的问题,请参考以下文章
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段