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
Особенности асинхронности в Python

Привет, Хабр! Меня зовут Николай Нагорный, я работаю в Росбанке над платформой Advisors’ Axiom. В этом посте я подробно расскажу о важной фиче, которая появилась в Python 3.5 — асинхронности. Затрону основные концепции и инструменты, приведу примеры кода. Пост будет полезен новичкам для понимания основ асинхронности и, может, даже опытным разработчикам в поиске новых идей и подходов.


Читать: https://habr.com/ru/companies/rosbank/articles/736698/
👍1
Building Course Assist Part 15: Setting up an SMTP server

An SMTP (Simple mail transfer protocol) server is an application or computer that sends, receives and relays emails. For Course Assist I set up a Gmail SMTP server on the backend to send verification code emails to users when they want to access the ...

Read: https://andysonm.hashnode.dev/building-course-assist-part-15-setting-up-an-smtp-server
Django Uncomplicated: Crafting Web Applications

In rookie terms...Django is a tool or framework in Python that helps developers create websites and web applications. It comes with a set of pre-built components and tools that make building web projects easier and smoother 😮.
For Example, Let's say...

Read: https://mirageazlit.hashnode.dev/django-uncomplicated-crafting-web-applications
Mastering Django ORM: Unleashing the Power of Object-Relational Mapping

Introduction
Querying the Database
Model Relationships
Advanced Queries and Aggregations
Performance Optimization
Conclusion
Introduction
Discover the potential of Django's Object-Relational Mapping (ORM) layer, a powerful tool that streamlines datab...

Read: https://rahulbiradar.hashnode.dev/mastering-django-orm-unleashing-the-power-of-object-relational-mapping
Understanding Query Optimization Techniques in Django ORM

Introduction
When working with Django's Object-Relational Mapping (ORM), it's essential to leverage efficient query optimization techniques to improve the performance of your application. In this article, we will explore two useful methods provided b...

Read: https://techwithsg.hashnode.dev/understanding-query-optimization-techniques-in-django-orm
Diff mixin to detect changes in Django models instances

Suppose you change your Django model instance, how do you know if the data actually changed? There are a few ways to achieve this, for example using django-simple-history which will add a database entry for every change to keep history.
However, you ...

Read: https://deepintodjango.com/diff-mixin-to-detect-changes-in-django-models-instances
Deploying A Django Project on PythonAnywhere

Deploying a Django project on PythonAnywhere lets you make your web application accessible online. With PythonAnywhere, you can create a web app, configure it with a WSGI file, and host your Django project seamlessly.
This article provides a comprehe...

Read: https://chrisdevcode.hashnode.dev/deploying-a-django-project-on-pythonanywhere
How I Developed a Fully Functional Django API Project Using ChatGPT

Django is one of the most popular web frameworks for building robust API projects. It is also one of my favorite frameworks to work with. Its versatility and powerful features make it an excellent choice for creating dynamic web applications. In rece...

Read: https://readmethis.hashnode.dev/how-i-developed-a-fully-functional-django-api-project-using-chatgpt
Another Valorant Stats Tracking Dashboard?

Yes and No.
Despite having a plethora of high-quality stats trackers for Valorant, you might be wondering why I decided to build one from scratch (of course excluding the API). Well, the answer is pretty simple.

As a Data practitioner and a Netizen,...

Read: https://blog.deepsonshrestha.com.np/another-valorant-stats-tracking-dashboard
Five Important Django Third Party Packages You Should Use

Django Third-Party Packages
Django third-party packages are additional libraries or extensions that are developed by the Django community to enhance the functionality and capabilities of the Django web framework. These packages provide ready-made sol...

Read: https://samuell.hashnode.dev/five-important-django-third-party-packages-you-should-use
WebSocket in Django

What is WebSocket?
Well, they are computer communication protocol which is used to communicate bi-directionally. It can be used by the server to send data to the client.
In short, they are used for real-time communication. Example: Chat applications,...

Read: https://foxy4096.hashnode.dev/websocket-in-django
Crafting Websites with django CMS: A Guide

Navigating the world of website building can be daunting, but with the right tools, it's easier than you might think. In 2007, a free Content Management System (CMS) called django CMS was launched by the Swiss marketing agency Divio AG. Based on the ...

Read: https://alexia.hashnode.dev/crafting-websites-with-django-cms-a-guide
Top Django Libraries for Cost Optimization and SEO-friendly Scalability in Production.

Title: Top Django Libraries for Cost Optimization and SEO-friendly Scalability in Production
Introduction:
Django is a powerful and widely-used Python web framework known for its simplicity, versatility, and scalability. When developing web applicati...

Read: https://pyguru.hashnode.dev/top-django-libraries-for-cost-optimization-and-seo-friendly-scalability-in-production
Day 1 of #100DaysOfCode

Let's go through the basics of Python
Variables: They are containers in which they store some type of value like string, integer, boolean, etc.
#In python we declare variable like this
phone = "charger"
print(phone)
phone = "case"
print(phone)
phon...

Read: https://alexrider04.hashnode.dev/day-1-of-100daysofcode
👍1
Google Summer of Code 2023 with Django Software Foundation

Hey there! I am Bhuvnesh Sharma, 3rd year IT student from G.L. Bajaj Institute of Technology and Management and I have cracked Google Summer of Code 2023 in my first attempt with one of the most reputed and famous open-source organizations, the Djang...

Read: https://devilsautumn.hashnode.dev/gsoc-2023-with-django
Unveiling the Power of Django's MVT Architecture

Introduction
Django, a widely-used and highly-regarded Python web framework, adheres to the Model-View-Template (MVT) architectural pattern. This design pattern offers a well-organized and systematic approach to constructing web applications, placing...

Read: https://thomascherickal.hashnode.dev/unveiling-the-power-of-djangos-mvt-architecture
Why are Django Forms so helpful and easy to use?

After learning Flask, it has been quite a few months since I started using Django. And clearly, it makes your work easier. Let it be Django forms, authentication, or its ORM, every aspect of development gets covered.

Till now, I tried quite a few Dj...

Read: https://saumyacodes.hashnode.dev/why-are-django-forms-so-helpful-and-easy-to-use
A brief overview of WSGI and usage of Gunicorn and Nginx in Django

This article will briefly explain the functionality and usage of WSGI, Gunicorn and Nginx in collaboration with Django. It will help you to understand the process of deploying Django applications on the server and will clarify the role of WSGI file.
...

Read: https://codewithrashid.hashnode.dev/a-brief-overview-of-wsgi-and-usage-of-gunicorn-and-nginx-in-django
Managing User Permissions in Django: Best Practices and Strategies

Introduction
User permissions are a critical aspect of any Django application, as they ensure proper access control and protect sensitive data. Effectively managing user permissions allows developers to define who can perform specific actions and acc...

Read: https://codewithrashid.hashnode.dev/managing-user-permissions-in-django-best-practices-and-strategies
👍1
Dashing with Django: Unleash Your Web Development Superpowers

INTRODUCTION
Django is a high-level, open-source web framework written in Python. It follows the model-view-controller (MVC) architectural pattern, or more precisely, the model-template-view (MTV) pattern, which provides a structured and efficient wa...

Read: https://aryantech.hashnode.dev/dashing-with-django-unleash-your-web-development-superpowers