2.1.1 import country flags

This commit is contained in:
SDE
2024-12-05 17:38:08 +03:00
parent a140ffe523
commit e56d29c322
262 changed files with 6079 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
from datetime import datetime
def print_ext(msg, *args, **kwargs):
msg = f'{msg} - {str(datetime.now())}'
print(msg)
return msg