In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
Requests is the class library for interface testing of python.
I. installation
You can install it by using pip install requests directly.
Send a get request
The return of response contains body, cookies, status, headers and other information. After getting the response, you can get the information of body through text,content and other methods, and the key information can be obtained through cookies, encoding, status_code and other attributes. Thus these return values are used for assertion judgment.
# coding:utf-8import requestsimport jsonimport unittest.test.test_assertionsclass TestV3 (unittest.TestCase): def test_get (self): host = "https://ruby-china.org" path =" / api/v3/topics?limit=1 "url = host + path headers = {" Content-Type ":" Application/json "," User-Agent ":" Chrome "} response = requests.get (url Headers = headers) # p text = json.loads (response.text) content = json.loads (response.content) apparent_encoding = response.apparent_encoding links = response.links redirect = response.is_permanent_redirect is_redirect = response.is_redirect next = response.next ok = response.ok # f header = response.headers url = response.url Status_code = response.status_code reason = response.reason request = response.request raw = response.raw encoding = response.encoding cookies = response.cookies # print ('text:' Text) # print ('content:',content) # print (' header:',header) # print ('url:',url) # print (' redirect:',redirect) # print ('status_code:',status_code) # print (' reason:',reason) # print ('request:',request) # print (' raw:',raw) # print ('encoding:') Encoding) # print ('apparent_encoding:',apparent_encoding) # print (' links:',links) # print ('cookies:',cookies) # print (' is_redirect:',is_redirect) # print ('next:',next) # print (' ok:',ok) self.assertEqual (status_code, 200) self.assertEqual (redirect, False) self.assertEqual (encoding 'utf-8') if _ _ name__ = =' _ main__': unittest.main ()
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.