A simple package to make async task backgrond
Python 3.6 or higher is required
# Windows
pip install git+https://github.com/DwcTeam/tasks.git
# Linux/macOS
pip3 install git+https://github.com/DwcTeam/tasks.git
import tasks
async def printer(text: str):
print(text)
task = tasks.Task(printer, intervel=2)
task.start(text="lol")
if you use my package please give me start 😭😭