mirror of
https://github.com/UofCBaja/Interview-Backend.git
synced 2025-07-07 11:47:15 -06:00
feat(NoSheet): started creating default sheet, todo add default data
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user