my first project on pypi
Project description
Example1
from coolwait import pelangi
pelangi("Please wait...",delay=5,tab=2)
print("hello world")
Example2
import coolwait
from threading import Thread
from coolwait import pelangi
t=Thread(target=pelangi, args=("LOADING...",delay=None,tab=2))
t.start()
def do_something():
import requests
req=requests.get("https://google.com")
coolwait.stop=True
return req.text
run=do_something()
t.join()
print(run)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
coolwait-0.5.tar.gz
(2.3 kB
view hashes)