Ищем человека, который будет строить сообщество по темам 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
Django Rest Framework
UpDRF is a library which allows you to build APIs in your Django project.
How to install Django
Run,pip install Django
Starting a new project
Django-admin startproject drf
Installing Django rest Framework
Pip install Django Rest Framework
Create a ne...
Read: https://masiza.hashnode.dev/django-rest-framework
UpDRF is a library which allows you to build APIs in your Django project.
How to install Django
Run,pip install Django
Starting a new project
Django-admin startproject drf
Installing Django rest Framework
Pip install Django Rest Framework
Create a ne...
Read: https://masiza.hashnode.dev/django-rest-framework
Creating your own Stock Market Heatmap using Django
In the world of finance, the ability to visualize market data can be a powerful tool for investors and traders. One popular way of representing financial data is through a heatmap, which can easily display large amounts of information in a visual for...
Read: https://manusrao.hashnode.dev/creating-your-own-stock-market-heatmap-using-django
In the world of finance, the ability to visualize market data can be a powerful tool for investors and traders. One popular way of representing financial data is through a heatmap, which can easily display large amounts of information in a visual for...
Read: https://manusrao.hashnode.dev/creating-your-own-stock-market-heatmap-using-django
Django for Beginners #1
Download source code here. ⬅️
Django is a high-level, free and open-source web framework written in Python. It is widely used for building complex web applications and is known for its ability to handle high traffic, its security features and for it...
Read: https://huericnan.hashnode.dev/django-for-beginners-1
Download source code here. ⬅️
Django is a high-level, free and open-source web framework written in Python. It is widely used for building complex web applications and is known for its ability to handle high traffic, its security features and for it...
Read: https://huericnan.hashnode.dev/django-for-beginners-1
Django for Beginners #2
Download source code here. ⬅️
Django is a web dev framework designed based on the MTV (Model-Template-View) structure. In this structure, the model is in charge of interacting with our database, each model should correspond to one database table. Th...
Read: https://huericnan.hashnode.dev/django-for-beginners-2
Download source code here. ⬅️
Django is a web dev framework designed based on the MTV (Model-Template-View) structure. In this structure, the model is in charge of interacting with our database, each model should correspond to one database table. Th...
Read: https://huericnan.hashnode.dev/django-for-beginners-2
Django for Beginners #3
Download source code here. ⬅️
We introduced many new concepts in the previous articles, and you probably feel a bit lost. But don't worry, in this article, we will dig deeper and find out how the URL dispatchers, models, views, and templates can wor...
Read: https://huericnan.hashnode.dev/django-for-beginners-3
Download source code here. ⬅️
We introduced many new concepts in the previous articles, and you probably feel a bit lost. But don't worry, in this article, we will dig deeper and find out how the URL dispatchers, models, views, and templates can wor...
Read: https://huericnan.hashnode.dev/django-for-beginners-3
Django for Beginners #4
Download source code here. ⬅️
Finally, it is time for us to create a complete blog application using Django. In the previous article, we explored how the model, view, and template may work together to create a Django application, but frankly, it is ...
Read: https://huericnan.hashnode.dev/django-for-beginners-4
Download source code here. ⬅️
Finally, it is time for us to create a complete blog application using Django. In the previous article, we explored how the model, view, and template may work together to create a Django application, but frankly, it is ...
Read: https://huericnan.hashnode.dev/django-for-beginners-4
Django for Beginners #5
Download source code here. ⬅️
In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django
When you add more and more posts to...
Read: https://huericnan.hashnode.dev/django-for-beginners-5
Download source code here. ⬅️
In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django
When you add more and more posts to...
Read: https://huericnan.hashnode.dev/django-for-beginners-5
Django for Beginners #1 - Getting Started
Download source code here. ⬅️
Django is a high-level, free and open-source web framework written in Python. It is widely used for building complex web applications and is known for its ability to handle high traffic, its security features and for it...
Read: https://huericnan.hashnode.dev/django-for-beginners-1-getting-started
Download source code here. ⬅️
Django is a high-level, free and open-source web framework written in Python. It is widely used for building complex web applications and is known for its ability to handle high traffic, its security features and for it...
Read: https://huericnan.hashnode.dev/django-for-beginners-1-getting-started
Django for Beginners #2 - The MTV Structure
Download source code here. ⬅️
Django is a web dev framework designed based on the MTV (Model-Template-View) structure. In this structure, the model is in charge of interacting with our database, each model should correspond to one database table. Th...
Read: https://huericnan.hashnode.dev/django-for-beginners-2-the-mtv-structure
Download source code here. ⬅️
Django is a web dev framework designed based on the MTV (Model-Template-View) structure. In this structure, the model is in charge of interacting with our database, each model should correspond to one database table. Th...
Read: https://huericnan.hashnode.dev/django-for-beginners-2-the-mtv-structure
Django for Beginners #3 - The CRUD Operations
Download source code here. ⬅️
We introduced many new concepts in the previous articles, and you probably feel a bit lost. But don't worry, in this article, we will dig deeper and find out how the URL dispatchers, models, views, and templates can wor...
Read: https://huericnan.hashnode.dev/django-for-beginners-3-the-crud-operations
Download source code here. ⬅️
We introduced many new concepts in the previous articles, and you probably feel a bit lost. But don't worry, in this article, we will dig deeper and find out how the URL dispatchers, models, views, and templates can wor...
Read: https://huericnan.hashnode.dev/django-for-beginners-3-the-crud-operations
Django for Beginners #4 - The Blog App
Download source code here. ⬅️
Finally, it is time for us to create a complete blog application using Django. In the previous article, we explored how the model, view, and template may work together to create a Django application, but frankly, it is ...
Read: https://huericnan.hashnode.dev/django-for-beginners-4-the-blog-app
Download source code here. ⬅️
Finally, it is time for us to create a complete blog application using Django. In the previous article, we explored how the model, view, and template may work together to create a Django application, but frankly, it is ...
Read: https://huericnan.hashnode.dev/django-for-beginners-4-the-blog-app
Django for Beginners #5 - Some Advanced Features
Download source code here. ⬅️
In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django
When you add more and more posts to...
Read: https://huericnan.hashnode.dev/django-for-beginners-5-some-advanced-features
Download source code here. ⬅️
In this article, we’ll add some optional advanced features for our Django blog website, including a paginator, related posts, as well as a search feature.
Create pagination in Django
When you add more and more posts to...
Read: https://huericnan.hashnode.dev/django-for-beginners-5-some-advanced-features
How to Deploy a Django Project
In the Django tutorial series, we talked about how to create a basic Django application. But there is a significant part that is missing from the tutorial, that is how to deploy our app so that it is accessible to the public.
In this article, we'll t...
Read: https://huericnan.hashnode.dev/how-to-deploy-a-django-project
In the Django tutorial series, we talked about how to create a basic Django application. But there is a significant part that is missing from the tutorial, that is how to deploy our app so that it is accessible to the public.
In this article, we'll t...
Read: https://huericnan.hashnode.dev/how-to-deploy-a-django-project
Creating a To-Do list with Django.
Before we begin I'd recommend going through Getting started with Django.
Are you looking to build a simple to-do list app using Django? In this tutorial, I'll guide you through the process of building a basic to-do list web app using Django.
Prerequi...
Read: https://saurabhdev.hashnode.dev/creating-a-to-do-list-with-django
Before we begin I'd recommend going through Getting started with Django.
Are you looking to build a simple to-do list app using Django? In this tutorial, I'll guide you through the process of building a basic to-do list web app using Django.
Prerequi...
Read: https://saurabhdev.hashnode.dev/creating-a-to-do-list-with-django
Django-jwt
step 1) pip install pyjwt
step 2) import jwt
next need to encode the data, in jwt we have 3 parts of data
(1) Algorithm eg 'HS256' for hashing
(2) Payload (actual data)
(3) secret_key to verify
and we can able to decode the data as well
WORKING:
Afte...
Read: https://djangojwt.hashnode.dev/django-jwt
step 1) pip install pyjwt
step 2) import jwt
next need to encode the data, in jwt we have 3 parts of data
(1) Algorithm eg 'HS256' for hashing
(2) Payload (actual data)
(3) secret_key to verify
and we can able to decode the data as well
WORKING:
Afte...
Read: https://djangojwt.hashnode.dev/django-jwt
🔥1