Watch this video session, you will learn
python crud operation with mysql example | Python Django projects with source code on course enroll
Steps to follow :
Python -Django-MySQL
CRUD - Operations end to end
Create project
$django-admin startproject crudexample
$cd crudexample
$pip install django
$python manage.py startapp employee
Database Setup
Create a database "djangodb" in mysql, and configure into the settings.py file of django project. See the example.
// settings.py
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'djangodb',
'USER':'root',
'PASSWORD':'xxxx',
'HOST':'localhost',
'PORT':'3306'
}
}
$pip install mysqlclient
$python manage.py makemigrations
$python manage.py migrate
$python manage.py runserver
Access the application by entering localhost:8000/show, it will show all the available employee records.
Initially, there is no record. So, it shows no record message.
Harisystems, we share to educate, update knowledge, and learn new things from this channel video session for more visit @ www.harisystems.com.
Enroll for ChannelMembership: / @harisystems
Contact us at - [email protected]
Web - http://www.harisystems.com
Facebook - / itharisystems
Linkedin - / harisystems
Google+ - https://plus.google.com/u/0/102811658...
Twitter - / harisystems
Subscribe and support us
Channel : https://www.youtube.com/channel/UCP1O...
Like, share and comment on your views for videos and suggestions by commenting to reach us
for sponsors reach us @ [email protected]
#python #crud #crudoperation #django #harisystems #onlinecourses #database #pythonprojects
Disclaimer:
It doesn't feel good to have a disclaimer in every video but this is how the world is right now.
All videos are for educational purposes and use them wisely. Any video may have a slight mistake, please take decisions based on your research. This video is not forcing anything on you.