21 lines
360 B
Python
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
|