Faulander
Faulander
https://schedule.readthedocs.io/en/stable/examples.html#run-a-job-once so i would do the following: - Run the job every day at 22:30 - inside the called function check if the date is the correct one - if...
I do schedule.every().minute.do(updateObservingConditionsCSV) since i started using schedule, so yes - this works.
according to this code, logs are send to stdout: ` logger.add( sys.stdout, colorize=True, format="[{time:YYYY-MM-DD HH:mm:ss}] - {message}", level=log_level, )`
just add another sink to the logger: `logger.add("excludarr.log", colorize=True, format="[{time:YYYY-MM-DD HH:mm:ss}] - {message}", level=log_level, )` More Info here: https://loguru.readthedocs.io/en/stable/overview.html#easier-file-logging-with-rotation-retention-compression
This works: ``` @app.task( ( ( time_of_week.on("Mon") | time_of_week.on("Tue") | time_of_week.on("Wed") | time_of_week.on("Thu") | time_of_week.on("Fri") ) & time_of_day.between("08:00", "20:00") ) & every("1 hours") ) ``` is there an easier way...
i'll fork it and look into it. I want it to add only new shows (S01E01) so need to do that aswell
i'll just add a single language choice to config and add it to the program. Then i send a merge request.
yes, that's true. Sonarr can only add shows, which have already a THETVDB ID. If TVMaze doesn't provide that, i need to implement a search function - which i will...
it could be, but it would take up only space?
same here with sveltekit :/