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
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
Django for Beginners #5

Download source code here. ⬅️

In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django

When you add more and more posts to...

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

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-getting-started
Django for Beginners #2 - The MTV Structure

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-the-mtv-structure
Django for Beginners #3 - The CRUD Operations

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-the-crud-operations
Django for Beginners #4 - The Blog App

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-the-blog-app
Django for Beginners #5 - Some Advanced Features

Download source code here. ⬅️

In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django

When you add more and more posts to...

Read: https://huericnan.hashnode.dev/django-for-beginners-5-some-advanced-features
How to Deploy a Django Project

In the Django tutorial series, we talked about how to create a basic Django application. But there is a significant part that is missing from the tutorial, that is how to deploy our app so that it is accessible to the public.
In this article, we'll t...

Read: https://huericnan.hashnode.dev/how-to-deploy-a-django-project
Creating a To-Do list with Django.

Before we begin I'd recommend going through Getting started with Django.
Are you looking to build a simple to-do list app using Django? In this tutorial, I'll guide you through the process of building a basic to-do list web app using Django.
Prerequi...

Read: https://saurabhdev.hashnode.dev/creating-a-to-do-list-with-django
Django-jwt

step 1) pip install pyjwt
step 2) import jwt
next need to encode the data, in jwt we have 3 parts of data
(1) Algorithm eg 'HS256' for hashing
(2) Payload (actual data)
(3) secret_key to verify
and we can able to decode the data as well
WORKING:
Afte...

Read: https://djangojwt.hashnode.dev/django-jwt
🔥1
My Bizzare Adventures with Wagtail: A dive into Open Source

Introduction
Hola Amigos!
This blog envelopes my journey so far with Open Source and Wagtail: My first Open-Source organization.

Challenges to a Beginner in Open Source.
Something that I've heard very much and experienced is setting up the environme...

Read: https://acehunter.hashnode.dev/my-bizzare-adventures-with-wagtail-a-dive-into-open-source
Analytics with Django & Chart.js - Simpler Than Expected

Recently, we decided to expand our car selling platform with a new search feature that allowed consumers to search for dealerships in their area based on unique metrics that we extract from their historic inventory data like average prices, models, a...

Read: https://aidev.hashnode.dev/analytics-with-django-chartjs-simpler-than-expected