gcal-bot: Remove .humbug-api-key reading
This behavior is part of api/humbug.py now. (imported from commit 8a9722c8ad05391160cbb98387f34ef9924d81de)
This commit is contained in:
parent
b9325a09fa
commit
b7c1e02ede
|
@ -17,7 +17,6 @@ parser = optparse.OptionParser(r"""
|
||||||
|
|
||||||
%prog \
|
%prog \
|
||||||
--user foo@humbughq.com \
|
--user foo@humbughq.com \
|
||||||
--api-key 0123456789abcdef0123456789abcdef \
|
|
||||||
--calendar http://www.google.com/calendar/feeds/foo%40humbughq.com/private-fedcba9876543210fedcba9876543210/basic
|
--calendar http://www.google.com/calendar/feeds/foo%40humbughq.com/private-fedcba9876543210fedcba9876543210/basic
|
||||||
|
|
||||||
Send yourself reminders on Humbug of Google Calendar events.
|
Send yourself reminders on Humbug of Google Calendar events.
|
||||||
|
@ -64,16 +63,8 @@ parser.add_option('--interval',
|
||||||
|
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
if not options.api_key:
|
if not (options.user and options.calendar):
|
||||||
try:
|
parser.error('You must specify --user and --calendar')
|
||||||
with open(path.join(os.environ['HOME'], '.humbug-api-key'), 'r') as f:
|
|
||||||
options.api_key = f.read().strip()
|
|
||||||
except IOError as e:
|
|
||||||
if e.errno != errno.ENOENT:
|
|
||||||
raise
|
|
||||||
|
|
||||||
if not (options.user and options.api_key and options.calendar):
|
|
||||||
parser.error('You must specify --user, --api-key, and --calendar')
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from gdata.calendar.client import CalendarClient
|
from gdata.calendar.client import CalendarClient
|
||||||
|
|
Loading…
Reference in a new issue