├── .env ├── README.md ├── cronjobs ├── fetch_github.py └── test.py ├── job_tracker.py ├── moviepy ├── audio.py └── edit.py ├── nasa_pic_of_day.py ├── price_tracker.py ├── selfcontrol.py ├── send_email.py └── tweet.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/README.md -------------------------------------------------------------------------------- /cronjobs/fetch_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/cronjobs/fetch_github.py -------------------------------------------------------------------------------- /cronjobs/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/cronjobs/test.py -------------------------------------------------------------------------------- /job_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/job_tracker.py -------------------------------------------------------------------------------- /moviepy/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/moviepy/audio.py -------------------------------------------------------------------------------- /moviepy/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/moviepy/edit.py -------------------------------------------------------------------------------- /nasa_pic_of_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/nasa_pic_of_day.py -------------------------------------------------------------------------------- /price_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/price_tracker.py -------------------------------------------------------------------------------- /selfcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/selfcontrol.py -------------------------------------------------------------------------------- /send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/send_email.py -------------------------------------------------------------------------------- /tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickloeber/python-task-automation/HEAD/tweet.py --------------------------------------------------------------------------------