Metadata-Version: 2.1
Name: restsession
Version: 0.0.8
Summary: RESTful API-friendly implementation of the 'requests' library
Author-email: Palmer Sample <palmer@palmersample.net>
Project-URL: Homepage, https://github.com/palmersample/restsession
Project-URL: Bug Tracker, https://github.com/palmersample/restsession/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic==2.6.1
Requires-Dist: requests==2.31.0
Requires-Dist: urllib3==2.2.0

# restsession
HTTP Session package for RESTful API consumption

## Resolved: `requests` has limited retry support.
 
The base `requests` library will perform retries in some circumstances, but testing indicates that the retries will only be attempted if a `Retry-After` header is present in the response. Adding the

## Resolved: Non-standard Authorization headers not removed on cross-domain redirect

