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