-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcel.py
31 lines (20 loc) · 843 Bytes
/
excel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import openpyxl, os
from datetime import datetime
#change current working directory to database folder
os.chdir('C:\\Users\\Kwesi Joe\\Documents\\VScode\\face recognition')
#load workboook
database = openpyxl.load_workbook('Database.xlsx')
#open sheet
sheet = database['Sheet1']
#get last row of the number plate column
last_row = len(sheet['A'])
#if the car in going into the car park, append registration number
sheet['A'+str(last_row+1)]= 'licplate'
#record arrival time
sheet['B'+str(last_row+1)] = str(datetime.now())
#if the car is going out, check row where its number got recorded and record the departure time
for row in range(1,len(sheet['A'])):
if sheet.cell(row,1).value == 'licplate' and sheet.cell(row,3) == None:
sheet['C'+str(row)] = str(datetime.now())
#save the database
database.save('Database.xlsx')