Search code examples
pythonasynchronouscache-control

Is there some caching lib for aiohttp like CacheControl for requests? [Python]


I used CacheControl together with python requests library. It automatically parses cache-control header and use it to configure cache. Now I need to rewrite whole module to make it asynchronous, but can't find anything similar for aiohttp. I've found this one aiohttp-cache, but it serves for a different purposes. Could anyone help me, please?


Solution

  • Since no answers and no libraries found, I can introduce my own library - https://github.com/MasterSergius/acachecontrol v 0.3.0 available at the moment, try it if you need.