Добавление пула 8.2 млрд. v3.18

master
anton 2025-08-07 14:50:41 +03:00
parent d4a5905233
commit b80a7f564b
Signed by: anton
GPG Key ID: 50F7E97F96C07ECF
2 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright © 2020-2024 https://t.me/ssleg
Copyright © 2020-2025 https://t.me/ssleg
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,6 +1,6 @@
# Tg user account age v3.17
# 08/10/2024
# https://t.me/ssleg © 2020 2024
# Tg user account age v3.18
# 07/08/2025
# https://t.me/ssleg © 2020 2025
from datetime import datetime, date
@ -30,6 +30,7 @@ uid_dict = {1200000000: (date(2013, 8, 14), date(2020, 3, 30)),
7200000000: (date(2024, 2, 20), date(2024, 5, 29)),
7500000000: (date(2024, 5, 30), date(2024, 8, 20)),
7600000000: (date(2024, 8, 21), date(2024, 9, 20)),
8200000000: (date(2024, 9, 21), date(2025, 7, 30)),
}
@ -37,7 +38,7 @@ def get_account_age(user_id):
for key in uid_dict:
if user_id < key:
return uid_dict[key]
return date(2024, 9, 21), datetime.now().date()
return date(2025, 7, 31), datetime.now().date()
def get_account_age_txt(user_id):