Python Frameworks

Настройка Django с Postgres, Nginx и Gunicorn в Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

Настройка Django с Postgres, Nginx и Gunicorn в Ubuntu 20.04

Django — это мощная веб-система, помогающая создать приложение или сайт Python с нуля. Django включает упрощенный сервер разработки для локального тестирования кода, однако для серьезных производственных задач требуется более защищенный и мощный веб-сервер. В этом руководстве…

Read more
How To Use Many-to-Many Database Relationships with Flask and SQLite — step-by-step Databases tutorial on Progressive Robot

How To Use Many-to-Many Database Relationships with Flask and SQLite

In this tutorial, you’ll modify an application built using Flask and SQLite by adding a Many-to-Many relationship to it. A many-to-many database relationship is a relationship between two tables where a record in each table can reference several records in the other table. For example, in a blog, a table for posts can have a many-to-many relationship with a table for storing authors.

Read more
How To Use the Web2py Framework to Quickly Build Your Python App — step-by-step Linux tutorial on Progressive Robot

How To Use the Web2py Framework to Quickly Build Your Python App

Web2py is a Python framework that can be used to quickly build a functioning web application. Web2py is not only a framework, it also includes a complete IDE for your web browser, which allows the development and the application itself to be integrated closely. In this article, we will discuss how to install and use this software on an Ubuntu VPS.

Read more
How To Install and Use PyTorch — step-by-step AI And Machine Learning tutorial on Progressive Robot

How To Install and Use PyTorch

In this tutorial, you’ll install PyTorch’s “CPU support only” version in three steps. This installation is ideal for people looking to install and use PyTorch but who don’t have an Nvidia graphics card. In particular, you’ll install PyTorch in a Python virtual environment with virtualenv. This approach isolates the PyTorch installation, allowing you to install different PyTorch versions for each project.

Read more
How To Install the Django Web Framework on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Install the Django Web Framework on Ubuntu 22.04

Introduction Django is a full-featured Python web framework for developing dynamic websites and applications. Using Django, you can quickly create Python web applications and rely on the framework to do a good deal of the heavy lifting. In this guide, you will get Django up and running on an Ubuntu 22.04 server. After installation, you […]

Read more
Обслуживание приложений 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
CHAT