Metadata-Version: 2.1
Name: flake8-requests
Version: 0.1.3
Summary: r2c checks for requests
Home-page: https://r2c.dev
Author: R2C
Author-email: hello@returntocorp.com
Requires-Python: >=3.7,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: flake8 (>=3.7.9,<4.0.0)
Requires-Dist: pytest (>=5.3.0,<6.0.0)
Description-Content-Type: text/markdown


# flake8-requests

flake8-requests is a plugin for flake8 with checks specifically for the [request](https://pypi.org/project/requests/) framework.

## Installation

```
pip install flake8-requests
```

Validate the install using `--version`. flake8-requests adds two plugins, but this will be consolidated in a very near-future version. :)

```
> flake8 --version
3.7.9 (mccabe: 0.6.1, pycodestyle: 2.5.0, pyflakes: 2.1.1, flake8-requests)
```

## List of warnings
- R2C701="flake8_requests.no_auth_over_http:NoAuthOverHttp"
- R2C702="flake8_requests.use_timeout:UseTimeout"
- R2C703="flake8_requests.use_scheme:UseScheme"

