原博文
2020-09-29 21:07 −
### 1.requests模块发送post请求 ```python
#代码示例 编写一个小翻译器 # 导包
import requests
def translate(kw): # 缺定url 发起请求 获取响应 url = 'https://fanyi.baidu.com/sug' ...
0
62
相关推荐
2019-12-05 15:33 −
一、get
1、url格式:http://接口地址?key1=value1&key2=value2
2、get方法,有几个常用的参数:
url:接口的地址
headers:定制请求头(headers),例如:content-type = application/x-www-form-urle...
2019-12-24 21:14 −
python-requests
python-requests
作用:能够模拟浏览器向服务器发送请求的库
requests库的主要方法
方法描述
requests.request()构造一个请求,支持以下各种方法requests.get()获取html的主要方法requests.head(...
0
539
2019-12-18 21:54 −
文档:从 pythoneer 到 pythonista 的100个模块 链接:http://note.youdao.com/noteshare?id=2b95bb3651c21af80ca1936f8ecb1e0f&sub=635CA99241664308947C4F3BC1B5DDBF
...
2019-12-07 22:34 −
使用方法:1.安装
2.请求:两种请求方式(post,get),3种参数方法
# get请求,params传参,传字典格式的数据
requests.get
1 import requests
2 3 4 5 # 构造请求url,字典格式
6 url = url
7 # 如果需...
2019-12-02 17:16 −
headers=self.headers #获取导入模版 file_home = self.import_template log.info(file_home) wb = load_workbook(filename=file_hom...
2019-09-26 17:06 −
一,安装方法 --cmd输入pip install requests 二、发起请求 1.请求方法 import requests resp = requests.get('http://www.baidu.com') 其他参数请求方法post、put等类似 2.传递URL参数 import...
0
175
2019-12-19 01:34 −
import requests import time url = 'http://www.google.com.hk' print(time.strftime('%Y-%m-%d %H:%M:%S'))
try: html = requests.get(url, timeout=5).tex...
2019-12-20 10:53 −
为什么要做接口自动化框架
1、业务与配置的分离
2、数据与程序的分离;数据的变更不影响程序
3、有日志功能,实现无人值守
4、自动发送测试报告
5、不懂编程的测试人员也可以进行测试
正常接口测试的流程是什么?
确定接口测试使用的工具----->配置需要的接口参数----->...
2
5824
2019-12-25 21:44 −
1. Cookie 介绍
HTTP 协议是无状态的。因此,若不借助其他手段,远程的服务器就无法知道以前和客户端做了哪些通信。Cookie 就是「其他手段」之一。 Cookie 一个典型的应用场景,就是用于...