css 和js基础

2021-02-02 02:14

阅读:751

标签:基础   cat   session   不用   version   encode   res   ati   变量   

类库安装路径:python36/lib/site-package/requests

header需要加的

1. url-encode   2. json  3. xml  4.html


5、file 不要加

 

#3 form
# 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 = ‘‘‘
http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="技术图片http://www.w3.org/2001/XMLSchema" xmlns:soap="技术图片http://schemas.xmlsoap.org/soap/envelope/">
#   
#     http://WebXml.com.cn/">
#       311101
#     

#   
‘‘‘
#
# 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)

 

requets库下载实现

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

css 和js基础

标签:基础   cat   session   不用   version   encode   res   ati   变量   

原文地址:https://www.cnblogs.com/qd1228/p/13174506.html

上一篇:CSS3

下一篇:HTML-1


评论


亲,登录后才可以留言!