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
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
Django Pixel - Free Bootstrap 5 Starter

Hello Coders!
This article presents an open-source Django Starter crafted on top of a pixel-perfect Bootstrap 5 Design. Django Pixel Lite can be downloaded from Github (MIT License) and used in commercial projects or eLearning activities. For newcom...

Read: https://app-generator.hashnode.dev/django-pixel-free-bootstrap-5-starter
Quick Guide to making Rest API using Django

Hello there, in this article we will learn how to quickly make a CRUD RESTFul API in the Django rest framework. Few pre-requisite we assume that the reader knows python, very basics of Django, and have an understanding of MVC or MVT architecture
So f...

Read: https://r4hu1s0n7.hashnode.dev/quick-guide-to-making-rest-api-using-django
👍4
Django News - Django Day Copenhagen next week! - Apr 1st 2022

Read: https://django-news.com/issues/121
Django News - Django Day Copenhagen next week! - Apr 1st 2022

Read: https://django-news.com/issues/121
👍1
Django Admin (Registering Models, Customizing Admin Site)

Django under the hood provides an app called Admin a.k.a Django Admin, which provides Admin UI interface/web page for your Django Project. This admin interface can automatically generate CRUD views/ (form/tables) for your models with very minimal set...

Read: https://djangotherightway.com/django-admin
How to Use Slug Field in Django

Overview
In this article, you are going to learn about how to build a beautiful, SEO - friendly URL (Uniform Resource Locator) in django using the slug field and other utilities. The concept of URL encoding was also explored in terms of how it relate...

Read: https://bovage.hashnode.dev/how-to-use-slug-field-in-django
I Created an Template for Django project for Running Under Services like replit, heroku etc

Preface
There are many Online Services Out There and We Want to Test or Run Our Django Project On There, But There are Some Issues Occurred For Running On Them.
Details
For Replit Online IDE
Like for Replit it is by default supported with Poetry Virt...

Read: https://blog.shriekdj.tk/i-created-an-template-for-django-project-for-running-under-services-like-replit-heroku-etc
1👍1
How to Build a To-Do Checklist with Django ✏️

Hi all! 💙 😁
In this blog post, I will demonstrate how to build a to-do checklist using Django. See the video 🎥 below ⤵️ for a 30 seconds clip that showcases how the app functions.
https://youtu.be/zrq8uQu6SMc
On a locally deployed Django web appli...

Read: https://fafacodes.hashnode.dev/how-to-build-a-to-do-checklist-with-django
Datta Able Django - Free Template

Hello!
This article presents an open-source Django Template built on top of a colorful, pixel-perfect BS4 design. Django Datta Able can be downloaded from Github (MIT License) and used for unlimited hobby & commercial projects. For newcomers, Django...

Read: https://app-generator.hashnode.dev/datta-able-django-free-template
👍1
A few words about memory profiling in Python

Memory issues in applications are quite common. Luckily, in Python you have to work with memory directly only when writing CPython extensions, so you have to deal with such issues less often. Using frameworks also reduces the risks of causing memory ...

Read: https://blog.filonov.dev/a-few-words-about-memory-profiling-in-python
setUp() & tearDown() in Python Unit Testing

I'm pretty sure you've already used/seen unit tests in the projects before. Have you ever wondered about how Django actually prepares you an isolated environment for testing your project without affecting other resources like your database? Before we...

Read: https://imsadra.me/setup-and-teardown-in-python-unit-testing
Today I learned: How to setup and work with the virtual environment in Django and why you should use it

What is a virtual environment?
A virtual environment is a set of version or local settings that is specific to a particular project, instance or any entity which uses that environment. In simple terms, you create an environment that satisfies the nee...

Read: https://thinkersclub.xyz/today-i-learned-how-to-setup-and-work-with-the-virtual-environment-in-django-and-why-you-should-use-it