Django Unleashed Framework
1.42K subscribers
2.21K photos
1 video
2.64K links
Лучшие материалы по разработке на фреймворке Django на русском и английском языке

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
Разница между Django, Laravel и Ruby On Rails

Нет сомнений, что Django, Laravel и Ruby On Rails — одни из самых популярных фреймворков для веб-разработки. Однако компании, которые ищут для себя лучшие решения, часто не знают, что выбрать. В этой статье я расскажу о трех различных фреймворках, их сильных сторонах и ограничениях, а также постараюсь разъяснить, какой из трех фреймворков наиболее применим и полезен для вас и вашего бизнеса.


Читать: https://habr.com/ru/post/656223/
Подборка практических и обучающих материалов по Python и Django для начинающих

Мы перевели для вас статью, которая будет полезна для начинающих Python/Django разработчиков. Вам не обязательно проходить каждый курс полностью. Лучше начинать с самых простых уроков и практики. И еще один важный совет: всякий раз, когда вы изучаете новый тип данных, класс или функцию, не забудьте проверить официальную документацию. В один прекрасный день вам не понадобится ничего, кроме…

Читать: «Подборка практических и обучающих материалов по Python и Django для начинающих»
Проекты на Django для начинающих: двухчасовой видеокурс

Сделайте эти проекты на Django, чтобы познакомиться с самым популярным фреймворком для создания веб-приложений на языке Python.

Читать: «Проекты на Django для начинающих: двухчасовой видеокурс»
👍1
Почему вам стоит выбрать фреймворк Django для своего следующего проекта

Senior Python Developer рассказывает про возможности Django, а также советует, в каких проектах стоит применять этот фреймворк.

Читать: «Почему вам стоит выбрать фреймворк Django для своего следующего проекта»
Django News - Python Web Conference and Wagtail Space US next week - Mar 18th 2022

Read: https://django-news.com/issues/119
Django Datta Able - Premium Starter

Hello Coders!
This article presents a simple Django Starter crafted by AppSeed on top of a colorful Bootstrap design. Django Datta Able is a premium starter that provides a solid codebase enhanced with database, authentication, and Docker support on...

Read: https://app-generator.hashnode.dev/django-datta-able-premium-starter
Validating and Verifying emails in Django

A valid email address consists of an email prefix and an email domain, both in acceptable formats. The prefix appears to the left of the @ symbol. The allowed characters in an email prefix are letters (a-z), numbers, underscores, periods, and dashes...

Read: https://codevert.hashnode.dev/validating-and-verifying-emails-in-django
👍1
Платим пользователям, не платим за рекламу, или подкючение системы вознаграждений на сайт в 3 простых шага

Для того чтобы получить полезный трафик не обязательно платить за размещение рекламных постов и баннеров на сторонних площадках и тратить на это значительную часть своего рекламного бюджета. Уже давно вошли в моду системы лояльности, которые позволяют финансово вознаграждать своих пользователей за активность в приложении. Это своего рода внутренний арбитраж трафика: мы закупаем активность, своих же пользователей в обход посредников. Чтобы это реализовать потребуется несколько часов свободного времени и капелька желания.


Читать: https://habr.com/ru/post/656641/
👍1
Models Part 2 (Django models relationship)

Table relationships in Relational Database design
1. One to One relationship (1-1)

A relation is said to be 1-1 if a row in Table A can have only one matching row in Table B
Let's take an example of simple 1-1 relationship between user and user_det...

Read: https://djangotherightway.com/django-models-relationship
Docker compose + Django project

In the previous article I introduced docker to you and showed how it can be used with a Django project. We also saw how we can run an app in a container in our local system.
In this write up, I will be taking it a step further with the same codebase ...

Read: https://blog.oyetolataiwo.com/docker-compose-django-project
Containerizing a Django app with Docker and Docker-compose

In the previous article I introduced docker to you and showed how it can be used with a Django project. We also saw how we can run an app in a container in our local system.
In this write up, I will be taking it a step further with the same codebase ...

Read: https://blog.oyetolataiwo.com/containerizing-a-django-app-with-docker-and-docker-compose
Responsive table with Django and htmx

As a developer, you will need to create tables in your web applications. To create a table in Django, you typically implement a set of APIs on the server-side that transfer data to the client and use a Javascript table library on the client-side. But...

Read: https://enzircle.com/responsive-table-with-django-and-htmx
PyDev of the Week

This week we welcome Ngazetungue Muheue as our PyDev of the Week! Ngazetungue helps organize PyCon Namibia and is the co-founder of Python Namibia. He is an active speaker and a member of the Python Software Foundation.

Read: https://hashnode.com/post/pydev-of-the-week-cl14pe76a00260vnv0dn5gro5
👍2😁1
A Guide to OAuth2.0 Authorization with Django Rest Framework.

So we know the API handles resources important and personal to us. And because of this, some level of security is needed, right? Right. This is where API authentication and authorization come in the picture.
Authentication is the process that verifie...

Read: https://skydata.hashnode.dev/a-guide-to-oauth20-authorization-with-django-rest-framework
👍3
Django News - Python 3.10.4 and 3.9.12 released - Mar 25th 2022

Read: https://django-news.com/issues/120
Lights, Camera, GitHub Actions

In this article, we are going to discover this cool GitHub feature with a simple scenario that GitHub Actions will help us maintaining that. What's more, I show you why GitHub Actions is not a CI/CD tool. After you got familiar with the techs and bas...

Read: https://imsadra.me/lights-camera-github-actions
👍1
Models Part 3 (Model Manager, QuerySet, Lookups)

Model Manager

A Manager is the interface through which we perform ORMs in Django models
By Default, Django automatically adds a Manager with a name of objects. This is the reason we are able to use objects and query to our Models eg: Model.objects.a...

Read: https://djangotherightway.com/django-model-manager-queryset-lookups
👍1
Django Full-Stack Starters - Open-Source and Free

Hello Coders!
This article presents a curated list with open-source Full-Stack Starters powered by Django Framework. All mentioned projects are available for download from Github and the permissive MIT License allows the usage in commercial projects ...

Read: https://app-generator.hashnode.dev/django-full-stack-starters-open-source-and-free
👍3
#38 -Django Basics

Topics:

1. INSTALL VENV
2. CREATE REQUIREMENTS
3. INSTALL DJANGO
4. VIEW DJANGO VERSION
5. CREATE DJANGO PROJECT
6. CREATE PROJECT APPS
7. RUN LOCAL SERVER
8. CREATE VIEWS AND URLS
9. DYNAMIC PATH SEGMENTS
10. PATH CONVERTERS
11. Using Dictionary in...

Read: https://ifeanyiomeata.hashnode.dev/38-django-basics
👍4🤩1
Star Admin - Free Django Starter

Hello! This article presents an open-source Django Starter built with basic modules, authentication, and Docker support on top of a modern Bootstrap 5 Design. Django Star Admin can be downloaded from Github (MIT License) and used in commercial projec...

Read: https://app-generator.hashnode.dev/star-admin-free-django-starter
👍7🔥1