requests-cache / aiohttp-client-cache

An async persistent cache for aiohttp requests
MIT License
122 stars 22 forks source link

Add support for additional request parameter types that `aiohttp` accepts #106

Closed JWCook closed 3 years ago

JWCook commented 3 years ago

Fixes #105. Other improvements:

As a bonus, I saw that yarl.URL.with_query() conveniently does the work of parsing/modifying/unparsing query strings, so I was able to use that instead of the more verbose urllib.parse.urlparse/parse_qsl/urlunparse.