/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
QuickChart__examples/to_file.py
16 строк
246 B
gil9red
Refactoring. Using black code style
14 июн 2023, 11:43
14 июн 2023, 11:43
6ed3833
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" from pathlib import Path from common import get_chart PATH = Path(__file__).resolve().absolute() FILE_NAME = Path(f"{PATH}.png") qc = get_chart() qc.to_file(FILE_NAME)