├── README.md ├── example.py ├── module2 ├── README.md └── final_project_week7.py ├── module7 ├── week1 │ ├── README.md │ └── converter.py ├── week2 │ ├── README.md │ └── run.py ├── week3 │ ├── README.md │ ├── cars.py │ ├── emails.py │ └── reports.py └── week4 │ ├── changeImage.py │ ├── cron_file │ ├── emails.py │ ├── health_check.py │ ├── report_email.py │ ├── reports.py │ ├── run.py │ └── supplier_image_upload.py └── test2.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/example.py -------------------------------------------------------------------------------- /module2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module2/README.md -------------------------------------------------------------------------------- /module2/final_project_week7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module2/final_project_week7.py -------------------------------------------------------------------------------- /module7/week1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week1/README.md -------------------------------------------------------------------------------- /module7/week1/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week1/converter.py -------------------------------------------------------------------------------- /module7/week2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week2/README.md -------------------------------------------------------------------------------- /module7/week2/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week2/run.py -------------------------------------------------------------------------------- /module7/week3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week3/README.md -------------------------------------------------------------------------------- /module7/week3/cars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week3/cars.py -------------------------------------------------------------------------------- /module7/week3/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week3/emails.py -------------------------------------------------------------------------------- /module7/week3/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week3/reports.py -------------------------------------------------------------------------------- /module7/week4/changeImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/changeImage.py -------------------------------------------------------------------------------- /module7/week4/cron_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/cron_file -------------------------------------------------------------------------------- /module7/week4/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/emails.py -------------------------------------------------------------------------------- /module7/week4/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/health_check.py -------------------------------------------------------------------------------- /module7/week4/report_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/report_email.py -------------------------------------------------------------------------------- /module7/week4/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/reports.py -------------------------------------------------------------------------------- /module7/week4/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/run.py -------------------------------------------------------------------------------- /module7/week4/supplier_image_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjaw/Google-IT-automation-with-Python/HEAD/module7/week4/supplier_image_upload.py -------------------------------------------------------------------------------- /test2.py: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------