-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.py
36 lines (35 loc) · 1001 Bytes
/
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
entity_unit_map = {
'width': {'centimetre', 'foot', 'inch', 'metre', 'millimetre', 'yard'},
'depth': {'centimetre', 'foot', 'inch', 'metre', 'millimetre', 'yard'},
'height': {'centimetre', 'foot', 'inch', 'metre', 'millimetre', 'yard'},
'item_weight': {'gram',
'kilogram',
'microgram',
'milligram',
'ounce',
'pound',
'ton'},
'maximum_weight_recommendation': {'gram',
'kilogram',
'microgram',
'milligram',
'ounce',
'pound',
'ton'},
'voltage': {'kilovolt', 'millivolt', 'volt'},
'wattage': {'kilowatt', 'watt'},
'item_volume': {'centilitre',
'cubic foot',
'cubic inch',
'cup',
'decilitre',
'fluid ounce',
'gallon',
'imperial gallon',
'litre',
'microlitre',
'millilitre',
'pint',
'quart'}
}
allowed_units = {unit for entity in entity_unit_map for unit in entity_unit_map[entity]}