-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdatabase_setup.py
51 lines (39 loc) · 1.37 KB
/
database_setup.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os
import sys
from sqlalchemy import Column, ForeignKey, Integer, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
from sqlalchemy import create_engine
Base = declarative_base()
# class to store user info
class User(Base):
__tablename__ = 'user'
id = Column(Integer, primary_key=True)
name = Column(String(250), nullable=False)
email = Column(String(250), nullable=False)
image = Column(String(250))
provider = Column(String(25))
# class for Books Database
class BookDB(Base):
__tablename__ = "books"
id = Column(Integer, primary_key=True)
bookName = Column(String(250), nullable=False)
authorName = Column(String(250), nullable=False)
coverUrl = Column(String(450), nullable=False)
description = Column(String(), nullable=False)
category = Column(String(100), nullable=False)
user_id = Column(Integer, ForeignKey('user.id'))
user = relationship(User)
@property
def serialize(self):
# return book data in serializable format
return {
'id': self.id,
'name': self.bookName,
'author': self.authorName,
'genre': self.category,
'coverUrl': self.coverUrl,
'description': self.description
}
engine = create_engine('sqlite:///BookCatalog.db')
Base.metadata.create_all(engine)