You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Unable to find the client secret file. Please ensure that you have downloaded the client secret file from Google, and placed it at %s.",
43
+
"Unable to find the client secret file.\nPlease ensure that you have downloaded the client secret file from Google. Either place the client secret file at %s, or use the --client-secret-file option to specify the path to the client secret file.",
This integration can be used to send Zulip messages as reminders for upcoming events from your Google Calendar.
@@ -63,6 +73,18 @@ parser.add_argument(
63
73
help="The topic to which to send the reminders to. Ignored if --channel is unspecified. 'calendar-reminders' is used as the default topic name.",
64
74
default="calendar-reminders",
65
75
)
76
+
parser.add_argument(
77
+
"--client-secret-file",
78
+
help="The path to the file containing the client secret for the Google Calendar API. By default, the client secret file is assumed to be at {CLIENT_SECRET_PATH}.",
79
+
default=CLIENT_SECRET_PATH,
80
+
dest="client_secret_path",
81
+
)
82
+
parser.add_argument(
83
+
"--tokens-file",
84
+
help=f"The path to the file containing the tokens for the Google Calendar API. By default, the tokens file is generated at {TOKENS_PATH} after the first run.",
0 commit comments