Получите текущие данные с Python
from datetime import date
# Returns the current local date
today = date.today()
print("Today date is: ", today)
Dangerous Dragonfly
from datetime import date
# Returns the current local date
today = date.today()
print("Today date is: ", today)