8 lines
166 B
Python
8 lines
166 B
Python
from main import sending_file_progress
|
|
from time import sleep
|
|
|
|
|
|
|
|
for x in range(1,100):
|
|
sending_file_progress(filename=b"file", size=100, sent=x)
|
|
sleep(0.05) |