Mikael Koli

Results 28 comments of Mikael Koli

Actually, the task is running on a separate process by default. That has quite a lot of overhead and that's something that everyone suffers from who is using multiprocessing as...

There is also one more alternative by passing the image as dict: ```python from pathlib import Path email.send( receivers=[...], subject="Example", html=''' Image (PNG): {{ dict_image }} ''', body_images={ 'dict_image': {...

Do you mean that you would like to get the attachments of an email that could be sent by Red Mail? Red Mail operates on SMTP which, unfortunately, cannot read...

Thanks for reporting this! Indeed, it seems the method was forgotten to be implemented. Cannot remember what I though when I wrote that piece of docs. Rocketry simply extends the...

Ye, it seems I meant to merge this to master before creating the latest version: https://github.com/Miksus/rocketry/pull/88 It seems I forgot (and still have some timezone issues with the new tests...

Sorry been a bit busy. I'll check this next weekend at the latest. Thanks again for cleaning the project! This is well appreciated.

Sorry for taking eternity with this, got distracted with learning about event-driven design (in order to make Rocketry to support its patterns). I'll try to merge this today evening.

Thanks again for the PR! Looks indeed good and especially the tests previously had some really odd patterns.

Thanks! It's always nice to hear people like it! This actually should be supported (considering the complexity of your project) and I have seen Rocketry is fast enough that [I...

Replying to myself: > Interestingly, async does not work if cycle_sleep=None, need to investigate that. Ye... of course. If that's ``None``, the sleep is skipped altogether and it never releases...