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
What's a REST API and how to build a simple REST API with Django.

First things first, what is an API?

Application Programming Interface

A mechanism that houses a collection of communication protocols and subroutines that allow two or more applications to communicate with each other.


What is a REST API?
REST (Re...

Read: https://carloscodesstuff.hashnode.dev/whats-a-rest-api-and-how-to-build-a-simple-rest-api-with-django
Forwarded from Zen of Python
​​Разбор фичей Django 5

15-минутное видео с канала «Павлин шарит», в котором автор доступно рассказывает с примерами кода, что же нового у фреймворка.

Для тех, кто хочет свериться: Django 5 Release Notes

#django
👍1
Understanding Static Files in Django

Django, a high-level Python web framework, empowers developers to build robust and dynamic web applications. As you embark on your journey to become a Django developer, it's crucial to grasp the concept of static files within the framework.
What are ...

Read: https://blog.nischallamichhane.com.np/understanding-static-files-in-django
Docker Containerization for Django Application

Hey there, welcome! In this article, I am going to walk you through the fascinating world of Docker containerization and guide you on how to Dockerize your Django application. Docker has become a game-changer in the world of software development, all...

Read: https://subashneupane7.hashnode.dev/docker-containerization-for-django-application
Generating Schema Visualisations in Django - An Introduction to DjangoViz

We all must have learnt about ERDs (Entity Relationship Diagrams). The developers know the importance of ERDs. They help us visualise the data models and help us understand the relationships between different entities used in our system. They help us...

Read: https://musaaib.hashnode.dev/generating-schema-visualisations-in-django-an-introduction-to-djangoviz
Django vs Laravel: Guides to Choosing the right framework.

Introduction
Choosing the right web framework is a critical decision for developers, and two options that often stand out are Django (Python) and Laravel (PHP). I will delve into the distinctive features of both frameworks, helping you make an inform...

Read: https://chasfat-django-blog-for-beginners.hashnode.dev/django-vs-laravel-guides-to-choosing-the-right-framework
👎1
My SaaS journal, Idk

Hey everybody, Muhammad Anas here.
It's been about a year since I wrote again, but I don't have much to say. I want to start a newsletter right now on Hashnode to document my SaaS journey and fulfill the spirit of "building in public", get your advic...

Read: https://muhammadanas0716.hashnode.dev/my-saas-journal-idk
AWS IAM: Your Ultimate Guide to Identity and Access Management Unveiled

IAM (Identity and Access Management)
In simple terms this service help us to manage the access of different AWS services among different users working in a company or startup, which is very important because the services required by Database administ...

Read: https://karankulx.hashnode.dev/aws-iam-your-ultimate-guide-to-identity-and-access-management-unveiled
Exploring Django Models and ORM(Object Relational Mapper)

Django, the web framework for perfectionists with deadlines, boasts a robust Object-Relational Mapping (ORM) system that simplifies database interactions. In this exploration, we embark on a journey into the heart of Django's data layer—Models and OR...

Read: https://chasfat-django-blog-for-beginners.hashnode.dev/exploring-django-models-and-ormobject-relational-mapper
Mastering Data Transfer: A Django Developer's Guide to Database Migration

Overview
The Django Data Migration Tutorial is a step-by-step guide to seamlessly transfer data between databases and deploy your Django application to different environments without losing critical data. This tutorial focuses on flexibility, allowin...

Read: https://pythonic-vishnu.hashnode.dev/mastering-data-transfer-a-django-developers-guide-to-database-migration
[PostgreSQL Scaling and Optimization] How to search on 10 GB data (1 million rows) within 20 ms?

Warning

This article will help you to make a full text search API on PostgreSQL - a kind of text and retrieval problem.

Nowadays, in large-scale system, people usually decouple write-heavy DB and read-heavy DB, not one for all. Example: using Postg...

Read: https://leonardkieu.hashnode.dev/postgresql-scaling-and-optimization-how-to-search-on-10-gb-data-1-million-rows-within-20-ms
👍1🦄1
Нет новогоднего настроения? Сейчас исправим:

1. Налейте чаю
2. Сядьте поудобнее
3. Откройте «Конфетный рандом» 
4. Возьмите конфетку
5. Ладно, возьмите ещё одну конфетку
6. Поделитесь ссылкой с друзьями

Всем джингл беллс!
😁1
Django Views and Templates: Crafting Dynamic Web Experiences

In Django web framework , Views and Templates are responsible for shaping how your web application looks and behaves. In this article let's unravel the intricacies of Views—which helps with request processing—and Templates—with renders the dynamic an...

Read: https://chasfat-django-blog-for-beginners.hashnode.dev/django-views-and-templates-crafting-dynamic-web-experiences
[PostgreSQL Scaling and Optimization] How to search on 10 GB data (1 million rows) within 5 ms?

Warning

This article will help you to make a full text search API on PostgreSQL - a kind of text and retrieval problem.

Nowadays, in large-scale system, people usually decouple write-heavy DB and read-heavy DB, not one for all. Example: using Postg...

Read: https://leonardkieu.hashnode.dev/postgresql-scaling-and-optimization-how-to-search-on-10-gb-data-1-million-rows-within-5-ms
How to Upload Django Project to Github.?

Introduction
In this blogpost article you will learn how you can push a django project to Github with the help of Git. Git is a software package used for version control of your source code. It enables you to update your code, whilst still being able...

Read: https://irfanblogs.hashnode.dev/how-to-upload-django-project-to-github
Migrating Django App From Postgres to MongoDB

So, we've got Postgres, the SQL-compliant RDBMS, giving us that structured, organized feel. Then there's MongoDB, the NoSQL rebel, saying, "Who needs tables anyway? Not me!"
When you're trying to keep Jeff Bezos from raiding your piggy bank in AWS-RD...

Read: https://muizz.hashnode.dev/migrating-django-app-from-postgres-to-mongodb
Getting Started with Django: A Beginner's Guide

Introduction
Welcome to the world of Django, where building web applications becomes a breeze! Whether you're a coding enthusiast or a beginner eager to explore web development, Django is a fantastic framework to kickstart your journey. In this guide...

Read: https://daichi.hashnode.dev/getting-started-with-django-a-beginners-guide
Django and React

Introduction:

Brief overview of Django and React.

Why they're popular choices for web development.


Setting Up Your Environment:

Installing Django and setting up a project.

Integrating React with Django (Webpack, Create React App, etc.).


Build...

Read: https://timingotech.hashnode.dev/django-and-react
Implementing Celery with Django using RabbitMQ

In web development, Django operates synchronous request-response cycle. However, certain tasks such as sending emails, processing large dataset, or handling time-consuming operations, can introduce delays that impact user experience. Let me demystify...

Read: https://victorolusola.hashnode.dev/implementing-celery-with-django-using-rabbitmq
Django Signals Demystified: Streamlining Model Interactions

Let me start by an easy question. What do you understand by a signal? You're right if your answer is somewhere around, 'A signal is just an indication that a particular thing has taken place'.
Here are some real life examples:
On a road, a red signal...

Read: https://musaaib.hashnode.dev/django-signals-demystified-streamlining-model-interactions
👍1