site/script/calendar_generator.py
Aeddis Desauw 1c9ff174cf
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Init script for calendar generation
2024-04-26 18:07:42 +02:00

20 lines
360 B
Python

"""
Module to generate the Ascii art version of a calendar
"""
import sys
class Calendar:
__name = ""
__first_day= ""
__nb_day= 0
def get_day(day : int):
pass
def generate_ascii_calendar(cal):
pass
if __name__ == "__main__":
# get the month with format MM-YYYY from argv
# print the ascii of thus month
pass