Добавление пула 7.2 млрд. v3.14
parent
ab91b5cfc6
commit
6b7e4acb29
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright © 2020-2023 https://t.me/ssleg
|
Copyright © 2020-2024 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:
|
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:
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Tg user account age v3.13
|
# Tg user account age v3.14
|
||||||
# 02/03/2024
|
# 07/06/2024
|
||||||
# https://t.me/ssleg © 2020 – 2024
|
# https://t.me/ssleg © 2020 – 2024
|
||||||
|
|
||||||
from datetime import datetime, date
|
from datetime import datetime, date
|
||||||
|
@ -27,6 +27,7 @@ uid_dict = {1200000000: (date(2013, 8, 14), date(2020, 3, 30)),
|
||||||
6400000000: (date(2023, 6, 29), date(2023, 7, 21)),
|
6400000000: (date(2023, 6, 29), date(2023, 7, 21)),
|
||||||
6700000000: (date(2023, 7, 22), date(2023, 10, 18)),
|
6700000000: (date(2023, 7, 22), date(2023, 10, 18)),
|
||||||
7000000000: (date(2023, 10, 19), date(2024, 2, 19)),
|
7000000000: (date(2023, 10, 19), date(2024, 2, 19)),
|
||||||
|
7200000000: (date(2024, 2, 20), date(2024, 5, 29)),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,7 +35,7 @@ def get_account_age(user_id):
|
||||||
for key in uid_dict:
|
for key in uid_dict:
|
||||||
if user_id < key:
|
if user_id < key:
|
||||||
return uid_dict[key]
|
return uid_dict[key]
|
||||||
return date(2024, 2, 20), datetime.now().date()
|
return date(2024, 5, 30), datetime.now().date()
|
||||||
|
|
||||||
|
|
||||||
def get_account_age_txt(user_id):
|
def get_account_age_txt(user_id):
|
||||||
|
|
Loading…
Reference in New Issue