Metadata-Version: 2.1
Name: assert-headers
Version: 0.1.0
Summary: Assert HTTP headers.
Home-page: https://github.com/djragsdale/assert-headers-python
License: MIT
Keywords: http,https,headers,assert
Author: David Ragsdale
Author-email: pkgsupport@davidjragsdale.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.25.1,<3.0.0)
Project-URL: Repository, https://github.com/djragsdale/assert-headers-python
Description-Content-Type: text/markdown

# assert-headers-python
Assert HTTP headers

## Contributing

```bash
# 1. Install Poetry
# 2. Install dependencies
poetry install
# 3. Start contained environment
poetry shell
# 3 (alternate). Run virtualenv inside current shell
# source ./venv/bin/activate
# 3. Make changes
# 4. Run tests
poetry run pytest
```

If installing additional dependencies:

```bash
# Inside Poetry shell or virtualenv/venv
poetry add 
```

For more information, refer to https://python-poetry.org/docs/basic-usage/.

