plotski
plotski
I think I have the same issue on Debian. Would it be possible to add an option that disables `keyring` usage altogether and simply prompts for user/password every time I...
Is #4493 a duplicate of this issue? (Found this after commenting over there.) I've tried fixing my issue at https://github.com/aio-libs/aiohttp/blob/master/aiohttp/cookiejar.py#L48 like this: ```python DATE_YEAR_RE = re.compile(r"-?(\d{2,4})") ``` But that didn't...
I think I'm running into the same issue. Here's some demo code: ```python import asyncio async def main(): import requests session = requests.Session() response = session.get('https://imgbox.com/') print('requests headers:', response.headers) print('requests...