Python

Building a REST API With Django REST Framework — step-by-step Python tutorial on Progressive Robot

Building a REST API With Django REST Framework

Let’s get our hands dirty and build some APIs! With a browsable API, robust authentication policies, and object serialization, the Django REST framework is a powerful toolkit that offers an amazing experience for rapidly creating RESTful APIs on top of the popular Python framework Django.

Read more
Cómo convertir tipos de datos en Python 3 — step-by-step Python tutorial on Progressive Robot

Cómo convertir tipos de datos en Python 3

Este tutorial de Python 3 lo guiará a través de la conversión de tipos de datos, incluyendo números, cadenas, tuplas y listas, y también le proporcionará ejemplos para que se familiarice con los diferentes casos de uso.

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 Manage Python with Pyenv and Direnv — step-by-step Python tutorial on Progressive Robot

How To Manage Python with Pyenv and Direnv

In this tutorial, you’ll install pyenv for managing python environments, install direnv to auto configure and source the virtualenv for projects, set a global Python version and a local Python version for projects, and configure a virtualenv and auto source the venv when moving into your project directories.

Read more
How To Use and Validate Web Forms with Flask-WTF — step-by-step Python tutorial on Progressive Robot

How To Use and Validate Web Forms with Flask-WTF

WTForms is a Python library that provides flexible web form rendering. You can use it to render text fields, text areas, password fields, radio buttons, and others. WTForms also uses a CSRF token to provide protection from CSRF attacks. In this tutorial, you’ll build a small web application that demonstrates how to render and validate web forms using Flask-WTF.

Read more
CHAT