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
Django Email services with Google SMTP

In this Tutorial we are going to learn how to build an email service using django and google smtp. It is believed you already have basic knowledge of django and django restframework.
At the end of this tutorial we should know

How to setup google mai...

Read: https://victoriduh.hashnode.dev/django-email-services-with-google-smtp
👍1
Why you should Learn Python in 2024

Introduction: Understanding Python's Core Features
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics.
Now let's break it down:

Open Source: Python's source code is freely available for anyone to inspec...

Read: https://fusedtechie.hashnode.dev/why-you-should-learn-python-in-2024
Время, как часть платформы ERP-систем

Всем привет!

Продолжаю публиковать странные и непонятные статьи.

Но вдруг, кому-то пригодится.

Поехали...

Хочется поговорить о времени, как о состоянии системы.

Но для начала нужна вводная: первая из них — временнАя переменная. С чего стартуем? Стартуем с дебага, как и я когда-то. Сидишь, трейсишь программу, и в дебаге у тебя есть несколько инструментов для похода по исходному коду: какой-нибудь step over, step into, run to cursor, step next. Ну, вроде все есть, но как бы: а где step back? Вы никогда не пролетали в отладке мимо того, что отлаживаете? И сколько раз приходилось перезапускать отладку? Может, я один такой… несчастливый?

Как раз, проблема в том, что обратные операции неочевидны. Процессоры, (может я и неправ, это просто гипотеза), не могут работать в обратном направлении по исходному коду. Операция степени в обратном направлении - это извлечение корня, например. Возможно, поэтому у нас нет такого очевидного и удобного, лично для меня, инструмента - как вернуться на строку назад от текущей…

Что может помочь? Например, какие-нибудь инструменты логирования. Мы берем область памяти, которая выделена для хранения значения переменной, и записываем в “блокнот”, что там происходит. В этом такте одно значение, в следующем другое… Мы формируем логи, так сказать.

Когда мы объявляем переменную, она будет “работать” с момента объявления до момента окончания работы исходного кода (выхода из подпрограммы или удаления этой переменной). Ее значение в процессе может быть многократно изменено без возможности восстановления. Обычно нас это устраивает, и значения в дебаге нас интересуют только в текущий момент. Обычно это говорит о том, что значение “вечно”, оно было таким всегда, даже если один такт назад это было не так.


Читать: https://habr.com/ru/articles/793944/
🔥21
Day 88: Project 9- Efficient Deployment of a Django Todo App on AWS EC2 with Kubernetes: Harnessing Auto-Scaling and Auto-Healing

Project Overview: The project entails deploying a Django Todo app on AWS EC2 using a Kubernetes cluster provisioned with Kubeadm. Kubernetes facilitates auto-scaling and auto-healing of the application, ensuring reliability and scalability.
Task-01: ...

Read: https://veddevopsblog.hashnode.dev/day-88-project-9-efficient-deployment-of-a-django-todo-app-on-aws-ec2-with-kubernetes-harnessing-auto-scaling-and-auto-healing
👍1
How Python Really Works | In-Depth Analysis | Python 3.# | History Covered |

In this article, I'll delve into how Python truly operates. I will try to cover every functional aspect, from writing a code to executing it. This article is basically for intermediate Python users with a knowledge of basic and intermediate programmi...

Read: https://blog.vishnutiwari.me/how-python-really-works-in-depth-analysis-python-3-history-covered
👍1
Electron-Vite with Django Desktop Offline App

Introduction:
How do I get this Idea?
When I was doing the Student Management system for my previous IGCSE teacher, the main thing I found was that I couldn't possibly align with my previous teacher's demands, which are like want the interface applic...

Read: https://hanhtetsan.hashnode.dev/electron-vite-with-django-desktop-offline-app
👍1
How Python Really Works | In-Depth Analysis | Python 3.# | Internal Mechanism |

In this article, I'll delve into how Python truly operates. I will try to cover every functional aspect, from writing a code to executing it. This article is basically for intermediate Python users with a knowledge of basic and intermediate programmi...

Read: https://blog.vishnutiwari.me/how-python-really-works-in-depth-analysis-python-3-internal-mechanism
Database Relationships in Django

Introduction:
Django, a high-level Python web framework, empowers developers to build robust and scalable web applications efficiently. One of the key aspects that make Django powerful is its support for database relationships. In this article, we wi...

