Skip to content

Instantly share code, notes, and snippets.

View rupesh2017's full-sized avatar

Rupesh kumar rupesh2017

  • bhopal
View GitHub Profile
@rupesh2017
rupesh2017 / application.py
Last active August 7, 2018 17:13
flask web app
import os
from flask import Flask,render_template,request,session
from flask_session import Session
from werkzeug.security import generate_password_hash, check_password_hash
from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker
from sqlalchemy.sql import text