-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
executable file
·52 lines (45 loc) · 1.31 KB
/
constants.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
c_id = 'id'
c_full_name = 'full_name'
c_first_name = 'first_name'
c_last_name = 'last_name'
c_email_id = 'email_id'
c_profile_pic_url = 'profile_pic_url'
c_password = 'password'
c_phone_number = 'phone_number'
c_provider = 'provider'
c_location = 'home_location'
c_token = 'token'
c_share_id = 'share_id'
c_user_id = 'user_id'
c_serve_size = 'serve_size'
c_last_till = 'last_till'
c_available_time = 'available_till'
c_food_type = 'food_type'
c_image_ids = 'image_ids'
c_share_status = 'share_status'
c_sharer_contact = 'share_contact'
c_share_location = 'share_location'
c_lat = 'lat'
c_long = 'long'
c_transport_id = 'transport_id'
c_created_time = 'created_time'
c_name = 'name'
c_id = 'id'
c_pickup_location = 'pickup_location'
c_drop_location = 'drop_location'
c_pickup_contact = 'pickup_contact'
c_drop_contact = 'drop_contact'
c_pickup_time = 'pickup_time'
c_delivery_time = 'delivery_time'
c_serve_size = 'serve_size'
c_matched = 'matched'
c_transport_user_id = 'transport_user_id'
c_request_user_id = 'request_user_id'
c_status_open = "open"
c_status_closed = "closed"
c_status_ongoing = "ongoing"
c_request_id = 'request_id'
c_available_till = 'available_till'
c_transport_type = 'transport_type'
c_transport_status = 'transport_status'
c_S3_BUCKET = 'cse8803-mas-images'