crython
crython copied to clipboard
crython is not working
You need to provide more details here. I personally struggled to get started because my job was raising an Exception that was being swallowed:
import crython
@crython.job(expr='@reboot')
def exceptional_job():
try:
assert False, 'would be swallowed without the try/catch'
except Exception as e:
print(e)
raise e
crython.start()
crython.join()