-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodels.py
37 lines (33 loc) · 1 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
from mongoengine import Document
from mongoengine.fields import (
ListField, DecimalField, IntField,ReferenceField, StringField,
)
class States(Document):
meta = {'collection': 'states'}
key = StringField()
name = StringField()
address = StringField()
latitude = DecimalField()
longitude = DecimalField()
confirmed = IntField()
deaths = IntField()
recovered = IntField()
class Statistics(Document):
meta = {'collection': 'statistics'}
country = StringField()
code = StringField()
flag = StringField()
coordinates = ListField(DecimalField())
confirmed = IntField()
deaths = IntField()
recovered = IntField()
states = ListField(ReferenceField(States))
class TotalCases(Document):
meta = {'collection': 'total_cases'}
total_confirmed = IntField()
total_deaths = IntField()
total_recovered = IntField()
last_date_updated = StringField()
class Subscriber(Document):
meta = {'collection': 'subscriber'}
email = StringField()