dbader / schedule

Python job scheduling for humans.
https://schedule.readthedocs.io/
MIT License
11.73k stars 959 forks source link

Running Asyncs #524

Closed Rajdave69 closed 2 years ago

Rajdave69 commented 2 years ago

How do I run Asyncs with this module? code - schedule.every().saturday.at("15:55").do(await reminder("Saturday", "test", "3"))

self.job_func = functools.partial(job_func, *args, **kwargs) TypeError: the first argument must be callable

This is my error. I've tried multiple things but nothing works.

JamesAib commented 2 years ago

im having the same error no documentation or explanation seems to help

SijmenHuizenga commented 2 years ago

Async jobs are not yet supported.

JamesAib commented 2 years ago

I actually managed to make it use normal def ty anyway