Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 219 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 219 Bytes

uke

Make background task in Python easier again!

Usage

import uke
import time

@uke.job
def run():
    # Do awesome things here in the background
    time.sleep(5)

for i in range(100):
    run()