request-boost icon indicating copy to clipboard operation
request-boost copied to clipboard

A better requests and urllib. A simple package for hitting multiple URLs and performing GET/POST requests in parallel.

Results 4 request-boost issues
Sort by recently updated
recently updated
newest added

Hi `singhsidhukuldeep/request-boost`! This is a one-off automatically generated pull request from LGTM.com :robot:. You might have heard that we’ve integrated LGTM’s underlying CodeQL analysis engine natively into GitHub. The result...

How to use the proxy support: ```python from request_boost import boosted_requests number_of_sample_urls = 2 urls = [ f'https://postman-echo.com/get?random_data={test_no}' for test_no in range(number_of_sample_urls) ] headers = [{'sample_header':test_no} for test_no in range(number_of_sample_urls)]...

Is it possible to support proxies? https://requests.readthedocs.io/en/latest/user/advanced/#proxies

Requests to some urls return binary data which cannot be decoded (eg. image data). In these cases, param `parse_bytes` can be set to `False`.