Posts

Showing posts with the label Python

Python - Simple CRUD Web App with Python ,Flask and Mysql

Image
In this article, we will learn how to build Web Application using PYTHON FLASK and MYSQL that have the capabilities to create, read, update, and delete data from the MYSQL database. More Related Topics, React.js + Python + MongoDB CRUD application Python + MongoDB + Vue.js CRUD Application  Angular10 + Python + MongoDB CRUD application Python-Create a CRUD Restful Service API using FLASK and MYSQL Python-Simple CRUD Web App with Python, Flask, and Mysql Python with MongoDB Atlas - CRUD Technologies used: Python 3 Flask library pymysql library flask-sqlalchemy library Bootstrap Javascript Please go through the following steps in order to implement Python web application CRUD example using Flask and MySQL: Step 1. Create MySQL database table – 'employee' with the following structure. CREATE TABLE IF NOT EXISTS `employee` (   `id` bigint(20) NOT NULL AUTO_INCREMENT,   `uname` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,   `email` varchar(45) COLLATE ut

Python with MongoDB Atlas - CRUD

Image
In this article, we will learn how to interact with Python and MongoDB.And we will learn to create, read, update, and delete data from the MongoDB Atlas using python. More Related Topics, React.js + Python + MongoDB CRUD application Python + MongoDB + Vue.js CRUD Application  Angular10 + Python + MongoDB CRUD application Python-Create a CRUD Restful Service API using FLASK and MYSQL Python-Simple CRUD Web App with Python, Flask, and Mysql Python with MongoDB Atlas - CRUD Technologies used: Python 3 Create an Account on MongoDB Atlas Website pymongo[srv] library Please go through the following steps in order to  learn how to interact between Python and MongoDB : Step 1. Create an Account on MongoDB Atlas Create an account on the MongoDB Atlas website if you do not have one already. Go to https://www.mongodb.com/cloud/atlas and click Try Free green button on the top right corner to create an account. Step 2 — Create a Starter Cluster After you log in to your Mo

Python-Create a CRUD Restful Service API using FLASK and MYSQL

Image
Hello everyone, Today we will learn how to build Restful API with FLASK and MYSQL that have the capabilities to create, read, update, and delete data from the MYSQL database. You can download the source code from our Github repository. Link is provided at the end of this post. More Related Topics, React.js + Python + MongoDB CRUD application Python + MongoDB + Vue.js CRUD Application  Angular10 + Python + MongoDB CRUD application Python-Create a CRUD Restful Service API using FLASK and MYSQL Python-Simple CRUD Web App with Python, Flask, and Mysql Python with MongoDB Atlas - CRUD Technologies used: Python 3 Flask library pymysql library flask-sqlalchemy library Please go through the following steps in order to implement Python Restful API CRUD example using Flask and MySQL: Step 1 . Create MySQL database table – 'employee' with the following structure. CREATE TABLE IF NOT EXISTS `employee` ( `id` bigint ( 20 ) NOT NULL AUTO_INCREMENT, `uname`