|
|
|
|
|
by thitami
74 days ago
|
|
Nice work — the Rich-based CLI with real-time updates without spamming console history is a good pattern. I used a similar approach in a CLI I built recently (Typer + Rich) and the Live context manager in Rich is underrated for exactly this kind of use case.
One thing I'd be curious about: how are you handling the FastAPI stream engine under load? Concurrent test runs from multiple clients hitting the same backend could skew results if the server itself becomes a bottleneck. Did you consider running the payload tests client-side only? |
|