Django Unleashed Framework
1.46K subscribers
2.17K photos
2.58K links
Лучшие материалы по разработке на фреймворке Django на русском и английском языке

Разместить рекламу: @tproger_sales_bot

Правила общения: https://tprg.ru/rules

Другие каналы: @tproger_channels

Другие наши проекты: https://tprg.ru/media
Download Telegram
Django authenticate and login methods

Django comes with a robust authentication system that handles both authentication and authorization. In this post let's talk about two of its methods authenticate() and login().
authenticate()
The authenticate method is used to verify the user's cred...

Read: https://ankitdevelops.hashnode.dev/django-authenticate-and-login-methods
How to Create a Django Project and Application.

Introduction.
This article is a guide on how to create your (first) Django project and application.
A Little about Django.
The web framework for perfectionists with deadlines.
Django is a high-level Python web framework that encourages rapid developm...

Read: https://chryzcode.hashnode.dev/how-to-create-a-django-project-and-application
Demystifying Django ORM

A simple and precise Blog on the basics of Django ORM.

Hello folks !! Happy to see y'all here. Here in this blog, I will share a simple overview of Django ORM and how it makes a great impact on the backend development in the platform. Django is a ve...

Read: https://parthib23.hashnode.dev/demystifying-django-orm
Demystifying Virtual Environments in Python: A Beginner’s Guide

What is a virtual environment?
A virtual environment in Python is like a separate, organized workspace that encapsulates a specific Python interpreter and a set of libraries or packages. It allows you to isolate and manage different Python project de...

Read: https://karthiksbh.hashnode.dev/demystifying-virtual-environments-in-python-a-beginners-guide
Startup Working Experience for Final Year Grad

Hi there, I recently got an internship in an early-stage startup and currently I am in my final year. Here through this article, I want to share my experience working with the startup so far. I have learned a lot throughout the process and sometimes ...

Read: https://abhinav-shaw.hashnode.dev/startup-working-experience-for-final-year-grad
Securing Sensitive Information on GitHub - Django

I want to share a suggestion with those who are new to programming. Consider using a version control system while you code, like GitHub in my case. By doing so, you can enhance your coding skills while gaining proficiency in the process of pushing an...

Read: https://hukomah.hashnode.dev/securing-sensitive-information-on-github-django
Uploading a Django Application with PostgreSQL Database to Heroku.

Heroku is a popular online application deployment platform that seamlessly integrates with Django and PostgreSQL. In this guide, we will take you through the steps to deploy your Django application on Heroku through GitHub and set up a PostgreSQL dat...

Read: https://hukomah.hashnode.dev/uploading-a-django-application-with-postgresql-database-to-heroku
Transitioning User Model

One crucial aspect often demanding our attention in Django is the User model. What happens when the default user model, as robust as it is, falls short of meeting the unique requirements of a growing project?
I will begin by citing a scenario:
Imagin...

Read: https://victorolusola.hashnode.dev/transitioning-user-model
Basic Web App Using Django

Django is a powerful web framework for Python that makes it easy to build web applications quickly. In this guide, we will create a basic Django app from scratch. We will cover:

Installing Django

Creating a project

Setting up the database

Creatin...

Read: https://learnhubafrica.hashnode.dev/basic-web-app-using-django
Simple Django Tip #2

In continuation with my previous post on simple Django tips, here is another one. In fact, it's not a tip, it's a mandatory practice that needs to be followed in any Django project.
In any project, many properties should not be visible evidently for ...

Read: https://hellosambhavi.com/simple-django-tip-2
Django 5.0 beta 1 released

Django 5.0 beta 1 is now available. It represents the second stage in the 5.0
release cycle and is an opportunity for you to try out the changes coming in
Django 5.0.

Django 5.0 brings a deluge of exciting new features which you can read about in `the in-development 5.0 release notes`__.

