├── .gitignore ├── LICENSE ├── README.md ├── assets ├── BBFHQEPWWXJM.jpeg └── course-one-final-project.png ├── automating-real-world-tasks-with-python ├── week-one │ └── README.md ├── week-three │ ├── README.md │ ├── car_sales.json │ ├── emails.py │ └── tmp │ │ ├── cars.pdf │ │ ├── example.png │ │ └── report.pdf └── week-two │ └── README.md ├── configuration-management-and-the-cloud ├── week-four │ └── README.md ├── week-one │ └── README.md ├── week-three │ └── README.md └── week-two │ ├── README.md │ ├── ntp.pp │ └── tools.pp ├── crash-course-on-python ├── week-four │ ├── README.md │ └── course-one-week-four.py ├── week-one │ ├── README.md │ └── course-one-week-one.py ├── week-six │ ├── README.md │ └── course-one-week-six.py ├── week-three │ ├── README.md │ └── course-one-week-three.py └── week-two │ ├── README.md │ └── course-one-week-two.py ├── introduction-to-git-and-github ├── week-four │ └── README.md ├── week-three │ └── README.md └── week-two │ └── README.md ├── troubleshooting-and-debugging-technique ├── week-four │ └── README.md ├── week-one │ ├── README.md │ ├── binary-search.py │ ├── find_item.py │ └── linear-search.py ├── week-three │ └── README.md └── week-two │ ├── README.md │ └── thumbnail_generator.py └── using-python-to-interact-with-the-operating-system ├── week-five ├── README.md ├── charfreq.py ├── rearrange.py ├── rearrange_test.py └── validations.py ├── week-four ├── README.md ├── check_cron.py ├── course-two-week-four.py ├── create_file.py ├── hello.py ├── myapp.py ├── parameters.py ├── seconds.py └── variables.py ├── week-one ├── README.md ├── health_checks.py └── network.py ├── week-seven └── final.sh ├── week-six ├── README.md ├── check-localhost.sh ├── fruits.sh ├── gather-information.sh ├── old_website │ ├── about.HTM │ ├── contact.HTM │ ├── footer.HTM │ ├── index.HTM │ └── rename.sh ├── random-exit.py ├── retry.sh ├── toploglines.sh └── while.sh ├── week-three ├── README.md └── course-two-week-three.py └── week-two ├── README.md ├── course-two-week-two.py ├── csv_file.txt ├── generate_report.py ├── software.csv └── spider.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/README.md -------------------------------------------------------------------------------- /assets/BBFHQEPWWXJM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/assets/BBFHQEPWWXJM.jpeg -------------------------------------------------------------------------------- /assets/course-one-final-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/assets/course-one-final-project.png -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-one/README.md -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-three/README.md -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-three/car_sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-three/car_sales.json -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-three/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-three/emails.py -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-three/tmp/cars.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-three/tmp/cars.pdf -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-three/tmp/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-three/tmp/example.png -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-three/tmp/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-three/tmp/report.pdf -------------------------------------------------------------------------------- /automating-real-world-tasks-with-python/week-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/automating-real-world-tasks-with-python/week-two/README.md -------------------------------------------------------------------------------- /configuration-management-and-the-cloud/week-four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/configuration-management-and-the-cloud/week-four/README.md -------------------------------------------------------------------------------- /configuration-management-and-the-cloud/week-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/configuration-management-and-the-cloud/week-one/README.md -------------------------------------------------------------------------------- /configuration-management-and-the-cloud/week-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/configuration-management-and-the-cloud/week-three/README.md -------------------------------------------------------------------------------- /configuration-management-and-the-cloud/week-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/configuration-management-and-the-cloud/week-two/README.md -------------------------------------------------------------------------------- /configuration-management-and-the-cloud/week-two/ntp.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/configuration-management-and-the-cloud/week-two/ntp.pp -------------------------------------------------------------------------------- /configuration-management-and-the-cloud/week-two/tools.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/configuration-management-and-the-cloud/week-two/tools.pp -------------------------------------------------------------------------------- /crash-course-on-python/week-four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-four/README.md -------------------------------------------------------------------------------- /crash-course-on-python/week-four/course-one-week-four.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-four/course-one-week-four.py -------------------------------------------------------------------------------- /crash-course-on-python/week-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-one/README.md -------------------------------------------------------------------------------- /crash-course-on-python/week-one/course-one-week-one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-one/course-one-week-one.py -------------------------------------------------------------------------------- /crash-course-on-python/week-six/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-six/README.md -------------------------------------------------------------------------------- /crash-course-on-python/week-six/course-one-week-six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-six/course-one-week-six.py -------------------------------------------------------------------------------- /crash-course-on-python/week-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-three/README.md -------------------------------------------------------------------------------- /crash-course-on-python/week-three/course-one-week-three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-three/course-one-week-three.py -------------------------------------------------------------------------------- /crash-course-on-python/week-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-two/README.md -------------------------------------------------------------------------------- /crash-course-on-python/week-two/course-one-week-two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/crash-course-on-python/week-two/course-one-week-two.py -------------------------------------------------------------------------------- /introduction-to-git-and-github/week-four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/introduction-to-git-and-github/week-four/README.md -------------------------------------------------------------------------------- /introduction-to-git-and-github/week-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/introduction-to-git-and-github/week-three/README.md -------------------------------------------------------------------------------- /introduction-to-git-and-github/week-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/introduction-to-git-and-github/week-two/README.md -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-four/README.md -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-one/README.md -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-one/binary-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-one/binary-search.py -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-one/find_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-one/find_item.py -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-one/linear-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-one/linear-search.py -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-three/README.md -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-two/README.md -------------------------------------------------------------------------------- /troubleshooting-and-debugging-technique/week-two/thumbnail_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/troubleshooting-and-debugging-technique/week-two/thumbnail_generator.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-five/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-five/README.md -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-five/charfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-five/charfreq.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-five/rearrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-five/rearrange.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-five/rearrange_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-five/rearrange_test.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-five/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-five/validations.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/README.md -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/check_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/check_cron.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/course-two-week-four.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/course-two-week-four.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/create_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/create_file.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/hello.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/myapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/myapp.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/parameters.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | print(sys.argv) -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/seconds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/seconds.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-four/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-four/variables.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-one/README.md -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-one/health_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-one/health_checks.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-one/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-one/network.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-seven/final.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/README.md -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/check-localhost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/check-localhost.sh -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/fruits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/fruits.sh -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/gather-information.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/gather-information.sh -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/old_website/about.HTM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/old_website/contact.HTM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/old_website/footer.HTM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/old_website/index.HTM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/old_website/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/old_website/rename.sh -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/random-exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/random-exit.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/retry.sh -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/toploglines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/toploglines.sh -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-six/while.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-six/while.sh -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-three/README.md -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-three/course-two-week-three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-three/course-two-week-three.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-two/README.md -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-two/course-two-week-two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-two/course-two-week-two.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-two/csv_file.txt: -------------------------------------------------------------------------------- 1 | Sabrina Green,802-867-5309,System Admin 2 | Eli Jones,684-348-1127,IT Specialist -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-two/generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-two/generate_report.py -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-two/software.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-two/software.csv -------------------------------------------------------------------------------- /using-python-to-interact-with-the-operating-system/week-two/spider.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremymaya/google-it-automation-with-python/HEAD/using-python-to-interact-with-the-operating-system/week-two/spider.txt --------------------------------------------------------------------------------