Python

Обслуживание приложений Flask с Gunicorn и Nginx в Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

Обслуживание приложений Flask с Gunicorn и Nginx в Ubuntu 18.04

В этом обучающем модуле вы создадите приложение Python с использованием микроструктуры Flask в Ubuntu 18.04. Основная часть этой статьи посвящена настройке сервера приложений Gunicorn, запуску приложения и настройке Nginx для…

Read more
Настройка Jupyter Notebook с помощью Python 3 в Ubuntu 20.04 и подключение через туннель SSH — step-by-step Linux tutorial on Progressive Robot

Настройка Jupyter Notebook с помощью Python 3 в Ubuntu 20.04 и подключение через туннель SSH

Jupyter Notebook — веб-приложение с открытым исходным кодом, позволяющее создавать интерактивный код, визуализации и другие элементы и делиться ими. Этот инструмент можно использовать с несколькими языками программирования, включая Python, Julia, R, Haskell…

Read more
How To Use f-strings to Create Strings in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use f-strings to Create Strings in Python 3

Python strings are variable length sequences of characters and symbols. Strings allow your program to manipulate and track text and also display that text to your users. In this tutorial, you will learn how to use Python 3’s f-strings to create strings dynamically.

Read more
How To Use the Python Filter Function — step-by-step Python tutorial on Progressive Robot

How To Use the Python Filter Function

The Python built-in filter() function can be used to create a new iterator from an existing iterable (like a list or dictionary) that will efficiently filter out elements using a function that we provide. In this tutorial, we’ll review four different ways of using filter(): with two different iterable structures, with a lambda function, and with no defined function.

Read more
How To Use Web APIs in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use Web APIs in Python 3

An API, or Application Program Interface, makes it easy for developers to integrate one app with another. They expose some of a program’s inner workings in a limited way. You can use APIs to get information from other programs, or to automate things you normally do in your…

Read more
CHAT