requests-guard is a small library that allows you to impose size and time limits on your HTTP requests.
Project description
===============================
Requests Guard
===============================
.. image:: https://img.shields.io/travis/skorokithakis/requests-guard.svg
:target: https://travis-ci.org/skorokithakis/requests-guard
.. image:: https://img.shields.io/pypi/v/requests-guard.svg
:target: https://pypi.python.org/pypi/requests-guard
.. image:: https://readthedocs.org/projects/requests-guard/badge/?version=latest
:target: https://readthedocs.org/projects/requests-guard/?badge=latest
:alt: Documentation Status
requests-guard is a small library that allows you to impose size and time limits on your HTTP requests.
* Free software: BSD license
* Documentation: https://requests-guard.readthedocs.org.
Features
--------
* Timeout limits
* Size limits
* Much more!
Installation
------------
Just use `pip` to install it:
```
pip install requests-guard
```
and you're done.
Usage
-----
```
import requests
from requests_guard import guard
r = requests.get("https://www.google.com/", stream=True, timeout=30)
content = guard(r, max_size=3000, timeout=10)
```
`requests-guard` will raise a `ValueError` if it receives more than `max_size` data in total, or if the *entire*
request takes more than `timeout` seconds to be completed. That means that the call will always return after (roughly,
see below for details) `timeout` seconds.
*Note:* You *must* call requests in the manner above, with `stream=True` and `timeout`. `stream=True` allows the size
and time limits to be set, and the `timeout` parameter to `requests` instructs it to close the connection if no data
has been received for that number of seconds.
*Note:* `requests-guard` works by looking at the data as it receives it, so the `timeout` parameter to `requests-guard`
will apply to the *entire* connection, not just the latest chunk. The `timeout` parameter to `requests` means "quit if
we haven't received any data for that long", which means that a response may take an arbitrary amount of time, as long
as it always returns *something* every `timeout` seconds. This means that a request may potentially take up to the sum
of the timeout specified to `requests` and to `requests-guard`, if the server stops replying completely just before
the timeout in `requests-guard` elapses.
History
-------
0.1.0 (2015-03-04)
---------------------
* First release on PyPI.
Requests Guard
===============================
.. image:: https://img.shields.io/travis/skorokithakis/requests-guard.svg
:target: https://travis-ci.org/skorokithakis/requests-guard
.. image:: https://img.shields.io/pypi/v/requests-guard.svg
:target: https://pypi.python.org/pypi/requests-guard
.. image:: https://readthedocs.org/projects/requests-guard/badge/?version=latest
:target: https://readthedocs.org/projects/requests-guard/?badge=latest
:alt: Documentation Status
requests-guard is a small library that allows you to impose size and time limits on your HTTP requests.
* Free software: BSD license
* Documentation: https://requests-guard.readthedocs.org.
Features
--------
* Timeout limits
* Size limits
* Much more!
Installation
------------
Just use `pip` to install it:
```
pip install requests-guard
```
and you're done.
Usage
-----
```
import requests
from requests_guard import guard
r = requests.get("https://www.google.com/", stream=True, timeout=30)
content = guard(r, max_size=3000, timeout=10)
```
`requests-guard` will raise a `ValueError` if it receives more than `max_size` data in total, or if the *entire*
request takes more than `timeout` seconds to be completed. That means that the call will always return after (roughly,
see below for details) `timeout` seconds.
*Note:* You *must* call requests in the manner above, with `stream=True` and `timeout`. `stream=True` allows the size
and time limits to be set, and the `timeout` parameter to `requests` instructs it to close the connection if no data
has been received for that number of seconds.
*Note:* `requests-guard` works by looking at the data as it receives it, so the `timeout` parameter to `requests-guard`
will apply to the *entire* connection, not just the latest chunk. The `timeout` parameter to `requests` means "quit if
we haven't received any data for that long", which means that a response may take an arbitrary amount of time, as long
as it always returns *something* every `timeout` seconds. This means that a request may potentially take up to the sum
of the timeout specified to `requests` and to `requests-guard`, if the server stops replying completely just before
the timeout in `requests-guard` elapses.
History
-------
0.1.0 (2015-03-04)
---------------------
* First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
requests-guard-0.1.0.tar.gz
(5.5 kB
view details)
Built Distribution
File details
Details for the file requests-guard-0.1.0.tar.gz
.
File metadata
- Download URL: requests-guard-0.1.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1076f985a68e918aae9e438848297ed959a825f23a29f5f7a05b5b58afee13be |
|
MD5 | d2a60d51fc11ec0a74c55a774da1f5de |
|
BLAKE2b-256 | 9a88b4ea639af03416659dc340c813cd204bcd608e94b0bf7a2c750499c9c60f |
File details
Details for the file requests_guard-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: requests_guard-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab2854402af57bf7a116c610e0facce56a67828224e955426bae8e7b5c400171 |
|
MD5 | 52112ab265cb12d8b7bacf57a11d6d89 |
|
BLAKE2b-256 | 74152a097a38e8c61bcce777649fd289ade8f07ef6749777369fd620a3c1f09b |