Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 231 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 231 Bytes

USAGE

from ora import Ora, Spinner
from colorama import Fore

ora = Ora(spinner=Spinner.DOTS)

# start spinning
ora.spin()

# optional
# ora.color = Fore.CYAN
# ora.text = "loading"


# do stuff here

ora.stop()