An another Django vs Flask comparison. which one is better.!! (2019)
Having trouble deciding on choosing a python framework for building up REST APIs for your web application? Here comes a quick statistical performance comparison between Django and Flask in terms of requests processing that also involves DB transactio...
Read: https://titusjoyson.com/an-another-django-vs-flask-comparison-which-one-is-better-2019
@django_prog
Having trouble deciding on choosing a python framework for building up REST APIs for your web application? Here comes a quick statistical performance comparison between Django and Flask in terms of requests processing that also involves DB transactio...
Read: https://titusjoyson.com/an-another-django-vs-flask-comparison-which-one-is-better-2019
@django_prog
Dynamic creation of REST APIs from third-party databases with Django-Schema-Sprout
Working with third-party or legacy databases can be a real headache.
We've all been there - you're stuck dealing with a database you didn't design, and every change feels like a nightmare.
Django's inspectdb helps create models from an existing schem...
Read: https://pawel-puchalski.com/dynamic-creation-of-rest-apis-from-third-party-databases-with-django-schema-sprout
@django_prog
Working with third-party or legacy databases can be a real headache.
We've all been there - you're stuck dealing with a database you didn't design, and every change feels like a nightmare.
Django's inspectdb helps create models from an existing schem...
Read: https://pawel-puchalski.com/dynamic-creation-of-rest-apis-from-third-party-databases-with-django-schema-sprout
@django_prog
👍1
Streamlined Django Deployment with Docker:
➡️Introduction:
Docker has revolutionized the way developers approach deployment by providing a lightweight and portable solution for containerizing applications. When paired with Django, a robust Python web framework, Docker offers unparalleled conv...
Read: https://shubhammukherji.hashnode.dev/streamlined-django-deployment-with-docker
@django_prog
➡️Introduction:
Docker has revolutionized the way developers approach deployment by providing a lightweight and portable solution for containerizing applications. When paired with Django, a robust Python web framework, Docker offers unparalleled conv...
Read: https://shubhammukherji.hashnode.dev/streamlined-django-deployment-with-docker
@django_prog
Day 29: Web Development Frameworks (FastAPI)
In this blog, we delve into Python's web development frameworks as part of my ongoing Python learning journey. This marks the twenty-ninth installment of this series. In today's programming landscape, frameworks play a pivotal role in driving develop...
Read: https://himanshuchauhan.hashnode.dev/day-29-web-development-frameworks-fastapi
@django_prog
In this blog, we delve into Python's web development frameworks as part of my ongoing Python learning journey. This marks the twenty-ninth installment of this series. In today's programming landscape, frameworks play a pivotal role in driving develop...
Read: https://himanshuchauhan.hashnode.dev/day-29-web-development-frameworks-fastapi
@django_prog
Update a Django Primary Key to UUID
EDIT 3-10-24: As u/heppy pointed out on Reddit, there was an error with my initial implementation. I deleted the author's id before populating the book's new author foreign key, meaning that book's reference to author id no longer held any meaning. I...
Read: https://thuibr.hashnode.dev/update-a-django-primary-key-to-uuid
@django_prog
EDIT 3-10-24: As u/heppy pointed out on Reddit, there was an error with my initial implementation. I deleted the author's id before populating the book's new author foreign key, meaning that book's reference to author id no longer held any meaning. I...
Read: https://thuibr.hashnode.dev/update-a-django-primary-key-to-uuid
@django_prog
How to Use Tailwind Daisyui in Django
In this section, we'll show you how to integrate DaisyUI with Tailwind CSS in Django 5. Before you begin, make sure you've installed and set up Tailwind CSS in your Django 5 project.
Step by Step How to Add Tailwind CSS 3 to Django 5
1. Use DaisyUI D...
Read: https://web250.hashnode.dev/how-to-use-tailwind-daisyui-in-django
@django_prog
In this section, we'll show you how to integrate DaisyUI with Tailwind CSS in Django 5. Before you begin, make sure you've installed and set up Tailwind CSS in your Django 5 project.
Step by Step How to Add Tailwind CSS 3 to Django 5
1. Use DaisyUI D...
Read: https://web250.hashnode.dev/how-to-use-tailwind-daisyui-in-django
@django_prog
Introduction to Django
Welcome to this new journey!!! In this post, we will see the world of Django, one of the most popular web frameworks for Python developers. Django offers a robust toolkit and a wealth of features to help you build powerful web applications with ease....
Read: https://poojadanu.hashnode.dev/introduction-to-django
@django_prog
Welcome to this new journey!!! In this post, we will see the world of Django, one of the most popular web frameworks for Python developers. Django offers a robust toolkit and a wealth of features to help you build powerful web applications with ease....
Read: https://poojadanu.hashnode.dev/introduction-to-django
@django_prog
Tech Tradeoffs #1: Django or Rails? MySQL or MongoDB?
Context:
I started working at Seezo, where we are building a product for security design reviews. At this point, we are on the 0 to 1 journey and all the technical decisions we make might have a large impact on the future of our company.
Personally, ...
Read: https://www.dsdev.in/tech-tradeoffs-1-django-or-rails-mysql-or-mongodb
@django_prog
Context:
I started working at Seezo, where we are building a product for security design reviews. At this point, we are on the 0 to 1 journey and all the technical decisions we make might have a large impact on the future of our company.
Personally, ...
Read: https://www.dsdev.in/tech-tradeoffs-1-django-or-rails-mysql-or-mongodb
@django_prog
Conditional Display of Fields in Wagtail Admin
There may be times when you need to conditionally hide or show some fields in the Wagtail Page Editor. This post illustrates one approach to achieve this, using JavaScript.
💡
This post has an accompanying GitHub repo at github.com/engineervix/blog-...
Read: https://blog.victor.co.zm/conditional-display-of-fields-in-wagtail-admin
@django_prog
There may be times when you need to conditionally hide or show some fields in the Wagtail Page Editor. This post illustrates one approach to achieve this, using JavaScript.
💡
This post has an accompanying GitHub repo at github.com/engineervix/blog-...
Read: https://blog.victor.co.zm/conditional-display-of-fields-in-wagtail-admin
@django_prog
👍2
Django URLs and Views
Django stands as a powerhouse web framework for Python, empowering developers to craft robust and scalable web applications. Django's URL routing system is like a map that guides incoming web requests to the right place in your Django application. In...
Read: https://poojadanu.hashnode.dev/django-urls-and-views
@django_prog
Django stands as a powerhouse web framework for Python, empowering developers to craft robust and scalable web applications. Django's URL routing system is like a map that guides incoming web requests to the right place in your Django application. In...
Read: https://poojadanu.hashnode.dev/django-urls-and-views
@django_prog
The Django ORM: The Magic between the Application and the Database
Introduction
Applications that constitute a database allow users to interact with the application’s data through Object Relational Mappers (ORMs). ORMs are the intermediaries between an application and a database. They provide a set of functionality...
Read: https://nickoch.hashnode.dev/the-django-orm-the-magic-between-the-application-and-the-database
@django_prog
Introduction
Applications that constitute a database allow users to interact with the application’s data through Object Relational Mappers (ORMs). ORMs are the intermediaries between an application and a database. They provide a set of functionality...
Read: https://nickoch.hashnode.dev/the-django-orm-the-magic-between-the-application-and-the-database
@django_prog
Troubleshooting AJAX Cart Item Deletion in Django: Items Not Removing from Cart
I am getting problem during deleting product from cart In my cart.html: This is the delete button I created. Now also I created j...
Read: https://sagarmoy.hashnode.dev/troubleshooting-ajax-cart-item-deletion-in-django-items-not-removing-from-cart
@django_prog
I am getting problem during deleting product from cart In my cart.html: This is the delete button I created. Now also I created j...
Read: https://sagarmoy.hashnode.dev/troubleshooting-ajax-cart-item-deletion-in-django-items-not-removing-from-cart
@django_prog
How to centralize and visualize your app logs in Grafana
You're tired of sshing into your server, cding into your log directory and using cat or vim to struggle and find logs for your application.
This is what we were doing at Emilio at first, then Loki came into our lives and changed everything.
If this i...
Read: https://getemilio.hashnode.dev/how-to-centralize-and-visualize-your-app-logs-in-grafana
@django_prog
You're tired of sshing into your server, cding into your log directory and using cat or vim to struggle and find logs for your application.
This is what we were doing at Emilio at first, then Loki came into our lives and changed everything.
If this i...
Read: https://getemilio.hashnode.dev/how-to-centralize-and-visualize-your-app-logs-in-grafana
@django_prog
JWT Custom Authentication for Django Application
Introduction
What is the good of a web application without an efficient authentication system?
In this article, I will share how to create a simple and effective authentication for your Django web application.
By default, Django uses the built-in bas...
Read: https://chryzcode.hashnode.dev/jwt-custom-authentication-for-django-application
@django_prog
Introduction
What is the good of a web application without an efficient authentication system?
In this article, I will share how to create a simple and effective authentication for your Django web application.
By default, Django uses the built-in bas...
Read: https://chryzcode.hashnode.dev/jwt-custom-authentication-for-django-application
@django_prog
👍1
How to building a CRUD app using Django REST Framework
Django REST Framework (DRF) is a django framework that allows developers to quickly and easily build APIs.Today we'll be using DRF to build a movies review app.Before we dive into the specifics of the Movie Review App, let's briefly recap what CRUD o...
Read: https://ericwth.hashnode.dev/how-to-building-a-crud-app-using-django-rest-framework
@django_prog
Django REST Framework (DRF) is a django framework that allows developers to quickly and easily build APIs.Today we'll be using DRF to build a movies review app.Before we dive into the specifics of the Movie Review App, let's briefly recap what CRUD o...
Read: https://ericwth.hashnode.dev/how-to-building-a-crud-app-using-django-rest-framework
@django_prog
👍2
Introduction to Django Templates
In Django , templates are crucial for creating the static parts of web pages. They serve as the foundation or skeleton on which the dynamic content is added. Templates make Django follow the MVT (Model-View-Template) architecture: models handle data,...
Read: https://poojadanu.hashnode.dev/introduction-to-django-templates
@django_prog
In Django , templates are crucial for creating the static parts of web pages. They serve as the foundation or skeleton on which the dynamic content is added. Templates make Django follow the MVT (Model-View-Template) architecture: models handle data,...
Read: https://poojadanu.hashnode.dev/introduction-to-django-templates
@django_prog
👍3
Automating Django , Celery , Redis and postgres deployment to AWS EC2 using Terraform ( Complete Guide)
DevOps automation is the addition of technology that performs tasks with reduced human assistance to processes that facilitate feedback loops between operations and development teams so that iterative updates can be deployed faster to applications in...
Read: https://joelwembo.hashnode.dev/automating-django-celery-redis-and-postgres-deployment-to-aws-ec2-using-terraform-complete-guide
@django_prog
DevOps automation is the addition of technology that performs tasks with reduced human assistance to processes that facilitate feedback loops between operations and development teams so that iterative updates can be deployed faster to applications in...
Read: https://joelwembo.hashnode.dev/automating-django-celery-redis-and-postgres-deployment-to-aws-ec2-using-terraform-complete-guide
@django_prog
👍2
Launching IdeaVerify to Streamline Idea Validation - My #BuildInPublic Journey
Introduction
I'm finally going to start my #buildinpublic journey! On the journey you will see how I came across a problem, how I chose to solve it and finally how to launch! Each week I'll post what I've worked on and share what I built, so others c...
Read: https://rcmisk.com/launching-ideaverify-to-streamline-idea-validation-my-buildinpublic-journey
@django_prog
Introduction
I'm finally going to start my #buildinpublic journey! On the journey you will see how I came across a problem, how I chose to solve it and finally how to launch! Each week I'll post what I've worked on and share what I built, so others c...
Read: https://rcmisk.com/launching-ideaverify-to-streamline-idea-validation-my-buildinpublic-journey
@django_prog
❤1
Django Templates - 2
Template inheritance
Template inheritance allows you to create a base template with common elements and then create child templates that extend this base template and provide specific content for different pages of your website.
By using template inh...
Read: https://poojadanu.hashnode.dev/django-templates-2
@django_prog
Template inheritance
Template inheritance allows you to create a base template with common elements and then create child templates that extend this base template and provide specific content for different pages of your website.
By using template inh...
Read: https://poojadanu.hashnode.dev/django-templates-2
@django_prog
Demystifying Django Channels: Unleashing Real-Time Power in Your Web Apps
What is Django?
Before we delve into the exciting world of Django Channels, let's establish a foundation. Django is a free and open-source web framework built with Python. Imagine it as a powerful toolkit that streamlines the development process for ...
Read: https://lmapunzwana.hashnode.dev/demystifying-django-channels-unleashing-real-time-power-in-your-web-apps
@django_prog
What is Django?
Before we delve into the exciting world of Django Channels, let's establish a foundation. Django is a free and open-source web framework built with Python. Imagine it as a powerful toolkit that streamlines the development process for ...
Read: https://lmapunzwana.hashnode.dev/demystifying-django-channels-unleashing-real-time-power-in-your-web-apps
@django_prog