How to batch API calls in Python without event loop blocking?
Question
Asked4 days ago
Viewed390 times
15
I'm working on **Python** and need to batch API calls. I've tried a simple cache layer, but I'm still seeing event loop blocking.
Context:
- Dataset size: small startup
- Expected output: p95 < 200ms
- Current behavior: timeouts under load
What would be a clean approach here, and what should I watch out for?