diff options
Diffstat (limited to 'script/calendar_generator.py')
-rw-r--r-- | script/calendar_generator.py | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/script/calendar_generator.py b/script/calendar_generator.py deleted file mode 100644 index 1f8e11c..0000000 --- a/script/calendar_generator.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -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 |