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: about 12 hours 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-21T14:49:47.000Z (over 6 years ago)
- Last Synced: 2024-12-03T04:15:47.244Z (about 2 months ago)
- Topics: basic, crud, flask, flask-sqlalchemy-crud, python, simple, sqlalchemy
- Language: HTML
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- 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~~