/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
generate_html_calendar.py
16 строк
322 B
gil9red
Refactoring. Using black code style
24 июн 2023, 17:32
24 июн 2023, 17:32
200f198
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # http://pythonworld.ru/moduli/modul-calendar.html # https://docs.python.org/3/library/calendar.html import calendar a = calendar.HTMLCalendar() with open("calendar.html", "wb") as f: html = a.formatyearpage(2016, width=4) f.write(html)