Skip to content

A API using Python Programming Language and Flask Framework

License

Notifications You must be signed in to change notification settings

RafaelDamiani/python-flask-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-flask-api

A API using Python Programming Language and Flask Framework

Install Python

Install Python from https://www.python.org/downloads/

Install Flask

Run the command pip3 install Flask

Database lib

pip3 install flask_sqlalchemy

Run the project

To run the project, type python app.py on the command line

Some Issue on development?

Problem: Instance of 'SQLAlchemy' has no 'Column' memberpylint(no-member)
Solution:

1. If you are using vsCode, open Command Palette
2. Type `settings.json`
3. Put the code below in the end of file:  
"python.linting.pylintArgs": [
  "--load-plugins",
  "pylint-flask"
]

Example of usage of CMD SQLite

> python
>>> from BookModel import db
>>> db.create_all()
>>> exit()

About

A API using Python Programming Language and Flask Framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages