├── .gitignore ├── README.txt ├── calendarauto.py ├── requirements.txt └── task.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | credentials.json 3 | token.pickle 4 | *.pyc 5 | 6 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/Calendar_Automator/HEAD/README.txt -------------------------------------------------------------------------------- /calendarauto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/Calendar_Automator/HEAD/calendarauto.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/Calendar_Automator/HEAD/requirements.txt -------------------------------------------------------------------------------- /task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KalleHallden/Calendar_Automator/HEAD/task.py --------------------------------------------------------------------------------