-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase.py
More file actions
40 lines (30 loc) · 1.53 KB
/
Copy pathdatabase.py
File metadata and controls
40 lines (30 loc) · 1.53 KB
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
# All_shops is the list of all the shops at the manager has added
# from typing import Dict
#----------------------------------------Shop Info----------------------------------------
all_shops = ['shoprite', 'Wodin', 'Banana', 'Casino', 'iStore', 'Mr_Price', 'KFC']
shop_details = {"1": "shop_name", "2": "shopId", "3": "shop_specialties"}
pres = ["1.Shopname ---", "2.ShopId ---", "3.Shop Specialties"]
#==========================================End============================================
#--------------------------------------All changes-----------------------------------------
Shoprite = {'shop_name': 'Shoprite',
'shopId': 'SR1223',
'Shop_specialties': 'We sell all kinds of goods'}
Wodin = {'shop_name': 'Wodin',
'shopId': 'WD1564',
'shop_specialties': 'We sell fabrics and clothes'}
Banana = {'shop_name': 'Banana',
'shopId': 'BN2455',
'shop_specialties': 'We sell all kinds of home appliances'}
Casino = {'shop_name': 'Casino',
'shopId': 'CS4199',
'shop_specialties': 'Play games and win easy money'}
iStore = {'shop_name': 'iStore',
'shopId': 'AP0098',
'shop_specialties': 'We sell all Apple technology'}
Mr_Price = {'shop_name': 'Mr_Price',
'shopId': 'MRP789',
'shop_specialties': 'We sell clothes'}
KFC = {'shop_name': 'KFC',
'shopId': 'KFC667',
'shop_specialties': 'We sell finger-licking fried chicken'}
#----------------------------------------------------------------------------------------------------------