About 50 results
Open links in new tab
  1. Get the description of a status code in Python Requests

    Jul 13, 2014 · 61 I would like to be able to enter a server response code and have Requests tell me what the code means. For example, code 200 --> ok I found a link to the source code which shows the …

  2. python - What’s the best way to get an HTTP response code from a …

    Jul 16, 2009 · I’m looking for a quick way to get an HTTP response code from a URL (i.e. 200, 404, etc). I’m not sure which library to use.

  3. python - How to check for "200 OK"? - Stack Overflow

    Jan 8, 2019 · Finally, note that some APIs will return a valid response (200) for errors with information about why the request was bad, while others may respond with a 400-level with additional …

  4. How do I read a response from Python Requests? - Stack Overflow

    Which is often the case with a POST request. Perhaps it set a cookie? The status code is telling you that the POST succeeded after all. Edit for Python 3: Python now handles data types differently. …

  5. Python Requests - Mock status code and response

    Mar 6, 2017 · # code to create ok_response_mock api_client_mock.get.return_value = ok_response_mock This will patch the imported module with a mock, automatically created for you …

  6. python - How to extract the HTTP error text from a requests response ...

    Sep 4, 2018 · When raised with raise_for_status (), e.reason contains a default message that's put there by the requests library, source code for requests. user1898153's answer gets to the actual response …

  7. python - How to tell if you're getting a success message ... - Stack ...

    My question is closely related to How to tell if you're getting a 404. I'm using the Requests library to hit an HTTP endpoint. I want to check if the response is a success. I am currently doing...

  8. python - Why do requests return "None"? - Stack Overflow

    Jul 25, 2015 · 4 You are not returning the result from the recursive calls to get() function. You need to return the result from the recursive calls to get() function , Example -

  9. How can I mock requests and the response? - Stack Overflow

    I am trying to use Pythons mock package to mock Pythons requests module. What are the basic calls to get me working in below scenario? In my views.py, I have a function that makes variety of reque...

  10. Timeout for Python requests.get() entire response - Stack Overflow

    Feb 23, 2014 · The problem of total timeout is not related directly to python-requests but to httplib (used by requests for Python 2.7). The package passes everything related to timeout directly to httplib.