aboutsummaryrefslogtreecommitdiff
path: root/script/calendar_generator.py
blob: 1f8e11cb975eb4efe641a951ec279c48d7ff5298 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
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