Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Creating a follow and unfollow system in Django | python
Social Media giants like Instagram, Twitter, Facebook, and Github have one thing in common, that is it follow/unfollow feature. which allows the user to follow each other. Here, in this post, we have tried to mimic this feature. *Basic knowledge of D... -
Jason Learns Django - 03
Today was a slog. Life got in the way, so lost some scheduled time. So decided to work some more in the evening. Read more… (1 min remaining to read) -
Building an Ecommerce(Named eshop) Website using django
This post will be a series of posts that will enable us to build a fully functioning ecommerce website using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriented programmin... -
Building an Ecommerce Website using django
This post will be a series of posts that will enable us to build a fully functioning ecommerce website named ESHOP using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriente... -
Django Ecommerce - Setting Up The Project
This post will be a series of posts that will enable us to build a fully functioning ecommerce website named ESHOP using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriente... -
Django Ecommerce - Setting Up The Project
This post will be a series of posts that will enable us to build a fully functioning ecommerce website named ESHOP using django. For you to effectively understand this, you will need to at least have a basic understanding of python and object oriente... -
Extending Django Wizards
I quite like the wizard pattern. Most people are somewhat familiar with the concept of having to complete a logically grouped set of form elements before moving onto the next one, with a final confirmation step, after which the operation is committed. Howver, there are some perceieved problems within the [Django formtools](https://django-formtools.readthedocs.io/en/latest/) implementation, at least from the perspective of our use case. The big one my team have identified: when you reload the page with a GET request, it clears out the data from the current run of the wizard. This is problematic when something happens to your internet, and you have to reload a page manually, for instance. Or if you just happen to reload it through another means. Related to this, if you don't have all of the information you require, there's no way to "stash" your current iteration, and return to it later. This later could be after a logout and login (or even on a different computer). Additionally, there's no way to have "extra" steps inserted based on the selections made in a previous step. You could take the other approach, and define all of the steps initially (and then skip those that aren't required), but … -
Hello Django #2
In the last blog, I introduce you abut Django and its features. In this blog, we are understanding Django installation and project structure of Django and write the first hello world in it. Let's Started... I will walk you through the installation ... -
How to deploy django app on heroku
Heroku is a cloud platform that lets companies build, deliver, monitor, and scale apps — they're the fastest way to go from idea to URL, bypassing all those infrastructure headaches. First thing first, create an account on Heroku. Then continue with ... -
Django News - Django: Technical Board Candidate Registration and Wagtail - Apr 23rd 2021
News Wagtail 2.12.4, 2.11.7, and 2.13rc1 New security releases for Wagtail 2.12.4 and 2.11.7 along with 2.13rc1. github.com Django: Technical Board Candidate Registration With the completion of the Django 3.x major release cycle and in accordance with DEP-10 it is now time to collect candidates for the Django Technical Board. Registration for Candidates will end on April 27th, 2021 AoE. djangoproject.com Get PyCharm, Support Django Until April 29, you can purchase PyCharm at 30% off and the full purchase price will be donated to the Django Software Foundation. jetbrains.com Events PyOhio 2021 Call for Proposals PyOhio 2021 takes place July 31 and proposals for talks can be submitted until May 3rd. pretalx.com Sponsored Link Migrating from Django 1.7 to 3.2 is no small task. Learn how to successfully leapfrog a massive Django/Python upgrade. sixfeetup.com Articles Django Tailwind v2.0 is out. It brings the "JIT" mode and hot reloading. ⚡ Django Tailwind is an integration package for Tailwind CSS and v2 brings JIT and hot reloading. timonweb.com Your Guide to Connection Management in Postgres If you aren't sure what connection pooling is or why you'd ever need it, this article dives into three variations and walks you through the benefits of … -
Jason Learns Django - 02
Today was a really good day. Did four productive hours of work. Managed to focus, and follow the lessons and write my own code. Read more… (1 min remaining to read) -
The MLOps Toolkit
This article looks at how MLOps fits into the machine learning lifecycle, focusing on tools for developing, deploying, and serving ML models. -
Hello Django #1
As I promised you, I am starting Django Series soon and now today is day one of the series. I am trying to upload a weekly blog on Django. Let's Hello World Django Hello everyone, Today I introduce you to Django Framework. I am presting you my thou... -
Jason Learns Django
Meta post. More than Django itself, I am beginning the phase of my journey, where now I write code and install programs and do all the things. Am committing 2 hours to this daily, on weekdays along with a tiny what did I learn post. I am beginning with Django itself, and if I have difficulties with any underlying concepts, I will quickly dive down and write code to understand those. Learning along with Brad Traversy’s Python Django Dev To Deployment. It’s a bit old, but I like the way he teaches. And to make sure I am not cargo culting, I am doing this with Django 3 (the course has Django 2) What did I do/learn today? Set up a timetable of when I’ll go about doing things. Bought the course. Installed Django and got it to work. And that’s about it. Looking back at it, I wonder why this took me three long hours, but it is what it is. I’d rather show up daily and make progress. -
Three Feedback Models
Here are three models that I like for delivering feedback. Each is valuable on its own and would make a great starting point for anyone who wants to build their feedback muscle. Together, they highlight some common factors in effective feedback models and show off a couple of “special features” that can help your feedback be particularly effective. -
Django Series for Tortoise(Part-1)
Python Basics Installing python Download python from its official website given below. While writing this post, latest version of python was 3.9.4. https://www.python.org/downloads/ Check if properly installed Open command prompt and type python. ... -
Django Series for Tortoise(Part-1)
Python Basics Installing python Download python from its official website given below. While writing this post, latest version of python was 3.9.4. https://www.python.org/downloads/ Check if properly installed Open command prompt and type python. ... -
Django Secret Keys Protection
Congratulations on your just completed website where you use Django for the backend but hope your website is not exposed to hackers? You just asked how right? Yes, you are much vulnerable to be hacked if your secrete key is exposed and not protected.... -
Getting started with Django
step by step guide to install Django3 on OSX Here is my step by step guide for installing Django3 on my Mac - running macOS HighSierra 10.13.6. The installation process should be roughly the same if your are using a different Operating System, like W... -
Starting up #CNC2021.
Enough learning. I now have to drill what I’ve learnt over the past few weeks and months by writing lots of code. Read more… (1 min remaining to read) -
Django Tailwind v2.0 is out. It brings the "JIT" mode and hot reloading.
I'm pleased to announce the release of the Django Tailwind v2.0. Django Tailwind is an integration package for Tailwind CSS and Django. Its goal is to make your life easier without having to think much about the frontend tooling configuration. It generates a Django theme app with Tailwind … Read now -
Create Django Application
Welcome developer, In this article, we will now go to Django and see how to create our first Django projects and application Create Django Project and Application To create a Django project we will use a virtual environment that will enable us to hav... -
Fluent in Django: 8 Django template tags you should know
Intro Django templating language (Django's default out-of-the-box templating language) comes with dozens of tags that make your template powerful and allows you to do many many things. Tags provide arbitrary logic in the rendering process and they ar... -
The Fundamental Purpose of Middle Management: Context Down, Information Up
On the fundamental purpose of middle management: context down, information up. -
FYP-DevLog-006
Progress Highlights Project Research No progress made on project research since Week 6 is dedicated solely for the development of the labelling system. Project Development NOTE: Because the deadline of the project is Week 7, a lot of the labelling sy...