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

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
Exception handling in DRF

Exceptions are errors or abnormal conditions that occur during the execution of a program. In Django (and Python in general), exceptions are a way to handle and respond to errors that occur while running code.
Here are some common exceptions that can...

Read: https://pythonislove.com/exception-handling-in-drf
Management Strategies in Django

Management strategies in application development are the methods and practices used to manage a team of developers, resources, timelines, and budgets to make sure that an application is built on time, on budget, and to the required quality standards....

Read: https://pythonislove.com/management-strategies-in-django
How I built domain hunter using OpenAI on a weekend

Introduction
When ChatGPT was released, everyone was in awe, and a few people built production on top of it. I was also in the same hype and created a product. It is called domain hunter — A tool that generates domains that are available for registra...

Read: https://blog.lokesh1729.com/how-i-built-domain-hunter-using-openai-on-a-weekend
Django Views - Class() based

As the name suggests, Django views can also be written in Class based style. The major advantage of using Class based views in Django is

Code reusability and Clean Code

But, when creating a complex Class with lots of inheritance or mixins can make ...

Read: https://djangotherightway.com/django-views-class-based
Dragons & Demons: making your own blog website

What's the best about having your own blog website?
Writing whatever you want...Experimenting...Doing all the crazy things that come to your mind!
My cute little baby...
But what a hell of a ride that was!!
Prelude
I work as a software engineer, pyth...

Read: https://aidas.hashnode.dev/dragons-demons-making-your-own-blog-website
👍1
Introduction to Machine Learning: k-Nearest Neighbors

Introduction
When considering machine learning models, a fundamental distinction is whether the model is supervised or unsupervised. This distinction is determined by the nature of the problem being addressed. For a more detailed comparison between s...

Read: https://gbreigns.hashnode.dev/introduction-to-machine-learning-k-nearest-neighbors
Implement Autocompletion in Django

Hello pals,
In this blog, I'll show you how to add autocomplete to the Django admin interface. I chose the admin interface because it lets me create, read, update, and delete (CREATE, READ, UPDATE, DELETE) models.
For implementing the auto completion...

Read: https://pythonislove.com/implement-autocompletion-in-django
Style Django Admin with Jazzmin

Hello Geeks, First of all, I would like to thank you for reaching here. You will undoubtedly be a successful Django developer in the future.
Introduction
In this blog, I am guiding to integrate django-jazzmin theme to the Django project. According to...

Read: https://pythonislove.com/style-django-admin-with-jazzmin
1
How to deploy a Django application

Introduction
If you are looking for a guide to deploying a Django application to production, then you are at the right place. This guide assumes that you have a working Django application. You can check if your application is healthy by running this ...

Read: https://blog.lokesh1729.com/how-to-deploy-a-django-application
Ищем человека, который будет строить сообщество по темам Python / Data Science / AI в Tproger

Если вы довольно неплохо разбираетесь в этих темах и при этом видите в себе желание рассказывать об этом другим разработчикам и вовлекать их в горячие обсуждения — возможно, это именно ваша вакансия.

Подробности, тестовое задание и отклик здесь: https://tprg.ru/GEZL
Developing an Inventory management system with Django and bootstrap.

Introduction.
A full working project code is hosted on this repository
Inventory => Inventory, also known as stock, refers to goods a business owns, with the aim to sell or use them in production.
Inventory management system => Inventory management ...

Read: https://mwass.hashnode.dev/developing-an-inventory-management-system-with-django-and-bootstrap
Building Custom User In Django

This post explains step-by-step how to create a custom User model in Django.
Objectives
By the end of this article, you should be able to:

Describe the difference between AbstractUser and AbstractBaseUser

Explain why you should set up a custom User...

Read: https://blogwithgajanan.hashnode.dev/building-custom-user-in-django
👍1
Creating Templates for Authentication

Overview
In this blog post, we will be creating templates for our authentication system. We will be creating a base template that will contain the common elements of all the templates and then we will create other templates which inherit from the bas...

Read: https://rishabhdev.hashnode.dev/creating-templates-for-authentication
👍1
Django Static Files

When we develop a web application we also need a way to use and serve static contents like (JS,CSS, and images ...)
In Django, any assets which are required for project development can be called static files. Some examples are:

JS files

CSS files

...

Read: https://djangotherightway.com/django-static-files
Encrypting a Django Rest Framework Response

Introduction
Encryption is the process data goes through to get transformed from a readable format(plaintext) to an unreadable format(ciphertext). After encryption, the ciphertext appears to be unreadable random data and anyone attempting to read the...

Read: https://charless.hashnode.dev/django-rest-framework-response-encryption
👍1
Django Rest Framework

UpDRF is a library which allows you to build APIs in your Django project.
How to install Django
Run,pip install Django
Starting a new project
Django-admin startproject drf
Installing Django rest Framework
Pip install Django Rest Framework
Create a ne...

Read: https://masiza.hashnode.dev/django-rest-framework
Creating your own Stock Market Heatmap using Django

In the world of finance, the ability to visualize market data can be a powerful tool for investors and traders. One popular way of representing financial data is through a heatmap, which can easily display large amounts of information in a visual for...

Read: https://manusrao.hashnode.dev/creating-your-own-stock-market-heatmap-using-django
Django for Beginners #1

Download source code here. ⬅️

Django is a high-level, free and open-source web framework written in Python. It is widely used for building complex web applications and is known for its ability to handle high traffic, its security features and for it...

Read: https://huericnan.hashnode.dev/django-for-beginners-1
Django for Beginners #2

Download source code here. ⬅️

Django is a web dev framework designed based on the MTV (Model-Template-View) structure. In this structure, the model is in charge of interacting with our database, each model should correspond to one database table. Th...

Read: https://huericnan.hashnode.dev/django-for-beginners-2
Django for Beginners #3

Download source code here. ⬅️

We introduced many new concepts in the previous articles, and you probably feel a bit lost. But don't worry, in this article, we will dig deeper and find out how the URL dispatchers, models, views, and templates can wor...

Read: https://huericnan.hashnode.dev/django-for-beginners-3
Django for Beginners #4

Download source code here. ⬅️

Finally, it is time for us to create a complete blog application using Django. In the previous article, we explored how the model, view, and template may work together to create a Django application, but frankly, it is ...

Read: https://huericnan.hashnode.dev/django-for-beginners-4