return attributes
parts = description.split(" ")
for part in parts:
if part.startswith("Department:"):
attributes.append("Department: " + part.split(" ")[-1])
elif part.startswith("Type:"):
attributes.append("Type: " + part.split(" ")[-1])
elif part.startswith("Brand:"):
attributes.append("Brand: " + part.split(" ")[-1])
elif part.startswith("Size Type:"):
attributes.append("Size Type: " + part.split(" ")[-1])
elif part.startswith("Sleeve Length:"):
attributes.append("Sleeve Length: "
Department: Men
Type: Polo
Brand: U Suck At Golf
Size Type: Regular
Sleeve Length: Short Sleeve
Size: 3XL
Color: White
Performance/Activity: Golf
travel workwear #dressshirt #men #pants #navy #leather #belt #button #classic #casual #longsleeve #summer #accessories #travel
Output:
#men #polo #pants #navy #leather #belt #button #classic #casual #long sleeve #summer #accessories
Comment:
Did not fit: #travel #workwear #golf #dressshirt
---
Input:
#women #skirt #casual #party #travel workwear business dress #dressshirt #shirt #workwear #pants #summer #accessories #casual #newcollection
Output:
#women #skirt #dressshirt #pants #summer #accessories #casual
Comment:
Did not fit: #workwear #travel #business #party
---
Input:
#men #shoes #leather #black #business #casual #summer #accessories #running
Output:
#men #leather #black #shoes #summer #accessories #running
Comment:
Did not fit: #business #casual #workwear #travel
---
Input:
#women #dress #casual #party #travel workwear business dress #shirt #dress #summer #accessories #comfortable
Output:
#women #dress #shirt #comfortable #summer #accessories
Comment:
Did not fit: #workwear #travel #business
---
Input:
#men #polo #travel #business casual workwear #dressshirt #men #polo #navy #leather #belt #button #classic #casual #longsleeve #summer #accessories
Output:
#men #polo #navy #leather #belt #button #classic #casual #long sleeve #summer #accessories
Comment:
Did not fit: #travel #business #workwear #dressshirt
---
Input:
#women #dress #casual #party #travel workwear business dress #shirt #dress #summer #accessories #fashion #newcollection
Output:
#women #dress #shirt #summer #accessories
Comment:
Did not fit: #workwear #travel #business #casual
---
Input:
#men #polo #leather #black #business #casual #longsleeve #summer #accessories #classic #button #comfort
Output:
#men #polo #leather #black #business #casual #long sleeve #summer #accessories
Comment:
Did not fit: #comfort
```