8 lines
158 B
Python
8 lines
158 B
Python
|
from printr import EllipsisPrintr
|
||
|
from time import sleep
|
||
|
|
||
|
with EllipsisPrintr('Printing') as p:
|
||
|
for i in range(30):
|
||
|
p.update()
|
||
|
sleep(0.1)
|