English 中文(简体)
Requests - Working with Errors
  • 时间:2024-11-03

Requests - Working with Errors


Previous Page Next Page  

This chapter will discuss how to deal with errors coming down when working with the Http request pbrary. It is always a good practice to have errors managed for all possible cases.

Error Exception

The requests module gives the following types of error exception −

ConnectionError − This will be raised, if there is any connection error. For example, the network failed, DNS error so the Request pbrary will raise ConnectionError exception.

Response.raise_for_status() − Based on status code i.e. 401, 404 it will raise HTTPError for the url requested.

HTTPError − This error will be raised for an invapd response coming down for the request made.

Timeout − Errors raised for a timeout for the URL requested.

TooManyRedirects − If the pmit is crossed for maximum redirections than it will raise TooManyRedirects error.

Example

Here is an example of errors shown for timeout −


import requests
getdata = 
requests.get( https://jsonplaceholder.typicode.com/users ,timeout=0.001)
print(getdata.text)  

Output


raise ConnectTimeout(e, request=request)
requests.exceptions.ConnectTimeout:
HTTPSConnectionPool(host= jsonplaceholder.ty
picode.com , port=443): Max retries exceeded with url: /users (Caused
by Connect
TimeoutError(<urlpb3.connection.VerifiedHTTPSConnection object at
0x000000B02AD
E76A0>,  Connection to jsonplaceholder.typicode.com timed out. (connect 
timeout = 0.001) ))   
Advertisements