20 lines
844 B
Python
20 lines
844 B
Python
# 这个文件用来储存所有的category和occasion,这是标准文件。
|
||
|
||
CATEGORY = [
|
||
'shoes', 'bags', 'dresses', 'tops', 'pants', 'skirts', 'outerwear', 'swimwear', 'suits',
|
||
'watches', 'sunglasses', 'belts', 'hats', 'jewelry', 'neckties', 'scarves & shawls'
|
||
]
|
||
CLOTHING_CATEGORY = [
|
||
'shoes', 'bags', 'dresses', 'tops', 'pants', 'skirts', 'outerwear', 'swimwear'
|
||
]
|
||
ACCESSORY_CATEGORY = [
|
||
'watches', 'sunglasses', 'belts', 'hats', 'jewelry', 'neckties', 'scarves & shawls'
|
||
]
|
||
OCCASION = [
|
||
"Casual", "Formal", "Activewear", "Resort", "Evening", "Outdoor",
|
||
"Business / workwear", "Cocktail / Semi-Formal", "Black Tie / White Tie",
|
||
"Bridal / Wedding", "Festival / Concert", "Party / Clubbing",
|
||
"Travel / Transit", "Athleisure", "Beach / Swim", "Ski / Snow / Mountain",
|
||
"Garden Party / Daytime Event"
|
||
]
|