Python ranked by Tiobe the first programming language of the year 2022
The Dutch software quality specialist, Tiobe, has just published its annual list of the most popular programming languages and Python is named “programming language of the year”. The C…
Django Generic Views & CRUD Application
1 - About Generic Views (Class Based Views) Django adopt the DRY philosophy and so is designed to have to write only the minimum , so the framework includes a…
Create a menu with QMenuBar PyQt5
Content Simple menu with QMenuBar PyQt5 QMenuBar according to the object approach PyQt5 Add an action to a menu item using the QAction class 1. Simple menu with QMenuBar PyQt5…
Django Pagination System
1 - Brief reminder of the previous tutorial: student management with django To achieve this paging system we will adopt the previous tutorial of student management: 1.1 - Creating a…
Django Practice Work: Creating a blog
1 - Creating blog application: First step: Before starting to create a blog with django, you must first complete the preliminary steps that we have already covered in previous tutorials:…
User authentication in django
1 - Create a new django project with an app named accounts To start we proceed by: - creating of a new project named mysite - migration and creation of…
The Virtualenv Environnement
1 - The virtualenv module Python has a module named virtualenv to create a virtual python environment, that is, an isolated working copy of Python that allows you to work…