RoadMap for Django Web Framework
Introduction:
Django is a popular open-source web framework that has been widely adopted by developers for its simplicity, flexibility, and scalability. If you're a beginner who wants to learn Django, this blog post is for you. We'll provide you with...
Read: https://blog.mayankaggarwal.live/roadmap-for-django-web-framework
Introduction:
Django is a popular open-source web framework that has been widely adopted by developers for its simplicity, flexibility, and scalability. If you're a beginner who wants to learn Django, this blog post is for you. We'll provide you with...
Read: https://blog.mayankaggarwal.live/roadmap-for-django-web-framework
Setting up a Django Project On Ubuntu 22.04 — Beginners Guide
Django is a python-based web framework that follows the model-template-views (MTV) architectural pattern. It comes with ready-made components, and you can build versatile and scalable web applications.
But how do you set up your Django project, and i...
Read: https://janetmutua.hashnode.dev/setting-up-a-django-project-on-ubuntu-2204-beginners-guide
Django is a python-based web framework that follows the model-template-views (MTV) architectural pattern. It comes with ready-made components, and you can build versatile and scalable web applications.
But how do you set up your Django project, and i...
Read: https://janetmutua.hashnode.dev/setting-up-a-django-project-on-ubuntu-2204-beginners-guide
[recovery mode] CI/CD GitHub Actions
CI/CD с использованием GitHub Actions (приложение Django)
Читать: https://habr.com/ru/post/723982/
CI/CD с использованием GitHub Actions (приложение Django)
Читать: https://habr.com/ru/post/723982/
Starting Your Django Adventure: Setting Up Your Environment and Project Creation
Introduction
Django is a Python web framework that allows for the rapid development of secure and maintainable web applications. It adheres to the Model-View-Controller (MVC) architectural pattern and prioritizes code reusability. Django is a popular...
Read: https://effectpark.hashnode.dev/starting-your-django-adventure
Introduction
Django is a Python web framework that allows for the rapid development of secure and maintainable web applications. It adheres to the Model-View-Controller (MVC) architectural pattern and prioritizes code reusability. Django is a popular...
Read: https://effectpark.hashnode.dev/starting-your-django-adventure
Django Views - function() based
When we talk about views in Django, views are the core part of Django which serves as the main place to process the incoming request.
Basically, we write out the view function in the views.py file, but we can write this function on a different file a...
Read: https://djangotherightway.com/django-views-function-based
When we talk about views in Django, views are the core part of Django which serves as the main place to process the incoming request.
Basically, we write out the view function in the views.py file, but we can write this function on a different file a...
Read: https://djangotherightway.com/django-views-function-based
Exception handling in DRF
Exceptions are errors or abnormal conditions that occur during the execution of a program. In Django (and Python in general), exceptions are a way to handle and respond to errors that occur while running code.
Here are some common exceptions that can...
Read: https://pythonislove.com/exception-handling-in-drf
Exceptions are errors or abnormal conditions that occur during the execution of a program. In Django (and Python in general), exceptions are a way to handle and respond to errors that occur while running code.
Here are some common exceptions that can...
Read: https://pythonislove.com/exception-handling-in-drf
Management Strategies in Django
Management strategies in application development are the methods and practices used to manage a team of developers, resources, timelines, and budgets to make sure that an application is built on time, on budget, and to the required quality standards....
Read: https://pythonislove.com/management-strategies-in-django
Management strategies in application development are the methods and practices used to manage a team of developers, resources, timelines, and budgets to make sure that an application is built on time, on budget, and to the required quality standards....
Read: https://pythonislove.com/management-strategies-in-django
How I built domain hunter using OpenAI on a weekend
Introduction
When ChatGPT was released, everyone was in awe, and a few people built production on top of it. I was also in the same hype and created a product. It is called domain hunter — A tool that generates domains that are available for registra...
Read: https://blog.lokesh1729.com/how-i-built-domain-hunter-using-openai-on-a-weekend
Introduction
When ChatGPT was released, everyone was in awe, and a few people built production on top of it. I was also in the same hype and created a product. It is called domain hunter — A tool that generates domains that are available for registra...
Read: https://blog.lokesh1729.com/how-i-built-domain-hunter-using-openai-on-a-weekend
Django Views - Class() based
As the name suggests, Django views can also be written in Class based style. The major advantage of using Class based views in Django is
Code reusability and Clean Code
But, when creating a complex Class with lots of inheritance or mixins can make ...
Read: https://djangotherightway.com/django-views-class-based
As the name suggests, Django views can also be written in Class based style. The major advantage of using Class based views in Django is
Code reusability and Clean Code
But, when creating a complex Class with lots of inheritance or mixins can make ...
Read: https://djangotherightway.com/django-views-class-based
Dragons & Demons: making your own blog website
What's the best about having your own blog website?
Writing whatever you want...Experimenting...Doing all the crazy things that come to your mind!
My cute little baby...
But what a hell of a ride that was!!
Prelude
I work as a software engineer, pyth...
Read: https://aidas.hashnode.dev/dragons-demons-making-your-own-blog-website
What's the best about having your own blog website?
Writing whatever you want...Experimenting...Doing all the crazy things that come to your mind!
My cute little baby...
But what a hell of a ride that was!!
Prelude
I work as a software engineer, pyth...
Read: https://aidas.hashnode.dev/dragons-demons-making-your-own-blog-website
👍1
Introduction to Machine Learning: k-Nearest Neighbors
Introduction
When considering machine learning models, a fundamental distinction is whether the model is supervised or unsupervised. This distinction is determined by the nature of the problem being addressed. For a more detailed comparison between s...
Read: https://gbreigns.hashnode.dev/introduction-to-machine-learning-k-nearest-neighbors
Introduction
When considering machine learning models, a fundamental distinction is whether the model is supervised or unsupervised. This distinction is determined by the nature of the problem being addressed. For a more detailed comparison between s...
Read: https://gbreigns.hashnode.dev/introduction-to-machine-learning-k-nearest-neighbors
Implement Autocompletion in Django
Hello pals,
In this blog, I'll show you how to add autocomplete to the Django admin interface. I chose the admin interface because it lets me create, read, update, and delete (CREATE, READ, UPDATE, DELETE) models.
For implementing the auto completion...
Read: https://pythonislove.com/implement-autocompletion-in-django
Hello pals,
In this blog, I'll show you how to add autocomplete to the Django admin interface. I chose the admin interface because it lets me create, read, update, and delete (CREATE, READ, UPDATE, DELETE) models.
For implementing the auto completion...
Read: https://pythonislove.com/implement-autocompletion-in-django
Style Django Admin with Jazzmin
Hello Geeks, First of all, I would like to thank you for reaching here. You will undoubtedly be a successful Django developer in the future.
Introduction
In this blog, I am guiding to integrate django-jazzmin theme to the Django project. According to...
Read: https://pythonislove.com/style-django-admin-with-jazzmin
Hello Geeks, First of all, I would like to thank you for reaching here. You will undoubtedly be a successful Django developer in the future.
Introduction
In this blog, I am guiding to integrate django-jazzmin theme to the Django project. According to...
Read: https://pythonislove.com/style-django-admin-with-jazzmin
❤1
How to deploy a Django application
Introduction
If you are looking for a guide to deploying a Django application to production, then you are at the right place. This guide assumes that you have a working Django application. You can check if your application is healthy by running this ...
Read: https://blog.lokesh1729.com/how-to-deploy-a-django-application
Introduction
If you are looking for a guide to deploying a Django application to production, then you are at the right place. This guide assumes that you have a working Django application. You can check if your application is healthy by running this ...
Read: https://blog.lokesh1729.com/how-to-deploy-a-django-application
Ищем человека, который будет строить сообщество по темам Python / Data Science / AI в Tproger
Если вы довольно неплохо разбираетесь в этих темах и при этом видите в себе желание рассказывать об этом другим разработчикам и вовлекать их в горячие обсуждения — возможно, это именно ваша вакансия.
Подробности, тестовое задание и отклик здесь: https://tprg.ru/GEZL
Если вы довольно неплохо разбираетесь в этих темах и при этом видите в себе желание рассказывать об этом другим разработчикам и вовлекать их в горячие обсуждения — возможно, это именно ваша вакансия.
Подробности, тестовое задание и отклик здесь: https://tprg.ru/GEZL
Developing an Inventory management system with Django and bootstrap.
Introduction.
A full working project code is hosted on this repository
Inventory => Inventory, also known as stock, refers to goods a business owns, with the aim to sell or use them in production.
Inventory management system => Inventory management ...
Read: https://mwass.hashnode.dev/developing-an-inventory-management-system-with-django-and-bootstrap
Introduction.
A full working project code is hosted on this repository
Inventory => Inventory, also known as stock, refers to goods a business owns, with the aim to sell or use them in production.
Inventory management system => Inventory management ...
Read: https://mwass.hashnode.dev/developing-an-inventory-management-system-with-django-and-bootstrap
Building Custom User In Django
This post explains step-by-step how to create a custom User model in Django.
Objectives
By the end of this article, you should be able to:
Describe the difference between AbstractUser and AbstractBaseUser
Explain why you should set up a custom User...
Read: https://blogwithgajanan.hashnode.dev/building-custom-user-in-django
This post explains step-by-step how to create a custom User model in Django.
Objectives
By the end of this article, you should be able to:
Describe the difference between AbstractUser and AbstractBaseUser
Explain why you should set up a custom User...
Read: https://blogwithgajanan.hashnode.dev/building-custom-user-in-django
👍1
Creating Templates for Authentication
Overview
In this blog post, we will be creating templates for our authentication system. We will be creating a base template that will contain the common elements of all the templates and then we will create other templates which inherit from the bas...
Read: https://rishabhdev.hashnode.dev/creating-templates-for-authentication
Overview
In this blog post, we will be creating templates for our authentication system. We will be creating a base template that will contain the common elements of all the templates and then we will create other templates which inherit from the bas...
Read: https://rishabhdev.hashnode.dev/creating-templates-for-authentication
👍1
Django Static Files
When we develop a web application we also need a way to use and serve static contents like (JS,CSS, and images ...)
In Django, any assets which are required for project development can be called static files. Some examples are:
JS files
CSS files
...
Read: https://djangotherightway.com/django-static-files
When we develop a web application we also need a way to use and serve static contents like (JS,CSS, and images ...)
In Django, any assets which are required for project development can be called static files. Some examples are:
JS files
CSS files
...
Read: https://djangotherightway.com/django-static-files
Encrypting a Django Rest Framework Response
Introduction
Encryption is the process data goes through to get transformed from a readable format(plaintext) to an unreadable format(ciphertext). After encryption, the ciphertext appears to be unreadable random data and anyone attempting to read the...
Read: https://charless.hashnode.dev/django-rest-framework-response-encryption
Introduction
Encryption is the process data goes through to get transformed from a readable format(plaintext) to an unreadable format(ciphertext). After encryption, the ciphertext appears to be unreadable random data and anyone attempting to read the...
Read: https://charless.hashnode.dev/django-rest-framework-response-encryption
👍1