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

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
Django basics

Django is a popular open-source web framework written in Python. It follows the Model-View-Controller (MVC) architectural pattern and is designed to make web development faster and easier. With Django, you can quickly build complex web applications w...

Read: https://computergeeks.hashnode.dev/django-basics
Beginners guide to Django

Introduction
Django is a high-level web framework for Python that helps developers to create complex web applications easily and efficiently. If you are new to Django, here is a beginner’s guide to help you get started:
Steps
Installation: The first ...

Read: https://kabakiantony.hashnode.dev/beginners-guide-to-django
👍1
Booking a room at the same time

How would you handle different users booking a room at the same time?
In most cases, as a developer, you are faced with the challenge of preventing multiple users from booking the same room or a reservation at the same time. We will try and resolve t...

Read: https://jeffnyak.hashnode.dev/booking-a-room-at-the-same-time
Как изучать язык Python для веб-разработки в 2023 году. Общие ориентиры

Привет, Хабр! Меня зовут Тимофей, я Python Engineer с опытом в 3+ года.

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

Скорее, я хотел бы составить абстрактный план обучения, который сможет задать общий ориентир, а также будет коррелировать с роадмэпом вроде roadmap.sh. Кроме этого, я смогу дать несколько полезных советов из своего опыта, а также составлю списки полезных ресурсов для изучения языка, сопутствующих инструментов и технологий, которые в свое время помогли или же помогают мне самому.


Читать: https://habr.com/ru/post/718376/
👍2🤮1
How to add a custom widget to django-jet admin panel with custom dashboard?

here's a step-by-step tutorial for adding a custom widget to the Django-jet admin panel with a custom dashboard:

First, make sure that you have installed the Django-jet library by running pip install django-jet.

Next, create a Django app by running...

Read: https://computergeeks.hashnode.dev/how-to-add-a-custom-widget-to-django-jet-admin-panel-with-custom-dashboard
👍1
Getting Started with Wagtail: A Beginner's Installation Guide

What is wagtail?
Wagtail is an open-source content management system built on Django, It's focused on user experience, and offers precise control for designers and developers.
How to install Wagtail on Windows Operating System
This guide is recommend...

Read: https://dinetech.hashnode.dev/getting-started-with-wagtail-a-beginners-installation-guide
Outreachy: Week twelve

As the end of my Outreachy internship with Wagtail draws nearer, my focus has been on understanding the core technology of the Wagtail CMS. As of yet, this has involved learning a new programming language and completing numerous programming tasks.
In...

Read: https://activuscode.hashnode.dev/outreachy-week-twelve
👍1
Getting Started with Web Development!!

If you're looking to build web applications using Python, then Django is a great framework to get started with. Django is a powerful, open-source framework that makes it easy to build web applications quickly. In this blog, we will provide you with a...

Read: https://mayankaggarwal.hashnode.dev/getting-started-with-web-development
Integration Testing Django Apps with Pytest

As software development progresses rapidly and consumers demand more functionalities within shorter development timeframes, developers may feel tempted to rush through testing and software release. However, rushing through testing can have serious co...

Read: https://devjatta.hashnode.dev/integration-testing-django-apps-with-pytest
👍1
Пишем сервис для сокращения ссылок на Django, DRF

В этой статье мы напишем сервис для сокращения ссылок на Django, DRF.

Итак, на днях я получил тестовое задание от потенциального работодателя и решил убить двух зайцев сразу: выполнить тестовое задание и написать статью, в которой подробно описать весь процесс.

Итак, что мы имеем.


Читать: https://habr.com/ru/post/718800/
Creating a Login Page in 2 min

In this tutorial, we will show you how to create a login page with Django, one of the most popular Python web frameworks. We will use Django's built-in authentication system to handle user authentication. Let's get started!
Step 1: Create a New Djang...

Read: https://mayankaggarwal.hashnode.dev/creating-a-login-page-in-2-min
👍2
Hunting Heisenberg with Django Rest Framework

The idea
The idea was to create a simple platform for DEA agents, to manage information about characters from the Breaking Bad/Better Call Saul universe. To make the DEA agents' life easier, they need to have an API endpoint that allows filtering inf...

Read: https://drango.hashnode.dev/hunting-heisenberg-with-django-rest-framework
👍1
Creating a Signup page from scratch!!

Django is a powerful and popular web framework for building web applications. In this blog, we will discuss how to create a signup page in Django from scratch, using Python code.
Step 1: Creating a Project
Setting up the project: Before we begin crea...

Read: https://mayankaggarwal.hashnode.dev/creating-a-signup-page-from-scratch
👍1
Building Course Assist Part 4: Creating a simple expert registration and verification system.

Initially, the feature I was supposed to work on was the earnings feature which involves a record of the amount of money an expert makes after each question they've answered but just when I was about to start working on it I found out I had already d...

Read: https://andysonm.hashnode.dev/building-course-assist-part-4-creating-a-simple-expert-registration-and-verification-system
👍1
Access your API (Django) running on Localhost from Android Device



Recently I was building a flutter app and was using Django to build its backend. I wanted to call by APIs from my app which was running on my phone after searching the net I finally found t...

Read: https://mukund-tandon-dev.hashnode.dev/access-your-api-django-running-on-localhost-from-android-device
👍2
I made a Face Recognition Attendance System Using Face Encodings and Django

Face recognition attendance is a system that uses face encodings to identify individuals and keep track of their attendance. This system is gaining popularity in various organizations and institutions, as it offers a quick, convenient and secure way ...

Read: https://lighttoinfinity.hashnode.dev/i-made-a-face-recognition-attendance-system-using-face-encodings-and-django
🤡2
Setting up a Django project

Django is one of the best web frameworks written in python. It enables to build the full-scale web application efficiently as it contains many libraries and tools that handle many tasks like URL routing, authentication, database management, and more ...

Read: https://srujangowda.hashnode.dev/setting-up-a-django-project
Your first API with Django Rest in just 5 min. (Windows)

What is Django? :-
Django is a free and open-source framework for Python. Django, pronounced "Jango," is named after the famous jazz guitarist Django Reinhardt. Django made its first release in 2005 and it follows MVC architecture.
What is Django Res...

Read: https://anshi.hashnode.dev/your-first-api-with-django-rest-in-just-5-min-windows
Build API Key Authentication in your Django REST application: Django, Django REST, Simple API Key, Docker

Depending on the needs of a web application you are working on, you might want to implement ApiKey authentication if you want certain entities to access some of your API resources. API authentication is great for the following cases:

Rate limiting: ...

Read: https://koladev.hashnode.dev/build-api-key-authentication-in-your-django-rest-application-django-django-rest-simple-api-key-docker-clelm200p00080ale9tube2ly
👍1
Mastering Database Migrations in Django

Django is a popular web framework known for its powerful features and the ability to manage database migrations with ease. In this blog post, we will cover the basics of Django migrations, including what they are, how they work, and how to use them i...

Read: https://blog.saurav-shrivastav.online/mastering-database-migrations-in-django
👍1