HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-21
1 <p>The topics from the previous lessons are enough to require many months of intensive training, but even they don't reflect everything about Python development. In this lesson, we'll briefly cover some other important aspects.</p>
1 <p>The topics from the previous lessons are enough to require many months of intensive training, but even they don't reflect everything about Python development. In this lesson, we'll briefly cover some other important aspects.</p>
2 <h3>Big Data Analysis</h3>
2 <h3>Big Data Analysis</h3>
3 <p>People often use Python for:</p>
3 <p>People often use Python for:</p>
4 <ul><li>Big data analysis</li>
4 <ul><li>Big data analysis</li>
5 <li><a>Machine learning</a></li>
5 <li><a>Machine learning</a></li>
6 <li><a>Neural networks</a></li>
6 <li><a>Neural networks</a></li>
7 <li>Statistical calculations</li>
7 <li>Statistical calculations</li>
8 <li><a>Computer Vision</a></li>
8 <li><a>Computer Vision</a></li>
9 <li><a>OpenCV</a></li>
9 <li><a>OpenCV</a></li>
10 <li><a>Natural Language Processing</a></li>
10 <li><a>Natural Language Processing</a></li>
11 </ul><h3>Creating user interaction interfaces</h3>
11 </ul><h3>Creating user interaction interfaces</h3>
12 <p>Many Python programs provide a GUI (<a>Graphical User Interface</a>). Other programs communicate with users by voice through voice assistants or by text through chatbots. Organizing<a>human-machine interaction</a>is a booming industry with its techniques, laws, and scientific foundations. And this industry is essential because a program only succeeds if it satisfies its users.</p>
12 <p>Many Python programs provide a GUI (<a>Graphical User Interface</a>). Other programs communicate with users by voice through voice assistants or by text through chatbots. Organizing<a>human-machine interaction</a>is a booming industry with its techniques, laws, and scientific foundations. And this industry is essential because a program only succeeds if it satisfies its users.</p>
13 <h3>Infrastructure</h3>
13 <h3>Infrastructure</h3>
14 <p>Adding features is only half the battle. To develop applications, you have to:</p>
14 <p>Adding features is only half the battle. To develop applications, you have to:</p>
15 <ul><li>First, set up the developer environment using<a>Docker Compose</a></li>
15 <ul><li>First, set up the developer environment using<a>Docker Compose</a></li>
16 <li>After development, the application needs to be uploaded somewhere. To do this, you need to set up a production environment, the one where the site will run</li>
16 <li>After development, the application needs to be uploaded somewhere. To do this, you need to set up a production environment, the one where the site will run</li>
17 <li>Once we have done it, we need to deploy the site in production</li>
17 <li>Once we have done it, we need to deploy the site in production</li>
18 </ul><p>Modern infrastructure is code, so it needs to be programmed. Here is a list of the most significant programs for this purpose:</p>
18 </ul><p>Modern infrastructure is code, so it needs to be programmed. Here is a list of the most significant programs for this purpose:</p>
19 <ul><li><a>Ansible</a></li>
19 <ul><li><a>Ansible</a></li>
20 <li><a>Terraform</a></li>
20 <li><a>Terraform</a></li>
21 <li><a>Docker</a></li>
21 <li><a>Docker</a></li>
22 </ul><h3>Operation</h3>
22 </ul><h3>Operation</h3>
23 <p>Any working site needs maintenance. Problems can arise from anywhere, disk space might have run out, there may have been a network failure, or there is an error in the operation logic that occurs only with specific input data.</p>
23 <p>Any working site needs maintenance. Problems can arise from anywhere, disk space might have run out, there may have been a network failure, or there is an error in the operation logic that occurs only with specific input data.</p>
24 <p>You should find out about all this as early as possible. Operating software involves many things, including monitoring, setting up alerts, collecting logs, and using other tools. We recommend two resources to start exploring this topic:<a>DataDog</a>and<a>Rollbar</a>.</p>
24 <p>You should find out about all this as early as possible. Operating software involves many things, including monitoring, setting up alerts, collecting logs, and using other tools. We recommend two resources to start exploring this topic:<a>DataDog</a>and<a>Rollbar</a>.</p>