Hi guys! I could use some help here. I’m trying to implement concurrency with my Strava API calls such that I can acquire activities on various athletes concurrently instead of one by one. However, despite my best efforts, I think there may be a limitation with the Strava API which does not support asynchronous operations. I tried wrapping the read requests within async.to_thread() but that didn’t seem to work.
Have any of you guys bypassed this Strava limitation to get concurrency working?
Thanks.