Merge pull request #260 from jesusalberto18/master

Add automated_calendar.
This commit is contained in:
Ayush Bhardwaj 2022-08-25 11:22:43 +05:30 committed by GitHub
commit eb55189150
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 0 deletions

View File

@ -90,6 +90,7 @@ So far, the following projects have been integrated to this repo:
|[Face Recognition](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/image_recognition)|[LOKESH KHURANA](https://github.com/theluvvkhurana)|
|[File Encrypt Decrypt](file-encrypt-decrypt)|[Aditya Arakeri](https://github.com/adityaarakeri)|
| [Address locator](Location_Of_Adress) | [Chris]() |
| [Automated calendar](automated_calendar) | [J.A. Hernández](https://github.com/jesusalberto18) |
| [Automated emails](automated_email) | [Suvigya](https://github.com/SuvigyaJain1) |
|[AI chatbot](Artificial-intelligence_bot) |[umar abdullahi](https://github.com/umarbrowser) |
|[Asymmetric Encryption](asymmetric_cryptography) |[victor matheus](https://github.com/victormatheusc) |

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