Skip to content
/ dotting Public

While your python script is doing something in backgrouod use this module to type dots on the screen

Notifications You must be signed in to change notification settings

0rovan/dotting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

dotting

Class Dotter() simply types symbols (dots in default) on screen. This may be used to make clinets aware that some computing is still happening in background. Symbol and delay in miliseconds can be defined at class initalization or set at any time.

##Examples:

from dotting import Dotter
from time import sleep
d=Dotter()
d.start()
sleep(3)
d.stop()
from dotting import Dotter
from time import sleep
d=Dotter(200,',')
d.start()
sleep(2)
d.set(symbol='.')
sleep(3)
d.stop()

About

While your python script is doing something in backgrouod use this module to type dots on the screen

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages