css 和js基础
2021-02-02 02:14
标签:基础 cat session 不用 version encode res ati 变量 类库安装路径:python36/lib/site-package/requests header需要加的 1. url-encode 2. json 3. xml 4.html #3 form requets库下载实现 css 和js基础 标签:基础 cat session 不用 version encode res ati 变量 原文地址:https://www.cnblogs.com/qd1228/p/13174506.html
5、file 不要加
# host = ‘http://ws.webxml.com.cn‘
# headers = {"Content-Type": "application/x-www-form-urlencoded"}
# r = requests.post(url=host + ‘/WebServices/WeatherWS.asmx/getSupportCityString‘,
# headers=headers, data={"theRegionCode": 311101})
# print(r.text)
#4 xml java .net
# host = ‘http://ws.webxml.com.cn‘
# headers = {"Content-Type": "text/xml; charset=utf-8", "SOAPAction": "http://WebXml.com.cn/getSupportCityString"}
# xml = ‘‘‘
#
#
#
#
#
#
#
#
# r = requests.post(url=host + ‘/WebServices/WeatherWS.asmx‘,
# headers=headers, data=xml)
# print(r.text)
#5 json data=json字符串 如果不用引号需要先转成字符串, json=字典
headers = {"Content-Type": "application/json; charset=utf-8"}
r = requests.post(url=‘http://139.199.132.220:8000/event/weather/getWeather/‘, headers=headers,
data=‘{"theCityCode": 1}‘)
r2 = requests.post(url=‘http://139.199.132.220:8000/event/weather/getWeather/‘, headers=headers,
json={"theCityCode": 1})
print(r.text)
print(r2.text)import requests
header ={‘Cookie‘: ‘uid=1; token=44c972f05d76fdd93c31f9c2b65bb098f308cdfc‘}
url =‘http://118.24.91.97:9000/api/export/?month=1&city=110000‘
res = requests.get(url=url,headers=header)
#res.raw
with open(‘./result.csv‘, ‘wb‘) as fd:
for text in res.iter_content(1024):
fd.write(text)
requests库 session的使用:
系统环境变量path种配置allure
allure --version