We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ccb875 commit 6814668Copy full SHA for 6814668
.gitignore
@@ -1,2 +1,2 @@
1
-credentials.json
2
-token.pickle
+*.json
+*.pickle
email-bot.py
@@ -2,6 +2,7 @@
import base64
3
import datetime
4
import email
5
+import json
6
import pickle
7
import re
8
import os.path
@@ -152,7 +153,11 @@ def main():
152
153
}
154
155
saved_events.append(message['id'])
- 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()
161
162
with open("events.pickle",'wb') as wfp:
163
pickle.dump(saved_events, wfp)
0 commit comments