Tutorials
Discover articles, guides, and related topics in this category.
Articles in Tutorials
Read the latest articles published in this section.
Creating Your First Django App
This tutorial introduces the concept of Django apps and shows how to create and integrate your first app into a project. It covers the app structure, how to register it in INSTALLED_APPS, create basic views and URLs, and render a simple template, he…
Final Capstone Project — Personal Task & Event Manager
This final capstone project combines multiple intermediate Python concepts into one practical application: a Personal Task & Event Manager. Learners use functions, OOP, modules, error handling, date processing, and SQLite to build a structured real-…
Understanding Django Project Structure
This tutorial explains the structure of a Django project and the role of its main files and folders. It helps beginners understand how components like manage.py, settings.py, and urls.py work together, and clarifies the difference between a project …
Setting Up the Django Development Environment
This tutorial guides beginners through setting up a complete Django development environment. It covers installing Python and pip, creating and activating a virtual environment, installing Django, and creating and running the first project. By the en…
Intermediate Python — Lesson 10 Introduction to Databases (SQLite + Python)
This lesson introduces the fundamentals of working with databases in Python using SQLite. It covers how to create tables, insert, retrieve, update, and delete data using SQL queries, as well as how to connect and interact with a database through Pyt…