I need:
- Dynamically in-place display some string in terminal while my script is running. Similar to how 'tqdm' package shows progress bar in-place in terminal.
I do NOT need:
- display progress bar
- use huge bloated frameworks to build GUI (Graphical Interfaces), etc.
What I want to see in terminal (example):
Requests per minutes: 15
What is the simplest way to show some text in-place? I am fine to use the 'tqdm' package if it can do what I described.