WIP: Scripts d'automatisation calendrier #38

Draft
aeddis wants to merge 3 commits from calendar_generator into main
2 changed files with 20 additions and 0 deletions
Showing only changes of commit 1c9ff174cf - Show all commits

0
script/README.md Normal file
View file

View file

@ -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