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

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
Build a Custom Command Line Tool with Django's Management Commands

Sure, here's a detailed guide on how to build a command line tool using Django's management commands.
First, let's start by creating a new Django project and app:
$ django-admin startproject myproject
$ cd myproject
$ python manage.py startapp myapp
...

Read: https://maxzeno.hashnode.dev/build-a-custom-command-line-tool-with-djangos-management-commands
Django Rest Framework Tutorial: Todo API

Django REST framework is a powerful and flexible toolkit for building Web APIs. It is a powerful library that sits on top of existing Django projects to add robust web APIs. If you have an existing Django project with only models and a database--no v...

Read: https://zeepy.hashnode.dev/django-rest-framework-tutorial-todo-api
Django Admin 101: How to Add Custom Actions to the Model List View?

Hey everyone!
If you're a Django developer, you're probably familiar with the Django Admin interface. It's a built-in tool that allows you to manage your Django project's data through a web interface, making it easy to perform CRUD (create, read, upd...

Read: https://blog.devjunction.in/django-admin-101-how-to-add-custom-actions-to-the-model-list-view
Boost Your Django Project with Custom Model Forms

Hey everyone!
If you're working with Django, you know that the Django Admin interface is a powerful tool for managing your project's data. But did you know that you can also customize the forms used in the admin interface to fit your specific needs?
...

Read: https://blog.devjunction.in/boost-your-django-project-with-custom-model-forms
How to create Custom Django Admin List Filters?

Hey everyone!
If you're using Django Admin to manage your project's data, you know that the ability to filter and organize your models is crucial. That's where list filters come in.
List filters are a built-in feature of Django Admin that allows you ...

Read: https://blog.devjunction.in/how-to-create-custom-django-admin-list-filters
Django Admin Customization: Adding Custom Views in Django admin

Hey everyone!
If you're a Django developer, you know that the Django Admin interface is a convenient tool for managing your project's data. But did you know that you can also add custom views to Django Admin to expand its functionality?
Custom views ...

Read: https://blog.devjunction.in/django-admin-customization-adding-custom-views-in-django-admin
Mastering Advanced Django Testing Techniques

Testing is a crucial aspect of software development, and Django provides several tools and techniques to make it easier for developers to write and maintain high-quality tests for their applications. In this article, we'll explore some advanced Djang...

Read: https://maxzeno.hashnode.dev/mastering-advanced-django-testing-techniques
How I migrated my Python Django project to Docker

Docker is great, ever since I learnt about docker I have developed a great liking for it. My organization does not use docker yet, and cannot say how long they are not going to, especially after my newfound interest in docker.
Steps involved:

Mainta...

Read: https://vijayrai.hashnode.dev/how-i-migrated-my-python-django-project-to-docker
Never Worry About Inconsistent Coding Styles Again: Introducing .editorconfig

The .editorconfig file is a simple configuration file that helps developers define and maintain consistent coding styles between different editors and IDEs. It is a plain text file that can be placed in the root directory of a project, and specifies ...

Read: https://selftaughtdev.me/never-worry-about-inconsistent-coding-styles-again-introducing-editorconfig
Effortlessly improve the quality and consistency of your code with these pre-commit Hooks!

Using pre-commit tools can be a great way to improve the quality and consistency of your code, as well as streamline your development workflow. Pre-commit tools are tools that run automatically before you commit your code changes to a version control...

Read: https://selftaughtdev.me/effortlessly-improve-the-quality-and-consistency-of-your-code-with-these-pre-commit-hooks
How to build your own API to detect toxic comment

Introduction
Toxicity is anything rude, disrespectful, or otherwise likely to make someone leave a discussion. We will use Django Rest Framework to build the API.
See how the API works:
When I enter a comment, for Example: "trash stuff" as seen below...

Read: https://emmakodes.com/how-to-build-your-own-api-to-detect-toxic-comment
What are fixtures and how to use it in Django?

Introduction
In Django, fixtures are used to populate the database with initial data. This can be helpful for testing purposes or for setting up a new project with a specific set of data. In this article, we'll explore how to load or dump fixtures in...

Read: https://blog.devjunction.in/what-are-fixtures-and-how-to-use-it-in-django
Integrate Stripe Payments with Django By Building a Digital Products Selling App

One of the great features of online selling is being able to process payments online. With the ever-growing online businesses, having a good payment processing system is necessary. Online selling has a lot of advantages among which are; low start-up ...

Read: https://documatic.hashnode.dev/integrate-stripe-payments-with-django-by-building-a-digital-products-selling-app
Integrating Django with GraphQL

Django is a popular web framework for building robust and scalable web applications. It provides a wide range of features for building web applications, including an ORM, templating engine, and routing system. However, with the rise of GraphQL, many ...

Read: https://maxzeno.hashnode.dev/integrating-django-with-graphql
Get Access to Your Remote PostgreSQL Database running on VPS in No Time: Here's How

Connecting to a PostgreSQL database running on an Ubuntu VPS from a local machine using VS Code involves the following steps:

Install the "PostgreSQL" extension in VS Code:

it should look like the below screenshot.👇

Click "Install" to install...

Read: https://selftaughtdev.me/get-access-to-your-remote-postgresql-database-running-on-vps-in-no-time-heres-how
👍1
Wagtail get parent page gotchas (tldr; use specific property)

I was implementing a tag page, a page for listing blog entries for a particular tag using RoutablePageMixin.
class BlogIndexPage(RoutablePageMixin, Page):
intro = models.CharField(max_length=250)
content_panels = Page.content_panels + [
...

Read: https://grep.koditi.my/wagtail-get-parent-page-gotchas-tldr-use-specific-property
Introduction to Django Signals: A Simple Guide

Introduction:
Django signals are a powerful tool for sending automatic notifications, updating caches, and performing other tasks in a Django application. They allow you to create "hooks" that trigger certain actions when certain events occur in your...

Read: https://blog.devjunction.in/introduction-to-django-signals-a-simple-guide
Maximizing Security in Your Django Web App: Advanced Best Practices

Django is a powerful web framework that is widely used for building web applications. It provides a lot of security features out of the box, such as CSRF protection, cross-site scripting (XSS) protection, and secure password hashing. However, as a de...

Read: https://maxzeno.hashnode.dev/maximizing-security-in-your-django-web-app-advanced-best-practices
Let's make a backend framework like Django (part 1)

Introduction
Hey there! Are you tired of using pre-existing backend frameworks like Django, and want to create your own instead? Well, you're in luck! In this blog post, we'll be walking through the steps of creating your very own backend framework s...

Read: https://blog.algolearn.net/lets-make-a-backend-framework-like-django-part-1
Субъективные итоги года в мире Python

Привет, я Михаил Корнеев, вместе с Григорием Петровым и другими ребятами из сообщества мы ведем подкаст о Python на русском. В прошлую пятницу мы собрались в онлайне обсудить, что запомнилось в уходящем году.

Это — текстовая выжимка из выпуска.


Читать: https://habr.com/ru/post/708204/
Outreachy: Week four

I wish you all a happy holiday season!
This is the last week of the year, and I can't help but reflect on my experience so far in the technology industry. What I find more important is how my Outreachy internship experience with Wagtail has impacted ...

Read: https://activuscode.hashnode.dev/outreachy-week-four