标签:sts user ams orm col ESS encode style basic
1. get
import requests # 最简单的get请求 r = requests.get(url) print(r.status_code) print(r.json()) # url 中?key=value&key=value r = requests.get(url, params=params) # form 表单 params = {"username":"name", "password":"passw0rd"} headers = {‘Content-Type‘:‘application/x-www-form-urlencoded‘} r = requests.get(url, params=params, headers=headers) # 下载 r = requests.get(url) r.raise_for_status() with open(target, ‘wb‘) as f: for ch in r.iter_content(10000): result_file_size += f.write(ch)
2. post请求
data = {‘name‘:‘train‘, ‘device‘:‘CN0989‘} r = requests.post(url, json=data) #上传 files = { "file": (os.path.basename(filepath), open(filepath, "rb"), "application/zip") } print(‘POST %s‘%url) with open(filepath, ‘rb‘) as f: r = requests.post(url, files=files)
3. 登录
_session = requests.Session() # login url = ‘%s/login‘%_basic_url params = {"username":"admin", "password":"admin"} headers = {‘Content-Type‘:‘application/x-www-form-urlencoded‘} r = _session.post(url, params=params, headers=headers) #做其他请求 r = _session.get(url) _session.close()
标签:sts user ams orm col ESS encode style basic
原文地址:https://www.cnblogs.com/snow-backup/p/11765578.html