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
How to download data in multiple file formats (CSV, XLS, TXT) with Django REST Framework

A lot of the time, our typical server response is in the form of JSON or XML. This serves our use cases a good number of times, however, there are times when the need to provide data in form of a file arises.
In this article, we will be exploring how...

Read: https://moreabouttech.com/how-to-download-data-in-multiple-file-formats-csv-xls-txt-with-django-rest-framework
How to deploy your Django application to Railway with a custom Domain

By the time you are reading this, I believe you already have a website running on a development environment, Whether it's a Django application or react application running on your localhost.
Before you can host a website externally you're first going...

Read: https://meekkaran.com/how-to-deploy-your-django-application-to-railway-with-a-custom-domain
Technologies I used as a Full Stack Developer in recent time

The world of technology is like a never-ending rollercoaster ride, with new tools and frameworks popping up every other day. As a Full stack developer, it's my job to keep my finger on the pulse of what's new and exciting in the tech landscape. In th...

Read: https://navaneethsharma.hashnode.dev/technologies-i-used-as-a-full-stack-developer-in-recent-time
Database: Types, Configuration, and Migration

Django comes with its own default database SQLite, which is a lightweight and simple relational database management system.
While SQLite is a good choice for development and testing, it may not be suitable for production environments due to its limit...

Read: https://akolade.hashnode.dev/database-types-configuration-and-migration
What is Django's Object-relational mapping (ORM)?

Django's Object-relational mapping (ORM) feature is a way to interact with databases using Python code, rather than writing raw SQL queries. It allows developers to work with databases using Python classes and objects, rather than tables and rows. To...

Read: https://machinesintheclouds.com/what-is-djangos-object-relational-mapping-orm
Outreachy: Week eight

In my previous article, I discussed some of the new skills I have gained so far during my Outreachy internship with Wagtail CMS. These skills are asynchronous communication and open collaboration. I also shared the task I completed and the challenges...

Read: https://activuscode.hashnode.dev/outreachy-week-eight
Dockerizing a Django Application | Python.

In this article, we will build a container for a Django Application with Sqlite3 as a database using Docker. We are not going to build a Django Application from scratch. We will use a sample for this article.
You can clone the Django app from this re...

Read: https://carlosmv.hashnode.dev/dockerizing-a-django-application-python
MVC Pattern with Python Django

The Model-View-Controller (MVC) architectural pattern is a way of structuring code in a way that separates concerns and makes it easier to maintain and extend. It is often used in web development to separate the presentation layer (the "view"), the d...

Read: https://machinesintheclouds.com/mvc-pattern-with-python-django
👍1
Django in short

After completing Django Girls
( https://tutorial.djangogirls.org/en/ ), created a blog posting site and hosted it with the help of pythonanywhere.com
began learning about Django from its official documentation and finished up to chapter 7
( https://d...

Read: https://learnshort.hashnode.dev/django-in-short
Beginner to hired in 12 months

In the late quarter of 2022, I received a mail asking for my application for an internship position(paid in dollars), I wasn’t surprised because I expected it, I felt it even took too long 😄 😄, this sense of confidence came because I knew I had put...

Read: https://osahenru.hashnode.dev/beginner-to-hired-in-12-months
What are the web development frameworks for python?

Introduction
The most popular Python web development frameworks are Django, Flask, and Pyramid.
Django is the most popular Python web development framework. It is a powerful, full-featured framework that allows developers to quickly and easily create...

Read: https://sense.hashnode.dev/what-are-the-web-development-frameworks-for-python
Building Course Assist: Part 1

Course Assist as a whole consists of 3 parts, 2 mobile apps (a user app and an expert app kind of the way uber has a main app and a driver) and a backend which is all the server-side code and database. It's been about 3 months since I last ran any of...

Read: https://andysonm.hashnode.dev/building-course-assist-part-1
Structuring a Scalable Django Project for Serving Deep Learning Models: An Organized Approach

Organizing a Django project that serves multiple deep learning models can be a challenging task, but with a well-structured file hierarchy, it can be made much easier to understand and maintain. In this article, we will discuss one approach that invo...

Read: https://blog.jumashafara.com/structuring-a-scalable-django-project-for-serving-deep-learning-models-an-organized-approach
Difficulties I faced while working on project using Django

Not so quick Intro
Hey everyone, myself Ridham Khandar I am a second-year Computer Engineering student. I am going to talk about my experience working and using Django as the backend of my project.
Projects!! Hackathons!! Networking!! Open-Source!! I...

Read: https://ridhams.hashnode.dev/difficulties-i-faced-while-working-on-project-using-django
👍1
Django Todo App

Create Django Project

django-admin startproject todoproject


Create Django App

First, cd into todoproject then create django app



python manage.py todoapp


Create urls.py file in todoapp .

Your file structure should look like this.

Open todop...

Read: https://dhruvblogs.xyz/django-todo-app
When django, nextjs and Laravel failed me...

The Problem
A few months ago, I was tasked to update a few blogs on my school's website. The previous one was in WordPress, and it was taunting to figure out how-to stuff within WordPress due to the fact it was full of add-ons or plugins, whatever 😒...

Read: https://fyi.birnadine.guru/when-django-nextjs-and-laravel-failed-me
Django displays multiple ways of visual charts

Introduction to Django and Charts
Django is a powerful, open-source web framework that allows developers to create and deploy web applications quickly and easily. It is based on the popular Python programming language and includes a wide range of fea...

Read: https://sense.hashnode.dev/django-displays-multiple-ways-of-visual-charts
Understanding the Different Types of Django Model Fields

Django models are used to represent the data in a database and are defined as Python classes. Each field in a model represents a column in the corresponding database table.
The following is a list of the most commonly used fields in Django models, al...

Read: https://nileshdarji.hashnode.dev/understanding-the-different-types-of-django-model-fields
Getting Started with Django

Django is one of Python's popular web frameworks which is used for backend web development and for building and consuming APIs (application programming interfaces).
To get started with the Django framework, we would have to create a virtual environme...

Read: https://thecodingprocess.hashnode.dev/getting-started-with-django
Starting a Django Application

After we have created a Django Skeleton Project, we can go ahead to create an application for our project.
In the project folder containing manage.py file, we would enter python manage.py startapp <appon the terminal. If we want our Django app...

Read: https://thecodingprocess.hashnode.dev/starting-a-django-application