Only bugs in new features and regressions from earlier versions of Django will
be fixed between now and the 5.0 final release. Translations will be updated
following the "string freeze", which occurs when the release candidate is issued.
The current release schedule calls for a release candidate in a month from
now, and a final release to follow about two weeks after that, scheduled for
December 4th. Early and frequent testing from the community will help minimize
the number of bugs in the release. Updates on the release schedule are available on the Django forum.

As with all alpha and beta packages, this is not for production use. But
if you'd like to take some of the new features for a spin, or to help find and
fix bugs (which should be reported to `the issue tracker`__), you can grab a
copy of the beta package from `our downloads page`__ or on PyPI.

The PGP key ID used for this release is Natalia Bidart: 2EE82A8D9470983E.
Docutils System Messages
System Message: ERROR/3 (<string); backlinks: 1, 2, 3
Anonymous hyperlink mismatch: 3 references but 4 targets.
See "backrefs" attribute for IDs.

Read: https://www.djangoproject.com/weblog/2023/oct/23/django-50-beta-1-released/
Exploring Django: The Python Web Framework

In the ever-evolving landscape of web development, having the right tools at your disposal is crucial. Django, a high-level Python web framework, is one such tool that has gained immense popularity over the years. In this blog, we'll dive into what D...

Read: https://imashutoshgupta.hashnode.dev/exploring-django-the-python-web-framework
Enhancing Django Applications with a Custom Middleware

I came across a bug in my secret project. This bug doesn't want to tick the boolean field in the database after a user signs up using logic in the view.
What is Middleware in Django?
A Middleware in Django is a way to process requests and responses g...

Read: https://vicentereyes.org/enhancing-django-applications-with-a-custom-middleware
Authorization & Authentication with Django

When developing web applications, particularly with the Django framework, two critical security concepts often come into play: authentication and authorization. While they might sound interchangeable due to their phonetic similarities, in reality, th...

Read: https://harshamangena.hashnode.dev/authorization-authentication-with-django
Understanding Model-View-Template (MVT) in Django

When it comes to web development, Django is a popular choice for building robust and maintainable web applications. One of the core concepts in Django's architecture is the Model-View-Template (MVT) pattern. While it's often compared to the more comm...

Read: https://imashutoshgupta.hashnode.dev/understanding-model-view-template-mvt-in-django
👍1
Things I've Learned Recently About Wagtail CMS

Wagtail is a free and open-source content management system (CMS) that's built on Django. It's a great choice for building websites of all sizes, from simple blogs to complex e-commerce sites.
Here are a few of the things I've learned about Wagtail r...

Read: https://bonheur.hashnode.dev/things-ive-learned-recently-about-wagtail-cms
10 best web development stacks for 2023.

10 best web development stacks for 2023. This information can serve as the foundation for comprehensive documentation or articles. I'll provide an overview of each stack along with key features, use cases, and considerations. Let's get started:

1. M...

Read: https://mrdenilson.hashnode.dev/10-best-web-development-stacks-for-2023
Mastering E-Commerce Backend Development with Django: Series Overview

Introduction to the Series
Hello developers and tech enthusiasts! If you've ever wondered how online stores manage everything—from user accounts to payments—you've come to the perfect starting point. We're embarking on an engaging journey to build th...

Read: https://djangoway.hashnode.dev/mastering-e-commerce-backend-development-with-django-series-overview
Mastering E-Commerce Backend Development with Django: A Comprehensive Guide to Project Setup

Greetings, illustrious developers! As we embark on this fascinating journey to create an e-commerce backend system using Django, there's some essential groundwork we must lay first. Crafting an efficient, secure, and scalable backend requires not jus...

Read: https://djangoway.hashnode.dev/mastering-e-commerce-backend-development-with-django-a-comprehensive-guide-to-project-setup
Unlocking the Power of Django: Deploying Our Notes App with Nginx and Docker

In the ever-evolving landscape of web development, Django stands as a robust and versatile framework for building web applications. Our journey today takes us one step further as we explore the exciting realm of deploying a Django-based Notes App usi...

Read: https://shubzz.hashnode.dev/unlocking-the-power-of-django-deploying-our-notes-app-with-nginx-and-docker