automated_calendar

This script is an agenda for lazy people, I mean, for saving time 😂😂😂. Just run it and inside your selected folder you will find 12 other folders named after each month of the year, so you can archive your documents in a more organized way.
This commit is contained in:
J.A. Hernández 2022-08-21 17:04:00 -04:00 committed by GitHub
parent 5e9d1f4985
commit a003a873b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
'''
THIS CODE CREATES FOLDERS FOR EACH FY OF OUR COMPANY, WHERE WE COULD
FIND 12 OTHER FOLDERS NAMED AFTER EACH MONTH OF THE YEAR.
'''
#Import modules and libraries we'll use
from pathlib import Path
#Create the folders where we'll store our automated calendar
months =['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
for i,month in enumerate(months):
Path(f'Year1/{i+1}.{month}').mkdir(parents=True,exist_ok=True)
Path(f'Year2/{i+1}.{month}').mkdir(parents=True,exist_ok=True)
Path(f'Year3/{i+1}.{month}').mkdir(parents=True,exist_ok=True)
Path(f'Year4/{i+1}.{month}').mkdir(parents=True,exist_ok=True)

View File

@ -0,0 +1 @@
pkg-resources==0.0.0