Results 17 comments of mnn
trafficstars

I have updated my code to call `download_f107_ap` when required. Thanks for helping with this

> @mananapr, are you interested in opening a new PR(s) for some of those suggestions? I think there are some valid requests here, so I think we should reopen this...

Hi @greglucas - I've opened a PR to address the issues discussed. Let me know what you think

Actually I was previously using the `requests` library, and everything was functioning well. However, after transitioning the same code to `aiohttp`, I noticed that the authentication header was getting dropped...

> > Actually I was previously using the `requests` library, and everything was functioning well. However, after transitioning the same code to `aiohttp`, I noticed that the authentication header was...

I wrote a small script to test this issue - ```python3 import aiohttp import asyncio base_url = "https://pocketbase.url/api" auth_endpoint = f"{base_url}/collections/users/auth-with-password" data_endpoint = f"{base_url}/collections/users/records" username = "pocketbase-user" password = "pocketbase-pass"...