Code cleanup
This commit is contained in:
parent
376ce6cbe3
commit
1bd404af97
@ -128,11 +128,11 @@ class iCalendar:
|
|||||||
events = (
|
events = (
|
||||||
{
|
{
|
||||||
'title': events.get('SUMMARY').lstrip(),
|
'title': events.get('SUMMARY').lstrip(),
|
||||||
|
|
||||||
'begin': arrow.get(events.get('DTSTART').dt).to(timezone) if (
|
'begin': arrow.get(events.get('DTSTART').dt).to(timezone) if (
|
||||||
arrow.get(events.get('dtstart').dt).format('HH:mm') != '00:00')
|
arrow.get(events.get('dtstart').dt).format('HH:mm') != '00:00')
|
||||||
else arrow.get(events.get('DTSTART').dt).replace(tzinfo=timezone),
|
else arrow.get(events.get('DTSTART').dt).replace(tzinfo=timezone),
|
||||||
|
|
||||||
'end':arrow.get(events.get("DTEND").dt).to(timezone) if (
|
'end':arrow.get(events.get("DTEND").dt).to(timezone) if (
|
||||||
arrow.get(events.get('dtstart').dt).format('HH:mm') != '00:00')
|
arrow.get(events.get('dtstart').dt).format('HH:mm') != '00:00')
|
||||||
else arrow.get(events.get('DTEND').dt).replace(tzinfo=timezone)
|
else arrow.get(events.get('DTEND').dt).replace(tzinfo=timezone)
|
||||||
@ -211,4 +211,4 @@ class iCalendar:
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
print('running {0} in standalone mode'.format(filename))
|
print('running {0} in standalone mode'.format(filename))
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
"""
|
"""
|
||||||
RSS module for inkyCal Project
|
RSS module for InkyCal Project
|
||||||
Copyright by aceisace
|
Copyright by aceisace
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@ -57,10 +57,10 @@ class Feeds(inkycal_module):
|
|||||||
raise Exception('config is missing {}'.format(param))
|
raise Exception('config is missing {}'.format(param))
|
||||||
|
|
||||||
# required parameters
|
# required parameters
|
||||||
self.feed_urls = self.config["feed_urls"].split(",")
|
self.feed_urls = config["feed_urls"].split(",")
|
||||||
|
|
||||||
# optional parameters
|
# optional parameters
|
||||||
self.shuffle_feeds = self.config["shuffle_feeds"]
|
self.shuffle_feeds = config["shuffle_feeds"]
|
||||||
|
|
||||||
# give an OK message
|
# give an OK message
|
||||||
print('{0} loaded'.format(filename))
|
print('{0} loaded'.format(filename))
|
||||||
|
@ -300,10 +300,3 @@ class Inkyimage(inkycal_module):
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
print('running {0} in standalone/debug mode'.format(filename))
|
print('running {0} in standalone/debug mode'.format(filename))
|
||||||
|
|
||||||
#a = Inkyimage((480,800), {'path': "https://raw.githubusercontent.com/aceisace/Inky-Calendar/dev_ver2_0/Gallery/logo.png"})
|
|
||||||
#a = Inkyimage((480,800), {'path': "https://raw.githubusercontent.com/aceisace/Inky-Calendar/dev_ver2_0/Gallery/logo.png"})
|
|
||||||
a = Inkyimage((480, 800), {'path': "/home/pi/Desktop/im/IMG_0475.JPG"})
|
|
||||||
a.generate_image()
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user