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

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

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

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

Другие наши проекты: https://tprg.ru/media
Download Telegram
Unlock django super powers with Django Extensions

Django Extensions provides various features collection of custom extensions for the Django Framework. These include shell_plus, management commands, additional database fields, admin extensions e.t.c.

This article was originally posted at uchaudhary...

Read: https://nizutech.hashnode.dev/unlock-django-super-powers-with-django-extensions
Django Dynamic DataTables - Free Tool (Updated)

Hello Coders!
This article presents an open-source tool that builds server-side paginated DataTables with minimum effort. The input expected by the Dynamic DataTables module is the model definition plus a single line in the configuration. Sources are...

Read: https://app-generator.hashnode.dev/django-dynamic-datatables-free-tool-updated
Build Blazing Fast REST Api using Django + Elasticsearch + Haystack

Search is a most important part of your website and a fast search is even more important. While user can't find things manually or running out of time, he uses the search & having a slow search can frustrate your user even more
In this Blog, we will ...

Read: https://selftaughtdev.me/build-blazing-fast-rest-api-using-django-elasticsearch-haystack
How to create a basic Django Project - Set up

I started learning about using the Django framework for web development a few days ago. The challenge that I am having is trying to remember the individual steps used to set up the project.
I know I don't necessarily need to memorize the steps, but I...

Read: https://blog.ehoneahobed.com/how-to-create-a-basic-django-project-set-up
👍1
My journey as a self-taught programmer

I started my programming journey on Feb 2, 2022. I decided to be consistent. The strike was a blessing to me because I could now concentrate fully on programming.
I started learning python using an app called Mimo. I was introduced to python during a...

Read: https://techstars.hashnode.dev/my-journey-as-a-self-taught-programmer
Архитектура универсального проекта Django

В ходе последних лет моей разработки проектов Django я понял, что почти все они имеют одно строение:
API, Apps, Config, Library, Utils, Workers...

В статье, помимо схемы архитектуры проекта Django, которую я использую в реальных промышленных проектах, подробно расскажу как этого достичь, чтобы все работало.



Читать: https://habr.com/ru/post/692518/
👍3
Django Query Set for beginners

Article will be ready soon.

Read: https://yawanewuoh.hashnode.dev/django-query-set-for-beginners
🤡2👎1🤨1💋1
Django & Celery - Open-Source Tasks Manager

Hello!
This article presents an open-source Tasks Manager powered by Django and Celery. The product can be used to execute background tasks that are usually time-consuming in full control: start, cancel the execution, view output, and runtime logs o...

Read: https://app-generator.hashnode.dev/django-celery-open-source-tasks-manager
👍2
Nominations for 2022 Malcolm Tredinnick Memorial Prize

Hello Everyone!

It is that time of year again when we recognize someone from our community in memory of our friend Malcolm.

Malcolm was an early core contributor to Django and had both a huge influence and impact on Django as we know it today. Besides being knowledgeable he was also especially friendly to new users and contributors. He exemplified what it means to be an amazing Open Source contributor. We still miss him to this day.

The DSF Prize page summarizes the prize nicely:

The Malcolm Tredinnick Memorial Prize is a monetary prize, awarded annually, to the person who best exemplifies the spirit of Malcolm’s work - someone who welcomes, supports, and nurtures newcomers; freely gives feedback and assistance to others, and helps to grow the community. The hope is that the recipient of the award will use the award stipend as a contribution to travel to a community event -- a DjangoCon, a PyCon, a sprint -- and continue in Malcolm’s footsteps.
We will take nominations until Thursday, October 30th, 2022, AoE, and will announce the winner soon after the next DSF Board meeting in December.

Please make your nominations using this google form.

If you have any questions please reach out to the DSF Board at [email protected].

Read: https://www.djangoproject.com/weblog/2022/oct/14/nominations-for-2022-malcolm-tredinnick-memorial-p/
👍1
Django News - Django Unicorn Chat - Oct 14th 2022

Read: https://django-news.com/issues/149
Django Tasks Manager - FREE PyPi Library

Hello Coders!
This article presents an open-source sample that explains step-by-step how to use Django Tasks Manager library in a new project. The commits are made to highlight each step of the implementation starting from an empty directory up to t...

Read: https://app-generator.hashnode.dev/django-tasks-manager-free-pypi-library
Django create your first web application 😀

Django is a free open-source high-level web development framework written in python. Built by experienced developers, it enables rapid, secure, maintainable, and scaleable development. There are ready-made components you can use for fast development ...

Read: https://umairsblog.hashnode.dev/django-create-your-first-web-application
Make your API to return only Required Fields

Hey Folks,
In this Blog, I am going to show you how can return only those fields from the API which user have requested by passing them in URL as parameters. this way your API users can only request those fields which they need & this will remove som...

Read: https://selftaughtdev.me/make-your-api-to-return-only-required-fields
👍2
pre-commit your Django projects

Pre-commit is a python based tool to enable easy integration of git hooks, and it's supported by plenty of tools like pyliny, flake8, black, ...
While coding a Django project in a team, you would like to have unified rules and styles to avoid unneces...

Read: https://mounir.hashnode.dev/pre-commit-your-django-projects
👍1
Using Celery in Django Production Setup

Introduction
It is not rare for a Django web application to contain one or more asynchronous Celery tasks, whether periodic or sporadic. Asynchronous tasks handle time-consuming user requests such as sending emails in the background so as to prevent ...

Read: https://gplhegde.hashnode.dev/using-celery-in-django-production-setup
A quick and easy alternative to Heroku is Railway.app

Suppose you are currently using Heroku to deploy your projects like Django apps. In that case, you should have received mail from Heroku that they are going to stop free dynos, free databases and all other free services currently provided. This was v...

Read: https://magbanum.tech/a-quick-and-easy-alternative-to-heroku-is-railwayapp
Hand-in-Hand Walkthrough Web Development Episode 3

In sequel to the last episode,
JavaScript
Now, this is where logic comes in front-end development. It is the place with the programming syntax and functionalities.
This is an all-purpose language for both client and server-side development with libr...

Read: https://cruxcodes.hashnode.dev/hand-in-hand-walkthrough-web-development-episode-3
How to login/register with email instead of username in Django

Introduction
As we all know, for Django's default user model, the user identifier is the username, which makes the username field required for login and registering. Sometimes, logging in with Email could be a better approach, as it adds some secur...

Read: https://hassanelabdallah.hashnode.dev/how-to-loginregister-with-email-instead-of-username-in-django
👍1
Django authentication using Email address

Introduction
As we all know, for Django's default user model, the user identifier is the username, which makes the username field required for login and registering. Sometimes, logging in with Email could be a better approach, as it adds some secur...

Read: https://hassanelabdallah.hashnode.dev/django-authentication-using-email-address
Starting With Django

After a while, this is my first writing. Being interviewed consistently has provided a great grasp on the Core. Now I am a backend developer in Python, at a blooming Food Tech startup.


Not cooking python, though!!

What is DJANGO and Why?

Django ...

Read: https://harshamangena.hashnode.dev/starting-with-django
2023 DSF Board Nominations

It is that time of year again to think about next year’s Django Software Foundation’s Board of Directors!

As you know, the Board guides the direction of the marketing, governance and outreach activities of the Django community. We provide funding, resources, and guidance to Django events on a global level. Further we provide support to the Django community with an established Code of Conduct and make decisions and enforcement recommendations for violations. We work closely with our corporate and individual members to raise funds to help support our great community.

In order for our community to continue to grow and advance the Django Web framework, we need your help. The Board of Directors consists of volunteers who are elected to one year terms. This is an excellent opportunity to help advance Django. We can’t do it without volunteers, such as yourself. Anyone including current Board members, DSF Members, or the public at large can apply to the Board. It is open to all. There are sure to be new members of the board as some board members are choosing not to run again. Half of the new board will also be elected to a 2 year term under our new staggered term election format.

If you are interested in helping to support the development of Django we’d enjoy receiving your application for the Board of Directors. Please fill out the application form by Friday, November 4th, 2022 to be considered. If it is still the 22nd of November somewhere in the world, applications will remain open.

If you have any questions about applying, the work, or the process in general please don’t hesitate to reach out via email to [email protected] and one of us will get back with you shortly.

Thank you for your time and we look forward to working with you in 2022.

The 2022 DSF Board of Directors.

2023 DSF Board Nomination Form

Read: https://www.djangoproject.com/weblog/2022/oct/16/2023-dsf-board-nomination-announcement/