Skip to content

Commit 6814668

Browse files
committed
Deleted hardcoded calendar id
1 parent 8ccb875 commit 6814668

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
credentials.json
2-
token.pickle
1+
*.json
2+
*.pickle

email-bot.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import base64
33
import datetime
44
import email
5+
import json
56
import pickle
67
import re
78
import os.path
@@ -152,7 +153,11 @@ def main():
152153
}
153154

154155
saved_events.append(message['id'])
155-
event = calendar_service.events().insert(calendarId='[email protected]', body=event).execute()
156+
157+
with open('calendar_id.json') as f: #need to handle it differently, stupid one
158+
calendarId = json.load(f)["calendarId"]
159+
160+
event = calendar_service.events().insert(calendarId=calendarId, body=event).execute()
156161

157162
with open("events.pickle",'wb') as wfp:
158163
pickle.dump(saved_events, wfp)

0 commit comments

Comments
 (0)