From 1ecaddfaff4b57823c04293f3a8ce0b8a71b0d07 Mon Sep 17 00:00:00 2001 From: localhost_frssoft Date: Thu, 11 Jul 2024 22:07:09 +0300 Subject: [PATCH] some pep8 fixes --- src/listener_mention.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/listener_mention.py b/src/listener_mention.py index 2414248..c059fa7 100644 --- a/src/listener_mention.py +++ b/src/listener_mention.py @@ -15,8 +15,9 @@ from loguru import logger def get_peertube_stream_name(): try: return requests.get("https://xxivproduction.video/api/v1/videos/1FZeVVVzWBFShaxQVkYiXd").json()['name'] - except: - return "[не удалось получить название]" + except Exception as E: + return f"[не удалось получить название {E}]" + @logger.catch def get_control_mention(): @@ -53,13 +54,13 @@ def get_control_mention(): movies_accept_time = stop_thread_scan.strftime('%H:%M %d.%m.%Y по Москве') stop_thread_scan = time.mktime(time.struct_time(stop_thread_scan.timetuple())) - if now_week == 6: # Фикс стыков двух недель. Если вс, то расчитываем на следующую неделю + if now_week == 6: # Фикс стыков двух недель. Если вс, то расчитываем на следующую неделю next_week = 2 else: next_week = 1 next_movie_watching_delta = relativedelta(hour=fmn_next_watching_hour, minute=0, second=0, weekday=SU(next_week)) next_movie_watching = time_now + next_movie_watching_delta - max_mute_time = time.mktime(time.struct_time(next_movie_watching.timetuple())) # Глушение до следующего сеанса FMN. + max_mute_time = time.mktime(time.struct_time(next_movie_watching.timetuple())) # Глушение до следующего сеанса FMN. next_movie_watching = next_movie_watching.strftime('%d.%m.%Y') post_status(start_collect_movies_text(movies_accept_time, next_movie_watching), st_id, attachments=[upload_attachment('src/FMN.webp')]) @@ -72,7 +73,7 @@ def get_control_mention(): write_states(states_stor.states) break if now_hour == 0: - logger.warning(f'Автоматический триггер в полночи сработал') + logger.warning('Автоматический триггер в полночи сработал') thread_created_at = time_now delta = relativedelta(hour=hour_poll_posting, minute=0, second=0, weekday=TU(1)) @@ -80,13 +81,13 @@ def get_control_mention(): movies_accept_time = stop_thread_scan.strftime('%H:%M %d.%m.%Y по Москве') stop_thread_scan = time.mktime(time.struct_time(stop_thread_scan.timetuple())) - if now_week == 6: # Фикс стыков двух недель. Если вс, то расчитываем на следующую неделю + if now_week == 6: # Фикс стыков двух недель. Если вс, то расчитываем на следующую неделю next_week = 2 else: next_week = 1 next_movie_watching_delta = relativedelta(hour=fmn_next_watching_hour, minute=0, second=0, weekday=SU(next_week)) next_movie_watching = time_now + next_movie_watching_delta - max_mute_time = time.mktime(time.struct_time(next_movie_watching.timetuple())) # Глушение до следующего сеанса FMN. + max_mute_time = time.mktime(time.struct_time(next_movie_watching.timetuple())) # Глушение до следующего сеанса FMN. next_movie_watching = next_movie_watching.strftime('%d.%m.%Y') watched_movie_name = get_peertube_stream_name() st_id = post_status("Спасибо что посмотрели " + watched_movie_name + "\n\n" + start_collect_movies_text(movies_accept_time, next_movie_watching) + '\n\n@rf@mastodon.ml', reply_to_status_id=None, attachments=[upload_attachment('src/FMN.webp')], visibility="public")['id']