Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add requests timeout and error handling #7

Open
edudppaz opened this issue Aug 3, 2020 · 0 comments
Open

Add requests timeout and error handling #7

edudppaz opened this issue Aug 3, 2020 · 0 comments

Comments

@edudppaz
Copy link
Owner

edudppaz commented Aug 3, 2020

From documentation:

Timeout:

>>> http.request(
...     'GET', 'http://httpbin.org/delay/3', timeout=4.0)
<urllib3.response.HTTPResponse>
>>> http.request(
...     'GET', 'http://httpbin.org/delay/3', timeout=2.5)
MaxRetryError caused by ReadTimeoutError

Retries:

>>> http.requests('GET', 'http://httpbin.org/ip', retries=10)
Error Handling:

>>> try:
...     http.request('GET', 'nx.example.com', retries=False)
>>> except urllib3.exceptions.NewConnectionError:
...     print('Connection failed.')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant