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

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
A CS50web series: Where did I stuck? How did I solve?

Hi again. Last week I wrote my first blog post which was about cs50's web development course's "Search" project. Now it is time to move on and write my second article about this course. During the last week I have been watching the other lessons and ...

Read: https://osmanozdemir.hashnode.dev/a-cs50web-series-where-did-i-stuck-how-did-i-solve-1
Запустить принудительно остановленный Docker контейнер можно с помощью…
Anonymous Poll
30%
docker start
21%
docker restart
13%
docker exec
37%
docker run
How to Avoid Race Condition in Django

Overview
In this article, you are going to learn how to build Django application that is devoid of race condition so as to provide real and accurate data.
Imagine you are building a like system or voting system for a website or API and the value of t...

Read: https://bovage.hashnode.dev/how-to-avoid-race-condition-in-django
Django News - DjangoCon US/Europe Call for Proposals - May 13th 2022

Read: https://django-news.com/issues/127
Django News - DjangoCon US/Europe Call for Proposals - May 13th 2022

Read: https://django-news.com/issues/127
How to revert migrations in Django?

Introduction:
Sometimes we run a migration that make changes in our database, but we want to revert it and delete the migration, without creating a new migration.
Well, in that case, there is a small trick that you can use to revert your migration sa...

Read: https://blog.devjunction.in/revert-migrations-in-django
👍2
Introduction to Djnago Framework

In this article and the upcoming ones, I will provide you with a basic introduction to what is the Djnago framework and how to create your first ever app in simple and straight forward steps, with the addition of explaining a bit more on each buildin...

Read: https://batoolragayah.hashnode.dev/introduction-to-djnago-framework
Introduction to Django Framework

In this article and the upcoming ones, I will provide you with a basic introduction to what is the Djnago framework and how to create your first ever app in simple and straight forward steps, with the addition of explaining a bit more on each buildin...

Read: https://batoolragayah.hashnode.dev/introduction-to-django-framework
How to serve static files in Django Production with WhiteNoise?

Introduction:
You might have faced this situation while deploying your Django project to the production, when the static files were not available after adding DEBUG=False in settings.py file. Because Django is not capable of serving the static files ...

Read: https://blog.devjunction.in/serve-static-files-in-django-production-with-whitenoise
Building Résumé with Django

"Everything was first an idea"

Overview
If you've ever needed an internship, apprenticeship, or a job, you've almost likely needed a resume or CV (depending on the company's choice).
You may have even utilized CV generators such as Visualcv or Novor...

Read: https://sarahthedeveloper.hashnode.dev/building-resume-with-django
Setup Continuous Deployment For Your Django Project With Docker Compose, Caddy and GitHub

There are many services that offer easy and continous deployments, for example Heroku or Dokku. But you might want to consider doing it yourself, Heroku is expensive and Dokku won't scale past one server, using Docker ensures that you will be able to...

Read: https://code.roettgers.co/django-docker-compose-continuous-deployment
Django 4.0.4 Best Practices Tutorial : Part 1

Wha's Django ?
Django is a Python-based web framework. A Web framework is a piece of software that helps you build dynamic Web sites, apps, and services. It includes a set of tools and functionalities that address a variety of common Web development...

Read: https://ayat.hashnode.dev/django-404-best-practices-tutorial-part-1
Let Cloudinary handle image uploads in your Django application.

Hi, everyone,
It's been a while since I uploaded my last article. I would love to tell you that I have joined Publicis Sapient six months ago as a Junior Associate Technology. And now, I have been promoted to Associate Technology L1. These first six ...

Read: https://magbanum.tech/let-cloudinary-handle-image-uploads-in-your-django-application
Adding Custom Model Managers In Django

A manager is an interface through which database query operations are provided to Django models. At least one Managerexists for every model in a Django application, objectsis the default manager of every model that retrieves all objects in the database.
However, one model can have multiple model managers, we can also build our own …

Read: https://djangocentral.com/adding-custom-model-managers-in-django/
1
Get started with Html, CSS, Bootstrap and Django Framework

Web development has reached the summit of the people's interest in Web development and they are taking their time to become web developers for good. Web development is something through which we can make amazing websites and web apps for our needs or...

Read: https://wolfgunner.hashnode.dev/get-started-with-html-css-bootstrap-and-django-framework
Learning Django : Day 1

CLG (Connect Learn Grow)
30 days of self guided learning is an initiative by ITSNP ORG to help women enthusiast connect and learn new skills daily for 30 days for at least an hour a day while connecting and creating projects together with future wome...

Read: https://stutiupreti.tech/learning-django-day-1
Django MVC or MVT architecture

What is an architectural pattern?
An architectural pattern is an outline that may be used to explain and define a structural schema for all kinds of software systems. It's a reusable solution that includes rules and a roadmap for defining links betwe...

Read: https://ayat.hashnode.dev/django-mvc-or-mvt-architecture
👍2
Image classification using tensorflow and heroku for django

In this post, we will learn how to use tensorflow in image classification using django and heroku. We will see how to implement image classification using the tensorflow library with the django web framework and then host the django website on heroku...

Read: https://wulfi.hashnode.dev/image-classification-using-tensorflow-and-heroku-for-django
Django 4.1 alpha 1 released

Django 4.1 alpha 1 is now available. It represents the first stage in the 4.1
release cycle and is an opportunity for you to try out the changes coming in
Django 4.1.

Django 4.1 has an profusion of new features which you can read about in the
in-development 4.1 release notes
.

This alpha milestone marks the feature freeze. The current release schedule
calls for a beta release in about a month and a release candidate about a month
from then. We'll only be able to keep this schedule if we get early and often
testing from the community. Updates on the release schedule are available on
the django-developers mailing list
.

As with all alpha and beta packages, this is not for production use. But
if you'd like to take some of the new features for a spin, or to help find and
fix bugs (which should be reported to the issue tracker), you can grab a
copy of the alpha package from our downloads page or on PyPI.

The PGP key ID used for this release is Carlton Gibson: E17DF5C82B4F9D00.

Read: https://www.djangoproject.com/weblog/2022/may/18/django-41-alpha-1-released/
What is the difference between null=True and blank=True in Django?

Introduction:
These two arguments in a Django model field are used widely, but one is connected with Django and the other is connected to Django forms.
null=True :
Well null=True represents that at database level for any column in a database table, w...

Read: https://blog.devjunction.in/difference-between-null-and-blank-in-django
👍3