Answers
搞明白了……
s = requests.Session() s.auth = ('user', 'pass')
s.headers.update({'x-test': 'true'}) #会话层参数
s.get(' http://httpbin.org/headers ', headers={'x-test2': 'true'}) #方法层参数
本須和茉莉
answered 10 years, 4 months ago
搞明白了……
s = requests.Session() s.auth = ('user', 'pass')
s.headers.update({'x-test': 'true'}) #会话层参数
s.get(' http://httpbin.org/headers ', headers={'x-test2': 'true'}) #方法层参数