Files
limoka/Den4ikSuperOstryyPer4ik/Astro-modules/summer.py
2025-07-10 21:02:34 +03:00

57 lines
2.8 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
# @@@@@@ @@@@@@ @@@@@@@ @@@@@@@ @@@@@@ @@@@@@@@@@ @@@@@@ @@@@@@@ @@@ @@@ @@@ @@@@@@@@ @@@@@@
# @@@@@@@@ @@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@ @@@ @@@ @@@@@@@@ @@@@@@@
# @@! @@@ !@@ @@! @@! @@@ @@! @@@ @@! @@! @@! @@! @@@ @@! @@@ @@! @@@ @@! @@! !@@
# !@! @!@ !@! !@! !@! @!@ !@! @!@ !@! !@! !@! !@! @!@ !@! @!@ !@! @!@ !@! !@! !@!
# @!@!@!@! !!@@!! @!! @!@!!@! @!@ !@! @!! !!@ @!@ @!@ !@! @!@ !@! @!@ !@! @!! @!!!:! !!@@!!
# !!!@!!!! !!@!!! !!! !!@!@! !@! !!! !@! ! !@! !@! !!! !@! !!! !@! !!! !!! !!!!!: !!@!!!
# !!: !!! !:! !!: !!: :!! !!: !!! !!: !!: !!: !!! !!: !!! !!: !!! !!: !!: !:!
# :!: !:! !:! :!: :!: !:! :!: !:! :!: :!: :!: !:! :!: !:! :!: !:! :!: :!: !:!
# :: ::: :::: :: :: :: ::: ::::: :: ::: :: ::::: :: :::: :: ::::: :: :: :::: :: :::: :::: ::
# : : : :: : : : : : : : : : : : : : : :: : : : : : : :: : : : :: :: :: : :
#
# © Copyright 2024
#
# https://t.me/Den4ikSuperOstryyPer4ik
# and
# https://t.me/ToXicUse
#
# 🔒 Licensed under the GNU AGPLv3
# https://www.gnu.org/licenses/agpl-3.0.html
#
# meta developer: @AstroModules
# meta banner: https://raw.githubusercontent.com/Den4ikSuperOstryyPer4ik/Astro-modules/main/Banners/Summer.jpg
from datetime import datetime
from .. import loader, utils
class SummerMod(loader.Module):
'''Сколько осталось дней до лета?)'''
strings = {'name': 'SummerTimer'}
@loader.command()
async def st(self, message):
"""- вывести таймер"""
now = datetime.now()
summer = datetime(now.year, 6, 1)
if now.month > 6 or (now.month == 6 and now.day > 1):
summer = datetime(now.year + 1, 6, 1)
time_to_summer = abs(summer - now)
await utils.answer(
message,
(
'<b><emoji document_id=6334560373387036241>🏝️</emoji> '
f'До <u>лета</u> осталось {time_to_summer.days} дней, '
f'{time_to_summer.seconds // 3600} часов, {time_to_summer.seconds // 60 % 60}'
f' минут, {time_to_summer.seconds % 60} секунд.\n<b><emoji '
'document_id=5393226077520798225>🥰</emoji> Жди лето вместе '
'с <u>AstroModules</u></b>'
)
)