Metadata-Version: 2.1
Name: requests-custom
Version: 0.0.5
Summary: Python's requests with custom configuration
Home-page: UNKNOWN
Author: Carlos A Molina
License: UNKNOWN
Project-URL: Documentation, https://requests-custom.readthedocs.io
Project-URL: Source, https://github.com/carlosamolina/requests_custom
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.23.0)
Requires-Dist: requests-toolbelt (>=0.9.1)

Package to work with custom requests capabilities.

Current capabilities available:

- Custom timeout for all requests.
- Raise exception with certain HTTP status code responses.
- Retry on failure.

## Installation

~~~
pip install requests_custom
~~~

Pypi link: https://pypi.org/project/requests-custom/

## How to use

~~~
from requests_custom import requests_custom
requests = requests_custom.RequestsCustom(debug_full=True).get_requests()
requests.get('https://duckduckgo.com')
~~~

## Documentation

https://requests-custom.readthedocs.io/en/latest/

At the previous link you can see the references of this project.



