Python

How To Deploy a Django App on App Platform — step-by-step Python tutorial on Progressive Robot

How To Deploy a Django App on App Platform

Django is a powerful web framework that allows you to deploy your Python applications or websites. Django includes many features such as authentication, a custom database ORM, and an extensible plugin architecture. Django simplifies the complexities of web development, allowing you to focus on writing code.

Read more
Comment indexer et couper des chaînes dans Python 3 — step-by-step Python tutorial on Progressive Robot

Comment indexer et couper des chaînes dans Python 3

Le type de données de chaîne Python est une séquence composée d’un ou de plusieurs caractères individuels et constituée de lettres, de chiffres, de caractères d’espacement ou de symboles. Les chaînes sont des séquences auxquelles vous pouvez accéder de la même manière qu’avec les autres types de données basées sur des séquences, via l’indexation ou le découpage en tranches. Ce tutoriel vous montrera de quelle manière accéder aux chaînes par l’indexation, à les découper en séquences de caractères

Read more
How to Install, Run, and Connect to Jupyter Notebook on a Remote Server — step-by-step Linux tutorial on Progressive Robot

How to Install, Run, and Connect to Jupyter Notebook on a Remote Server

Jupyter Notebook is an open-source, interactive web application that allows you to write and run computer code in more than 40 programming languages, including Python, R, Julia, and Scala. This article will walk you through how to install and configure the Jupyter Notebook application on a web server and how to connect to it from your local computer.

Read more
How To Perform CRUD Operations in MongoDB Using PyMongo on Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

How To Perform CRUD Operations in MongoDB Using PyMongo on Ubuntu 20.04

MongoDB is a general-purpose, document-oriented, NoSQL database program that uses JSON-like documents to store data. PyMongo is the recommended driver for working with MongoDB from Python. This tutorial will cover writing a Python script that creates, retrieves, updates and deletes data in a locally installed MongoDB server on Ubuntu 20.04.

Read more
CHAT