/
BoryginS
/
Accounting
Обзор
Документация
Войти
/
BoryginS
/
Accounting
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
main.py
10 строк
296 B
BoryginS
first_commit
09 мар 2026, 20:03
09 мар 2026, 20:03
1b51758
Код
Авторство
О чём код?
from datetime import datetime from application.db.people import get_employees from application.salary import calculate_salary if __name__ == "__main__": current_date = datetime.now().strftime("%Y-%m-%d") print(f"Current date: {current_date}") calculate_salary() get_employees()