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
How to host Django Application using gunicorn & nginx in Production

In this post, we will see how to use Nginx with Gunicorn to serve Django applications in production.
Django is a very powerful web framework and ships with a server that is able to facilitate development. This development server is not scalable and ...

Read: https://blog.unicornfortunes.com/how-to-host-django-application-using-gunicorn-nginx-in-production
👍1
The 5 Best Web Frameworks in 2023: A Comprehensive Comparison

Web frameworks are a developer's best friend. Designed to make a developer's life easier, they streamline the development of dynamic and robust web applications.
This article delves into five influential web frameworks: Ruby on Rails, Laravel, React,...

Read: https://five.hashnode.dev/the-5-best-web-frameworks-in-2023-a-comprehensive-comparison
Django and React with Live Reload

In this post I'll show how to integrate Django and React in both your development workflow and production deployment.
What is the main problem we're trying to solve? Ideally, we can work with React as usual. That is, we can make changes and have the ...

Read: https://circumeo.hashnode.dev/django-and-react-with-live-reload
Master Django: Launch Your First Project with Ease.

Django is one of the most popular framework developers used to implement websites backend. In this post, I am going to cover the basics to backend development using Django and subsequently release lessons and resources to help you master the framewor...

Read: https://adekilekun-abdullahi.hashnode.dev/master-django-launch-your-first-project-with-ease
How to Use @action Decorator in Django Rest Framework

Django Rest Framework (DRF) provides powerful tools to build robust APIs. While the standard CRUD operations are usually sufficient, there are cases where you might need to add custom actions or endpoints to perform specific operations.

This is where the @actiondecorator comes into play, allowing you to extend your ViewSets with additional functionalities.
In this article, we will explore …

Read: https://djangocentral.com/how-to-use-action-decorator-in-django-rest-framework/
Django ORM Cheatsheet: Mastering Database Operations in Django

Django, as a powerful and popular web framework, comes equipped with an impressive Object-Relational Mapping (ORM) system that simplifies database interactions and abstracts away much of the complexity involved in working with databases.
With its expressive and Pythonic syntax, developers can efficiently query, insert, update, and delete data from their database without writing raw SQL queries. Whether you are a …

Read: https://djangocentral.com/django-orm-cheatsheet/
Python Password Generator

import random
lower = "abcdefghijklmnopqrstuvwxyz"
upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
number = "0123456789"
symbols = "[]{}()*;|_-"

all = lower + upper + number + symbols
length = 16
password = "".join(random.sample(all,length))
print(password)


...

Read: https://imkanchan.hashnode.dev/python-password-generator
HTMX: Unleashing the Power of Dynamic Web Applications

Introduction
In the realm of web development, Htmx stands tall as a game-changer, redefining the way we create interactive web applications. With its seamless integration of AJAX capabilities, Htmx enables developers to update parts of web pages with...

Read: https://nikhilakki.in/htmx-unleashing-the-power-of-dynamic-web-applications
Unraveling Django Logging: A Journey into Web Development's Watchful Eye

Introduction
In the world of software development, logging plays a crucial role. It's a process that involves recording and storing valuable information about a program's behavior and execution. For web developers, Logging becomes a trusted companion...

Read: https://afeez1131.hashnode.dev/unraveling-django-logging-a-journey-into-web-developments-watchful-eye
Custom Authentication in Django: Embracing Username and Email for Enhanced Security and User-Friendly Login

Introduction to Authentication
Authentication, in technical terms, is the process of verifying the identity of a user to ensure they are who they claim to be. For web applications, authentication is a crucial security mechanism that grants users acce...

Read: https://afeez1131.hashnode.dev/custom-authentication-in-django-embracing-username-and-email-for-enhanced-security-and-user-friendly-login
Python Web Development: Building Web Applications with Flask and Django

Introduction
Python's versatility is one of its key strengths; As a result of that, it is extensively used in many domains, one among them being web development. In this part of our comprehensive Python guide, we will explore two popular frameworks f...

Read: https://sanjay1080.hashnode.dev/python-web-development-building-web-applications-with-flask-and-django
Tests for Your Django Apps: How to Write Them Effectively (A Complete Guide)

Testing is an essential part of any software development process. It helps to ensure that the code is working as expected, to catch bugs and errors before they affect the users, and to improve the quality and maintainability of the code. In this arti...

Read: https://timadey.hashnode.dev/testing-django-apps-effectively
👍1
How Do You Create a New Django Project?

To create a new Django project, follow these steps:

Install Django: Before starting a new project, install Python on your system. Then, open your terminal or command prompt and install Django using pip like this:
Copy codepip install django


Creat...

Read: https://bindu.hashnode.dev/how-do-you-create-a-new-django-project
👍1
What is Django, and what is its purpose in web development?

Django is a high-level, open-source web framework written in Python that facilitates rapid development and clean, pragmatic design in web applications. It follows the "batteries-included" philosophy, which provides many built-in features and tools to...

Read: https://bindu.hashnode.dev/what-is-django-and-what-is-its-purpose-in-web-development
1
Introduction to Web Development

INTRODUCTION
A day rarely passes when we do not interact with a website of some sort, either on our desktops, laptops, or mobile devices, we access these websites for various purposes, either to get information, carry out a task, make purchases, and ...

Read: https://bawoandy.hashnode.dev/introduction-to-web-development
How to Perform AND Queries in Django ORM

Django, as a popular web framework, provides a powerful Object-Relational Mapping (ORM) system that allows developers to interact with the database using Python code, abstracting away raw SQL queries.
One common requirement in building web applications is to perform complex database queries with multiple conditions.
In this article, we will explore how to execute AND queries using Django's ORM to filter …

Read: https://djangocentral.com/how-to-perform-and-queries-in-django-orm/
😁1
How to Perform OR Queries in Django ORM

Django is a popular web framework for Python that provides an intuitive and powerful Object-Relational Mapping (ORM) system. The Django ORM allows developers to interact with databases using Python classes and methods, abstracting away the underlying SQL queries.

While simple queries are straightforward to create using Django's QuerySet API, complex queries may require the use of OR statements.
In this article, …

Read: https://djangocentral.com/how-to-perform-or-queries-in-django-orm/
How to Perform NOT Queries in Django ORM

In Django, performing NOT queries allows you to exclude certain records from the query results based on specific conditions. The NOT operator, represented by the tilde (~) when used in conjunction with the Django ORM's Qobject, helps you construct complex queries with ease.
In this article, we will explore how to perform NOT queries in Django ORM, enabling you …

Read: https://djangocentral.com/how-to-perform-not-queries-in-django-orm/
Deploying Django Apps by Nginx in AWS

Project
Introduction
Once we have completed the development part of a web app it should be hosted so that the public can access it from anywhere. We will see how to deploy and host a Django application on an AWS EC2 instance using Nginx as the webser...

Read: https://diwatechwiz.hashnode.dev/deploying-django-apps-by-nginx-in-aws
Права в Django и django-rest-framework

Я Python Developer в компании Нетрика. В данной статье расскажу, как устроены разрешения в Django и django-rest-framework и как мы используем их на одном из проектов.


Читать: https://habr.com/ru/articles/749418/