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

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
Лучшие open-source инструменты для Python проектов

Open-source проекты, сторонние инструменты и библиотеки - это то, за что мы действительно любим Python. В этой статье я собрал самые полезные, валидированные сообществом и проверенные временем инструменты, конфигурации которых можно встретить в популярных проектах с открытым исходным кодом.

Инструменты распределены по этапам/сферам разработки. По каждому из них я дам небольшое описание и попытаюсь рассказать о его пользе. Если утилита имеет дополнительные расширения/плагины, то я расскажу про самые полезные (на мой взгляд).


Читать: https://habr.com/ru/post/708916/
Dev Retro 2022 - Beginning of my professional career

My apologies if there are any errors due to my level of English.
Before doing my dev retro 2022, I'll talk a little bit about 2021 or should I say the last 6 months of 2021, because these months have a serious impact on my career choice. So let's go....

Read: https://tawaldevuniverse.hashnode.dev/dev-retro-2022-beginning-of-my-professional-career
Асинхронный django. Фильм 4-й: Воскрешение

Некоторые читатели видели мои статьи об асинхронном django. Последней попыткой была версия, основанная на гринлетах. Но и о ней я написал в предыдущей статье, что решил её не развивать. Писать фреймворки - дело неблагодарное, поэтому даже небольших сомнений хватило, чтобы так решить.
Однако недавно мне пришла в голову более изящная форма для этого всего, и сомнения исчезли. Проекту быть! Встречайте - fibers <здесь
Помимо этих хороших новостей, Вы узнаете о том, что корутины - это простые генераторы, а также, как выглядит самый простой Awaitable.

Обложка, если что - из последней Матрицы. Это Сати - девушка и причёска, любуйтесь.
Читать

Читать: https://habr.com/ru/post/708946/
Everything you need to know about Django(Python) as a Beginner

As a newbie, forget all the noise and learn Django for backend web development (well do your research and see what is suitable for you).
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built ...

Read: https://akolade.hashnode.dev/everything-you-need-to-know-about-djangopython-as-a-beginner
Collaboration > Competition with the Open Source - DevRetro 2022

A petite crust of my development journey
I've always wanted to explore the tech field but was a bit confused should I start AI/ML or web dev or maybe app development? A couple of months ago, I was browsing YouTube when I came across a video about ope...

Read: https://saurabhdev.hashnode.dev/collaboration-competition-with-the-open-source-devretro-2022
How We migrate a Joomla based website to a Django Backend with 90 Gb worth of data

Context
A few years ago while I was still running my Django Consultancy Agency, We worked with a client who built a website over the years with a Content Management System (CMS) named Joomla and he was facing some issues such as adding new features, ...

Read: https://blog.adonissimo.com/how-we-migrate-a-joomla-based-website-to-a-django-backend-with-90-gb-worth-of-data
Collaboration rather than Competition with the Open Source - DevRetro 2022

A petite crust of my development journey
I've always wanted to explore the tech field but was a bit confused should I start AI/ML or web dev or maybe app development? A couple of months ago, I was browsing YouTube when I came across a video about ope...

Read: https://saurabhdev.hashnode.dev/collaboration-rather-than-competition-with-the-open-source-devretro-2022
Using .gitignore in a Django project

A .gitignore is a file that specifies files and directories that git should ignore when adding files to the repository.
The .gitignore is usually placed in the root directory of the repository, and it applies to all subdirectories underneath it.
Some...

Read: https://allthingstechie.hashnode.dev/using-gitignore-in-a-django-project
Outreachy: Week five

I wish you all a happy and prosperous new year. I presume you had a relaxing holiday or a lot of fun. As for me, just like I predicted in my last article on my Outreachy internship with Wagtail, the holiday was a busy one for me.
Last week, I shared ...

Read: https://activuscode.hashnode.dev/outreachy-week-five
Dockerize Your Django App in 5 Easy Steps: A Comprehensive Guide

Docker is a popular tool for packaging and deploying applications. It allows you to run your applications in a containerized environment, which can make it easier to manage dependencies, reduce conflicts, and improve the overall portability of your a...

