/notepaper

Web-based notepaper

Primary LanguagePythonMIT LicenseMIT

Upgrades for Notepaper2:

from appscript import * calendar=app('iCal').calendars['Home'] from datetime import datetime start_time = datetime(2019,12,1) end_time = datetime(2019,12,31) for event in calendar.events(its.start_date >= start_time).AND(its.start_date <= end_time): ... print(event) ... print(event.properties())

notification: osascript -e 'display notification "not" with title "tit"'