/
ssstrekoza
/
accounting-python
Обзор
Документация
Войти
/
ssstrekoza
/
accounting-python
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
main.py
23 строки
756 B
Elena Dekho
Initial commit
26 окт 2025, 21:00
26 окт 2025, 21:00
032c091
Код
Авторство
О чём код?
from datetime import datetime from application.salary import calculate_salary from application.db.people import get_employees from art import tprint from colorama import init, Fore, Style # Инициализация colorama init() if __name__ == '__main__': print(f"Текущая дата: {datetime.now().strftime('%Y-%m-%d')}") calculate_salary() get_employees() print(Fore.LIGHTBLUE_EX + Style.BRIGHT, end="") tprint("Hello") print(Style.RESET_ALL, end="") print(Fore.GREEN + "Спасибо, что проверяете мою работу! 💚" + Style.RESET_ALL) print(Fore.LIGHTMAGENTA_EX + Style.BRIGHT, end="") tprint("Postavte,\n pozaluista,\n zachet :)\n (^._.^)") print(Style.RESET_ALL, end="")