https://github.com/itsmaheshkariya/flask-login
Python Flask Login with SQLite.
https://github.com/itsmaheshkariya/flask-login
flask login python python3 sqlite sqlite3
Last synced: about 1 year ago
JSON representation
Python Flask Login with SQLite.
- Host: GitHub
- URL: https://github.com/itsmaheshkariya/flask-login
- Owner: itsmaheshkariya
- Created: 2019-12-22T08:55:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T18:38:12.000Z (about 3 years ago)
- Last Synced: 2025-04-01T23:51:58.918Z (over 1 year ago)
- Topics: flask, login, python, python3, sqlite, sqlite3
- Language: Python
- Homepage:
- Size: 7 MB
- Stars: 19
- Watchers: 2
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - itsmaheshkariya/flask-login - Python Flask Login with SQLite. (Python)
README
# Flask Login and Registration
Flask Login and Registration System through SQLite.
### Git Clone
``` git clone https://github.com/maheshkareeya/flask-login.git```
### Change Directory
```cd flask-login```
### Note : Install Python and Postman for your system
```pip install virtualenv```
```source bin/activate```
```pip install flask flask-sqlalchemy flask-login```
### Export
```export FLASK_APP=app.py```
```export FLASK_DEBUG=True```
``` flask run ```
### Create DB
```python```
```from app import db```
``` db.create_all() ```
``` exit() ```
### Start Server
```flask run```
### Open Browser
http://localhost:5000
### Demo