Read: https://blog.nischallamichhane.com.np/database-relationships-in-django
Accessing an array list in a Django jinja2 template

This may seem miniscule, but many newbies tend to forget the fact that template coding in HTML is not necessarily equivalent to language code.
In almost all programming languages (or probably all ?), we access an index of an array / list using the sq...

Read: https://anjanesh.dev/accessing-an-array-list-in-a-django-jinja2-template
👍1
Django Signals mastery

Django signals are a form of signal dispatching mechanisms that allow senders to notify a set of receivers when certain actions are executed in Django Framework. This is mostly common and used in decoupled applications where we need to establish a se...

Read: https://blog.yokwejuste.me/django-signals-mastery
Django Fixtures : DumpData and LoadData

"In the world of Django, fixtures are the silent architects shaping your database landscape."

Introduction:

A Fixture is a collection of data that can be dumped or loaded into a Django Database. This data is serialised into a text-based format, lik...

Read: https://adityabansal.hashnode.dev/django-fixtures-dumpdata-and-loaddata
Configuración de Django con Base de Datos: MySQL, PostgreSQL

Django, un framework web de Python, ofrece una excelente modularidad para manejar bases de datos. Puede trabajar con varios sistemas de gestión de bases de datos (DBMS) como MySQL, PostgreSQL, SQLite, Oracle, etc. La flexibilidad que proporciona Djan...

Read: https://jorgecespedes.hashnode.dev/configuracion-de-django-con-base-de-datos-mysql-postgresql
My Latest Project Deploying Django App to EC2 with Shell Scripting

Greetings! I'm thrilled to introduce you to my latest project, where I've ventured into the world of deploying Django applications using simple shell scripting techniques. Imagine a smooth, hassle-free process that ensures your web applications are u...

Read: https://swathireddy.hashnode.dev/my-latest-project-deploying-django-app-to-ec2-with-shell-scripting
👍1
Crafting Ironclad Security: An Introduction to JWT Authentication in Django

In the superfast paced world of software development, ensuring the security of the system or the application is cardinal and paramount. Most of the applications we build are, for obvious reasons, concerned with the data and data, in the contemporary ...

Read: https://musaaib.hashnode.dev/introduction-to-jwt-authentication-in-django
Deploying a Containerised App using Docker, Django REST Framework and Postgres

Introduction to Docker
Docker is a tool that greatly simplifies the process of developing, deploying, and running applications. By using containers, Docker ensures that an application runs smoothly and consistently across different computing environm...

Read: https://fafacodes.hashnode.dev/deploying-a-containerised-app-using-docker-django-rest-framework-and-postgres
👍1
Flask vs. Django: Which Is Better for Web Development

Flask vs Django: An Overview
The Python web framework Flask vs Django caters to distinct needs and project nuances.
Flask
Think of Flask as a minimalistic canvas. It's the epitome of the "micro-framework". You begin with the essentials, like URL rout...

Read: https://djangostarsblog.hashnode.dev/flask-vs-django-which-is-better-for-web-development
👍1
5 Top Free Hosting Platforms for Python Apps 2024

Whether you’re wondering how to run a Python script, deploy a Python application on a server, or simply looking for the best cloud hosting solutions for your Python projects, we’ve got you covered.

In this comparison, we’ll look at five popular host...

Read: https://git-push-to-production.hashnode.dev/5-top-free-hosting-platforms-for-python-apps-2024
Understanding Http Redirections in Django

Introduction
As a web developer, you may need to perform Http redirections in your backend logic. You may implement Http redirections under several circumstances:

When redesigning a website URLs
When rerouting traffic to HTTPS
When enforcing authent...

Read: https://nickoch.hashnode.dev/understanding-http-redirections-in-django
host/deploy your backend/server code to Vercel

Yes, you heard correctly. You can now deploy your backend code to Vercel.
lets see how :
1. First you need to create a vercel.json.
in my case the lower code dose not work . use the last json code to so you can deploy your code. one more thing

{
"...

Read: https://akaashvaa.hashnode.dev/hostdeploy-your-backendserver-code-to-vercel
Unveiling the Powerhouse: Why Django Reigns Supreme in Web Development

In the ever-evolving landscape of web development, choosing the right framework is paramount. Django stands out as a robust and versatile platform, garnering immense popularity among developers worldwide. This blog delves into the technical intricaci...

Read: https://blogsmani.hashnode.dev/unveiling-the-powerhouse-why-django-reigns-supreme-in-web-development