Skip to content

kodekovai/flaskExamples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Installation instructions

Dependencies:

Install python & pip & mysql

and pip dependencies flask & MySQL-connector-python

pip install flask
pip install MySQL-connector-python

setup Mysql Database and enter the credentials in server.py

mydb = mysql.connector.connect(
  host="localhost",
  user="prasadv",
  passwd="sam",
  database='test',
  auth_plugin='mysql_native_password'
)

Running the Server

python server.py

API Urls

GET Requests

POST Requests

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 81.3%
  • HTML 18.7%