Read: https://twarga.hashnode.dev/dockerize-your-django-app-in-5-easy-steps-a-comprehensive-guide
Integrating Paystack payments in Django website

This article was originally published on dev.to and has been republished here with permission.
TABLE OF CONTENTS

Introduction
Prerequisites
Project Setup
Creating models
User registration and login
Implementing deposit view
Conclusion
Reference

In...

Read: https://phantom.hashnode.dev/integrating-paystack-payments-in-django-website-clclm543c001008k0hh78d55x
👍1
My Infrastructure as Code Rosetta Stone - Deploying the same web application on AWS ECS Fargate with CDK, Terraform and Pulumi

tl;dr
I wrote three infrastructure as code libraries for deploying containerized 3-tier web apps on AWS ECS Fargate using CDK, Terraform and Pulumi. This article will provide an overview of my experience working with these three IaC tools and will sh...

Read: https://briancaffey.hashnode.dev/my-infrastructure-as-code-rosetta-stone-deploying-the-same-web-application-on-aws-ecs-fargate-with-cdk-terraform-and-pulumi
Django Form Validation

Introduction
In this article, I will show you how form validation works in Django. I will also show you how to write your own custom validators. Understanding how this process works is very important because most web applications use forms to grab in...

Read: https://harunacodes.com/django-form-validation
🔥1
Handling exceptions in Django from middleware

A problem that many Django programmers face is uncaught exceptions triggering a 500 HTTP response. Even when you think you have covered all cases, there might be some external package that raises something else than you expect.
One elegant way to cop...

Read: https://deepintodjango.com/handling-exceptions-in-django-from-middleware
Handling exceptions in Django in the middleware

A problem that many Django programmers face is uncaught exceptions triggering a 500 HTTP response. Even when you think you have covered all cases, there might be some external package that raises something else than you expect.
Most people solve this...

Read: https://deepintodjango.com/handling-exceptions-in-django-in-the-middleware
Starting A Django Project

To start a Django project, you will need to have Python and Django installed on your system. If you don't have them installed, you can install them using the following steps:
Install Python by downloading the latest stable release from the official w...

Read: https://favourtech.hashnode.dev/starting-a-django-project
🤯3
Why Virtualenv is Important for Django Development?

# Why Virtualenv is Important for Django Development

## Create a separate virtual environment for each project:
`Virtualenv` is a tool that allows you to create a separate Python environment for each `Django` project you work on. This can be particu...

Read: https://sarahthedeveloper.hashnode.dev/why-virtualenv-is-important
I had to integrate few React components in a Django View using jQuery: A Journey

A small journey into my Tech World filled with bizarre experiences. One such instance that comes to mind is when I had to make some enhancements to an existing UI that was written earlier. The older Tech Stack was Django-based SSR (using View Templat...

Read: https://theprodev.hashnode.dev/rendering-react-component-in-django-jquery-ui
Deploy Django App with AWS Elastic Beanstalk and AWS RDS Database

This blog post outlines the process for deploying a Django web app to the cloud using AWS Elastic Beanstalk. The application data is stored in a database that is also cloud-hosted using an AWS Relational Database Service (RDS) DB instance.
Objectives...

Read: https://fafacodes.hashnode.dev/deploy-django-app-with-aws-elastic-beanstalk-and-aws-rds-database
Deploy Django App with AWS Elastic Beanstalk and AWS RDS

This blog post outlines the process for deploying a Django web app to the cloud using AWS Elastic Beanstalk. The application data is stored in a database that is also cloud-hosted using an AWS Relational Database Service (RDS) DB instance.
Objectives...

Read: https://fafacodes.hashnode.dev/deploy-django-app-with-aws-elastic-beanstalk-and-aws-rds
Django: Views and URL Mapping

When I started learning Django, it took me a while to understand the concept of views and URLs mapping especially when you learn from random dudes on YouTube. one time your web app is correctly producing views for each request and the next it's produ...

Read: https://savviesammie.hashnode.dev/django-views-and-url-mapping