KeiruaProd

I help my clients acquire new users and make more money with their web businesses. I have ten years of experience with SaaS projects. If that’s something you need help with, we should get in touch!
< Back to article list

simple python progressbar

For simple scripts, you may not need to import the excellent tqdm. The \r + end with print may do the trick:

i  = 1
while True:
    print(f"\r{i}", end="")
    i += 1