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

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
Where to learn Django with htmx in 2022

I am eager to learn a new stack that would add value to my django projects. My new friend is htmx, and I feel like sharing the resources on where to learn about using htmx with Django . In this article, I will look at online resources that I think ar...

Read: https://ngazetungue.hashnode.dev/where-to-learn-django-with-htmx-in-2022
How to use firebase to send real-time notifications in Django apps

Introduction
Recently, I have been exploring quite a few ways to add real-time functionality in Django applications. During my hunt, I came across many third-party services like PubNub, Pusher, and now Firebase which I think is the most exciting of a...

Read: https://hashnode.abdadeel.com/how-to-use-firebase-to-send-real-time-notifications-in-django-apps
👍2
Django Python Generate QrCode Example Tutorial

Hi Dev,
Today, how to generate a qr code in django is our main topic. Here you will learn how to generate a qr code in django and python. you'll learn how to generate a qr code in django example. you can understand a concept of how to generate a qr c...

Read: https://tuts-station.hashnode.dev/django-python-generate-qrcode-example-tutorial
👍1
Customizing Slug Field for Post Model | Django CMS Building By shriekdj

So In Previous Post I Created The Simple Django Model of the BlogPost Which Stores Data Like Given Below.
class Post(models.Model):
title = models.CharField(verbose_name='title', max_length=255, null=False)
content = models.TextField(verbose_...

Read: https://shriekdj.hashnode.dev/customizing-slug-field-for-post-model-django-cms-building-by-shriekdj
Connect Your Django Projects to PlanetScale Databases

TL;DR
PlanetScale is a MySQL-compatible serverless database platform. Since its database service is a bit different from the actual MySQL, there are some limitations that you can't ignore and must resolve to be able to work with their services. This ...

Read: https://imsadra.me/connect-your-django-projects-to-planetscale-databases
Understanding Amazon SQS with Python and Django - Part 2

Hello👋, This is part 2 of my two-part series on Understanding Amazon SQS with Python and Django. This article assumes you have read the first article in the series; You can find that article at Understanding Amazon SQS with Python and Django - Part ...

Read: https://moreabouttech.com/understanding-amazon-sqs-with-python-and-django-part-2
Django Form Submit using Form.js Example

Hi Dev,
Now, let's see article of django form submit using form.js example. I explained simply step by step django jquery form-js example. I would like to share with you how to without page refresh form submit using form js plugin. I would like to sh...

Read: https://tuts-station.hashnode.dev/django-form-submit-using-formjs-example
👍2
Caching in Django Explained

When was the first time you encountered caching in Django?
Was it during an interview question like I did?
Most new developers don’t care or even know about caching. You are more interested in making your views presentable and mastering everything ...

Read: https://donesrom.hashnode.dev/caching-in-django-explained
👍1
Django и PWA

Всем привет! Гуляя по Хабру, мне ни разу не доводилось обнаружить статью на тему Django + PWA. А ведь тема интересная (лично мне пришлось потратить 4 дня на то, чтобы с ней разобраться). И дабы сэкономить ваше время, в данной статье я попытался представить достаточно простой способ для создания прогрессивного веб приложения (PWA) вместе с Django без сторонних библиотек.


Читать: https://habr.com/ru/post/682790/
How to Create Zip File and Download in Django?

Hi Dev,
Now, let's see example of django create zip file. you will learn how to create zip file and download in django. you can understand a concept of django create zip archive file and download it in response. step by step explain create a zip file...

Read: https://tuts-station.hashnode.dev/how-to-create-zip-file-and-download-in-django
👍1
Django & Heroku: a match made in heaven?

My very first blog post on Hashnode was about the trials and tribulations of deploying a Django project on AWS. I knew then that my next project would use a different cloud hosting provider, and from what I'd read the choices for a small, low-budget ...

Read: https://nomadiq.hashnode.dev/django-heroku-a-match-made-in-heaven
How to Generate Barcode in Django?

Hi Dev,
This is a short guide on django generate barcode. We will look at example of how to generate barcode in django. you can understand a concept of how to create barcode in django. we will help you to give example of how to save generated barcode...

Read: https://tuts-station.hashnode.dev/how-to-generate-barcode-in-django
How to create a Django environment and run your Django project

In order to create an environment for your django project, you will have to go through some steps.
Step1:
The first step is to go to the command prompt , you can search for that on the search bar.

Step2:
In the command prompt, check if you...

Read: https://djangoproject.hashnode.dev/how-to-create-a-django-environment-and-run-your-django-project
👍1
Django ORM in a nutshell

Python's Django framework, would not be complete if it did not include a way to interact with databases. The feature that makes it more powerful is its ORM.
What is ORM
ORM (Object-Relational Mapping) is a technique that uses an object-oriented para...

Read: https://doroh.hashnode.dev/django-orm-in-a-nutshell
Column Filter Table with htmx, Alpine-js, and Django

Have you ever needed to create a table where you need to filter between multiple columns? Maybe you've tried using a standard table with a single search/filter input field, but it didn't quite work the way you wanted.
This article will show how I bu...

Read: https://enzircle.com/column-filter-table-with-htmx-alpine-js-and-django
Django News - Understanding Async Python & Django - Aug 19th 2022

Read: https://django-news.com/issues/141
👍1
Launching a full functional MVP in under a week! (with code)

In this article I'll be going what I did to launch my MVP in under a week.

The project is called SpacedLeets (https://spacedleets.com/) - a platform for engineers to solve Leetcode problems and prepare for technical interviews. SpacedLeets utilizes...

Read: https://vercil.hashnode.dev/launching-a-full-functional-mvp-in-under-a-week-with-code
Test Your Django Application

As a developer on a team, you have written a nice cool feature and you are so sure that it is giving the expected responses for both successful and unsuccessful requests, So you make a pull request for the team lead to review and merge but the team l...

Read: https://djangoway.hashnode.dev/test-your-django-application
Getting started with django

What is Django?
Among the many back-end web frameworks,Django is one of the most popular framework out there.
Being a high-level python framework, it encourages rapid-paced development and clean design. As it is built by experienced developers it is ...

Read: https://sailess.hashnode.dev/getting-started-with-django
How to Send Email with Multiple File Attachment in Python Django?

Hi Dev,
This article will provide some of the most important example how to send email with multiple file attachment in python django. you can see send email multiple file attachment in python django example. you can see send multiple files attachmen...

Read: https://tuts-station.hashnode.dev/how-to-send-email-with-multiple-file-attachment-in-python-django