-
Notifications
You must be signed in to change notification settings - Fork 509
Expand file tree
/
Copy pathdatabase.py
More file actions
26 lines (20 loc) · 923 Bytes
/
database.py
File metadata and controls
26 lines (20 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import scoped_session, sessionmaker
engine = create_engine('sqlite:///mydb.db', echo=True)
db_session = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine))
Base = declarative_base()
Base.query = db_session.query_property()
def init_db():
# import all modules here that might define models so that
# they will be registered properly on the metadata. Otherwise
# you will have to import them first before calling init_db()
import models
Base.metadata.create_all(bind=engine)
# print("CREATED DATABASE SUCCESSFULLY")
from models import User
new_user_1 = User("dinesh","Dinesh@123$","dinesh","shetty")
new_user_2 = User("jack","Jack@123$","jack","apples")
db_session.add(new_user_1)
db_session.add(new_user_2)
db_session.commit()