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
Optimising Databases in a Django Application I

Introduction
We all know that database operations tend to turn larger and uglier as an app continues to grow in its features and capabilities. The more it scales, the higher the query time needed for it to fetch records.
Here are 5 tips, starting wit...

Read: https://diptonil.hashnode.dev/optimising-databases-in-a-django-application-i
👍1
Beginning Google Summer Of Code 2023 @ PostgreSQL

I am excited to announce that I have been offered the opportunity to work as a contributor at PostgreSQL under Google Summer Of Code 2023. I would like to thank my mentors Stephen Frost and Ilaria Battiston for providing me with this amazing opportun...

Read: https://destrex271.hashnode.dev/beginning-google-summer-of-code-2023-postgresql
👍1👏1
Securing Your API with Token-Based Authentication in Django Rest Framework

Introduction
As a developer, securing your APIs is crucial for web development. Django Rest Framework (DRF) offers robust features to ensure the protection of your APIs. In this comprehensive guide, we will explore the key aspect of API security in D...

Read: https://franklynose.hashnode.dev/securing-your-api-with-token-based-authentication-in-django-rest-framework
👍1
Building Course Assist Part 20: Adding some last minute bug fixes and features

With Course Assist now just a heartbeat from launch I've been conducting system tests to make sure everything is working the way it's supposed to. But with system tests come different issues some new and some that I might've overlooked when developin...

Read: https://andysonm.hashnode.dev/building-course-assist-part-20-adding-some-last-minute-bug-fixes-and-features
Let's Learn Django #1 Init

This is a blog series about Django from the very basics
Installing & initialising a project
Django is a really powerful Python-based web framework with the philosophy batteries included. It means it gives you everything you need to build a full-stack...

Read: https://dilutewater.hashnode.dev/lets-learn-django-1-init
👍2
Let's Learn Django #2 File Structure

After initialising a Django project, we can see several files. Don't worry, this blog will explain all of them in detail.
The general file structure of Django looks like this:
├── [appname]
│ ├── admin.py
│ ├── apps.py
│ ├── __init__.py
│ ├──...

Read: https://dilutewater.hashnode.dev/lets-learn-django-2-file-structure
A Beginners Guide to Python for Web Development

Introduction
Python has gained significant popularity among developers as a versatile and powerful programming language. Its simplicity, readability, and extensive collection of libraries make it an excellent choice for web development. In this artic...

Read: https://jaypeedev.hashnode.dev/a-beginners-guide-to-python-for-web-development
Optimising Networks in a Django REST Application

Introduction
During production, it is often easy to blame the database latencies as the root cause of a slow app. But finally, the way the backend interacts with the frontend (and every other component) is using the classic HTTP request-response arch...

Read: https://diptonil.hashnode.dev/optimising-networks-in-a-django-rest-application
#3 - Install and Setup django

In my previous post, I shared the tech stack that will be used to build Wobu. In this post, let's take the first step of installing django.
I use pydanny's cookie cutter to install django, as it helps jumpstart development. Use it with caution though...

Read: https://hellosambhavi.com/3-install-and-setup-django
👍1
Let's Learn Django #4 Using templates & static files

We have already seen how to write our first view in the previous blogs. In this blog, we will explore how to use & render templates.
What are templates?
Templates are simply HTML files that we can render as a response to a URL/view.Django templates o...

Read: https://dilutewater.hashnode.dev/lets-learn-django-4-using-templates-static-files
👍1
Django Unchained - Learning to be driven by my problems, not my tools

Cover image downloaded from
One time in 2022, while working on the mobile app for a project, I had an issue with the format the backend was returning when an error occured.

Content type was different am...

Read: https://markmarcel.hashnode.dev/django-unchained-learning-to-be-driven-by-my-problems-not-my-tools
1
Дайджест Python #11: шаурмичная на Python и AI-плагины для разработки

Лучшие статьи о Python с 1 по 15 июня: как готовить шаурму с Python, как создать чатбот на ruT5 и какие есть AI-плагины для разработки.

Читать: «Дайджест Python #11: шаурмичная на Python и AI-плагины для разработки»
👍1
Export Django Model Schemas into Excel

Hello Devs,
I have come across Scanario where I have too many models in my Django project and I have to export model schemas into an Excel file to audit the same.I have found the solution and I wanted to share it here so it can help you as well.
To e...

Read: https://blog.akashsenta.com/export-django-model-schemas-into-excel
Django, Docker, and PostgreSQL

In this tutorial, I will guide you through the process of creating a new Django project using Docker and PostgreSQL. Although Django comes with built-in support for SQLite, it is recommended to use a "real" database like PostgreSQL even for local dev...

Read: https://pedbad.hashnode.dev/django-docker-and-postgresql
👍3
Understanding Python Syntax: The Lazy Guide for Beginners

Python, known for its simplicity and readability, is an excellent programming language for beginners to embark on their coding journey.
Understanding Python syntax is essential for writing effective code and solving real-world problems. In this arti...

Read: https://learnhubafrica.hashnode.dev/understanding-python-syntax-the-lazy-guide-for-beginners
Django-MVT architecture

Django is a powerful web development framework used for creating creative websites. Django is well-documented and supported by a large development community. Django appears to be a MVT framework(Model-View-template).It runs on various os platforms(wi...

Read: https://pythongeek.hashnode.dev/django-mvt-architecture
#4 - Setting the stage to write testcases

In my previous post, we saw how to use pydanny's cookie cutter and create a django project. That's how I created mine.
I have my roadmap ready, which means I've decided on the apps that I will need. Apps in django is nothing but a self-contained modu...

Read: https://hellosambhavi.com/4-setting-the-stage-to-write-testcases
Let's Learn Django #5 Django Template

In the previous blog, we looked at how to set up and use Django templating. Now, let's dive deeper into Django templating and explore its powerful features.
Django templating is very powerful. It supports a large number of tags like if, for, cycle et...

Read: https://dilutewater.hashnode.dev/lets-learn-django-5-django-template
Forms in Django: Simplifying User Input Handling

What are Forms?
Forms are essential components of web applications that allow users to input data. Whether it's a registration form, a search bar, or a feedback form, Django provides a robust way to handle user input effortlessly. In this blog post, ...

Read: https://nileshdarji.hashnode.dev/forms-in-django
👍1
Build your first app using django

Let’s create our first app using Django in a structured manner.
It is always suggested to provide a virtual environment for each Django project you create.Ok,now why virtual environment?The reason for creating a virtual environment for each Django pr...

Read: https://pythongeek.hashnode.dev/build-your-first-app-using-django