From the course: Google Cloud Professional Cloud Architect Cert Prep: 4 Analyzing and Optimizing Technical and Business Processes
Unlock this course with a free trial
Join today to access over 24,000 courses taught by industry experts.
The three most important files in a Python project - Google Cloud Tutorial
From the course: Google Cloud Professional Cloud Architect Cert Prep: 4 Analyzing and Optimizing Technical and Business Processes
The three most important files in a Python project
- Hi, my name is Noah Gift and I'm going to talk to you today about the three most important files in your Python project. These include a make file, a docker file, and a requirements.txt file. Let's go ahead and get started. Let's take a look at the three files here that are important. First up, we have a make file. A make file is critical because it allows you to automate things like an installation step, a lind step, a deployment step, and really it's like a set of recipes. You don't want to have to go through and look at every single ingredient when you're cooking at home. Likewise, you want to use a make file so you don't have to look things up over and over again. So really it's a simplification process. Next step, we got docker file. Docker file is critical because it attaches the runtime. 2022 and beyond, there's no way projects are not going to use docker files. It's really a must have. This runtime packaging…