1
0
Fork 0
forked from Deuxfleurs/site
deuxfleurs-website/script/calendar_generator.py

21 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