-
Notifications
You must be signed in to change notification settings - Fork 4
/
models.py
executable file
·99 lines (80 loc) · 3.82 KB
/
models.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from __future__ import absolute_import, print_function
from decimal import Decimal
from datetime import date
from pony.orm.core import *
db = Database()
class Department(db.Entity):
number = PrimaryKey(int, auto=True)
name = Required(str, unique=True)
groups = Set("Group")
courses = Set("Course")
class Group(db.Entity):
number = PrimaryKey(int)
major = Required(str)
dept = Required("Department")
students = Set("Student")
class Course(db.Entity):
name = Required(str)
semester = Required(int)
lect_hours = Required(int)
lab_hours = Required(int)
credits = Required(int)
dept = Required(Department)
students = Set("Student")
PrimaryKey(name, semester)
class Student(db.Entity):
# _table_ = "public", "Students" # Schema support
id = PrimaryKey(int, auto=True)
name = Required(str)
dob = Required(date)
tel = Optional(str)
picture = Optional(buffer, lazy=True)
gpa = Required(float, default=0)
group = Required(Group)
courses = Set(Course)
sql_debug(True) # Output all SQL queries to stdout
db.bind('sqlite', 'university.sqlite', create_db=True)
#db.bind('mysql', host="localhost", user="presentation", passwd="pony", db="presentation")
#db.bind('postgres', user='presentation', password='pony', host='localhost', database='presentation')
#db.bind('oracle', 'presentation/pony@localhost')
db.generate_mapping(create_tables=True)
@db_session
def populate_database():
if select(s for s in Student).count() > 0:
return
d1 = Department(name="Department of Computer Science")
d2 = Department(name="Department of Mathematical Sciences")
d3 = Department(name="Department of Applied Physics")
c1 = Course(name="Web Design", semester=1, dept=d1,
lect_hours=30, lab_hours=30, credits=3)
c2 = Course(name="Data Structures and Algorithms", semester=3, dept=d1,
lect_hours=40, lab_hours=20, credits=4)
c3 = Course(name="Linear Algebra", semester=1, dept=d2,
lect_hours=30, lab_hours=30, credits=4)
c4 = Course(name="Statistical Methods", semester=2, dept=d2,
lect_hours=50, lab_hours=25, credits=5)
c5 = Course(name="Thermodynamics", semester=2, dept=d3,
lect_hours=25, lab_hours=40, credits=4)
c6 = Course(name="Quantum Mechanics", semester=3, dept=d3,
lect_hours=40, lab_hours=30, credits=5)
g101 = Group(number=101, major='B.E. in Computer Engineering', dept=d1)
g102 = Group(number=102, major='B.S./M.S. in Computer Science', dept=d1)
g103 = Group(number=103, major='B.S. in Applied Mathematics and Statistics', dept=d2)
g104 = Group(number=104, major='B.S./M.S. in Pure Mathematics', dept=d2)
g105 = Group(number=105, major='B.E in Electronics', dept=d3)
g106 = Group(number=106, major='B.S./M.S. in Nuclear Engineering', dept=d3)
s1 = Student(name='John Smith', dob=date(1991, 3, 20), tel='123-456', gpa=3, group=g101,
courses=[c1, c2, c4, c6])
s2 = Student(name='Matthew Reed', dob=date(1990, 11, 26), gpa=3.5, group=g101,
courses=[c1, c3, c4, c5])
s3 = Student(name='Chuan Qin', dob=date(1989, 2, 5), gpa=4, group=g101,
courses=[c3, c5, c6])
s4 = Student(name='Rebecca Lawson', dob=date(1990, 4, 18), tel='234-567', gpa=3.3, group=g102,
courses=[c1, c4, c5, c6])
s5 = Student(name='Maria Ionescu', dob=date(1991, 4, 23), gpa=3.9, group=g102,
courses=[c1, c2, c4, c6])
s6 = Student(name='Oliver Blakey', dob=date(1990, 9, 8), gpa=3.1, group=g102,
courses=[c1, c2, c5])
s7 = Student(name='Jing Xia', dob=date(1988, 12, 30), gpa=3.2, group=g102,
courses=[c1, c3, c5, c6])
populate_database()