feat(NoSheet): started creating default sheet, todo add default data

This commit is contained in:
2024-12-07 13:00:13 -07:00
parent 3b46d56339
commit 0077950f2a
5 changed files with 133 additions and 53 deletions

View File

@ -8,6 +8,11 @@ from filelock import FileLock
file_path = "./interview_database.xlsx"
lock_path = "./interview_database.xlsx.lock" # Lock file for synchronization
"""
TODO chnage to dynamic file name
year_donation = int(str(datetime.datetime.now().year)[2:]) + 1 # gets the last two digits of the current year then adds 1 for the current season
file_name = f"OR{year_donation}-L-Interview Data.xlsx" # name based off the 2025 naming system
"""
def ReadDatabase():
"""
Reads the Database to retrieve available interview slots.