adding full project without the pi sign edits

This commit is contained in:
Lucas
2022-03-30 23:57:47 -04:00
parent 84c6804833
commit f3d987ecbc
5 changed files with 124 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
from calendar_grabber import CalGrab
def process_events(events):
print("PROCESSING EVENTS")
for event in events:
print(event)
def main():
cg = CalGrab("./.auth.json", "loskorep@productiveedge.com", [process_events])
cg.update_at_interval(5, 15)
if __name__ == '__main__':
main()