Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hygsani/try-flask-sqlalchemy
simple crud with flask + sqlalchemy
https://github.com/hygsani/try-flask-sqlalchemy
basic crud flask flask-sqlalchemy-crud python simple sqlalchemy
Last synced: 20 days ago
JSON representation
simple crud with flask + sqlalchemy
- Host: GitHub
- URL: https://github.com/hygsani/try-flask-sqlalchemy
- Owner: hygsani
- Created: 2018-10-20T06:11:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-21T14:49:47.000Z (about 6 years ago)
- Last Synced: 2023-10-21T13:32:50.665Z (about 1 year ago)
- Topics: basic, crud, flask, flask-sqlalchemy-crud, python, simple, sqlalchemy
- Language: HTML
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# try-flask-sqlalchemy
simple crud with flask + sqlalchemysimple create, read, update and delete with flask and sqlalchemy (mysql).
# requirements
- pip install flask
- pip install flask_sqlalchemy
- pip install flask_wtf
- pip install wtforms# run
- goto console and type 'python run.py'
- open browser and type 'localhost:9999' (change port in run.py file)# todo:
- use modal on confirm delete (javascript)
- ~~validation~~
- ~~use template (bootstrap/foundation)~~
- ~~login~~