This commit is contained in:
Qumarth Jash 2024-06-02 01:50:33 +01:00
parent e6829aa423
commit 2896ea5d49
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ print('TITLE', 'START_TIME', 'END_TIME', 'VENUE', 'PRIVACY', sep=' | ')
print('-'*50)
not_public = sorted(not_public, key = lambda x: x['start_date'])
for e in not_public:
print('\n')
start_time = e['start_date'].split()[1]
end_time = e['end_date'].split()[1]
privacy = 'REVIEW' if e['video_privacy'] == 'review' else 'PRIVATE'