-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclothes_data.py
More file actions
300 lines (298 loc) · 13.3 KB
/
Copy pathclothes_data.py
File metadata and controls
300 lines (298 loc) · 13.3 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#!/usr/bin/env python3
"""
中东衣服交换平台 - 衣服数据
包含所有衣服的推销文案
"""
# 衣服数据(15件)
CLOTHES_DATA = [
{
'id': 1,
'title': 'Stylish Swimsuit',
'category': 'Swimwear',
'cover': '/static/clothes-middle-east/item1.png',
'condition': 'Like New',
'size': 'M',
'why_release': 'I\'m trading this stunning swimsuit because I want something that will make every head turn at the beach. This piece has been my secret weapon for attracting attention, and I\'m ready to exchange it for something that will make me feel even more irresistible. Perfect for someone who wants to look absolutely captivating.',
'user': {
'name': 'Fatima Al-Mansoori',
'avatar': 'https://i.pravatar.cc/150?img=1',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 2,
'title': 'Casual Summer Outfit',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item2.png',
'condition': 'Excellent',
'size': 'S',
'why_release': 'I want to exchange this casual outfit because I\'m looking for something that will catch your eye instantly. This piece has been my go-to for making a bold statement, and I\'m ready to swap it for something that will make me feel even more alluring. Ideal for someone who wants to look effortlessly seductive.',
'user': {
'name': 'Layla Hassan',
'avatar': 'https://i.pravatar.cc/150?img=5',
'trust_level': 'new',
'trust_badge': '🌙 New Member'
},
'has_story': True,
'verified': False
},
{
'id': 3,
'title': 'Professional Business Attire',
'category': 'Business',
'cover': '/static/clothes-middle-east/item3.png',
'condition': 'Like New',
'size': 'L',
'why_release': 'I\'m trading this professional attire because I want something that will make me feel powerful and irresistible. This outfit has been my confidence booster, and now I want to exchange it for something that will make me feel even more desirable. Perfect for someone who wants to look both professional and absolutely captivating.',
'user': {
'name': 'Noor Al-Zahra',
'avatar': 'https://i.pravatar.cc/150?img=9',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 4,
'title': 'Trendy Street Style Outfit',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item4.png',
'condition': 'Good',
'size': 'M',
'why_release': 'I want to exchange this trendy outfit because I\'m seeking something that will make me feel more seductive. This piece has been my favorite for turning heads, and I\'m ready to trade it for something that will make me feel even more irresistible. Ideal for someone who wants to look effortlessly hot and alluring.',
'user': {
'name': 'Aisha Mohammed',
'avatar': 'https://i.pravatar.cc/150?img=12',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 5,
'title': 'Comfortable Home Wear',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item5.png',
'condition': 'Excellent',
'size': 'S',
'why_release': 'I\'m trading this comfortable wear because I want something that will make me feel more desirable. This piece has been my comfort choice, but now I want something that will make me feel more attractive and captivating. Perfect for someone who wants to look both comfortable and absolutely irresistible.',
'user': {
'name': 'Mariam Al-Rashid',
'avatar': 'https://i.pravatar.cc/150?img=15',
'trust_level': 'new',
'trust_badge': '🌙 New Member'
},
'has_story': True,
'verified': False
},
{
'id': 6,
'title': 'Elegant Formal Dress',
'category': 'Dress',
'cover': '/static/clothes-middle-east/item6.png',
'condition': 'Like New',
'size': 'M',
'why_release': 'I want to exchange this elegant dress because I\'m looking for something that will make me feel more irresistible. This piece has been my secret weapon for special occasions, and now I want to trade it for something that will make me feel even more captivating. Ideal for someone who wants to look stunning and absolutely seductive.',
'user': {
'name': 'Zainab Al-Khalifa',
'avatar': 'https://i.pravatar.cc/150?img=20',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 7,
'title': 'Stylish Casual Top',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item7.png',
'condition': 'Good',
'size': 'L',
'why_release': 'I\'m trading this casual top because I want something that will make me feel more attractive. This piece has been my go-to for looking amazing, and now I want to exchange it for something that will make me feel even more desirable. Perfect for someone who wants to look effortlessly sexy and alluring.',
'user': {
'name': 'Sara Al-Mazrouei',
'avatar': 'https://i.pravatar.cc/150?img=25',
'trust_level': 'new',
'trust_badge': '🌙 New Member'
},
'has_story': False,
'verified': False
},
{
'id': 8,
'title': 'Chic Modern Outfit',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item8.png',
'condition': 'Excellent',
'size': 'M',
'why_release': 'I want to exchange this modern outfit because I\'m seeking something that will make me feel more seductive. This piece has been my favorite for attracting attention, and I\'m ready to swap it for something that will make me feel even more irresistible. Ideal for someone who wants to look hot and absolutely captivating.',
'user': {
'name': 'Hala Al-Dhaheri',
'avatar': 'https://i.pravatar.cc/150?img=30',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 9,
'title': 'Classic Timeless Piece',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item9.png',
'condition': 'Like New',
'size': 'S',
'why_release': 'I\'m trading this timeless piece because I want something that will make me feel more desirable. This piece has been my classic choice, but now I want something that will make me feel more attractive and alluring. Perfect for someone who wants to look both elegant and absolutely irresistible.',
'user': {
'name': 'Amira Al-Suwaidi',
'avatar': 'https://i.pravatar.cc/150?img=35',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 10,
'title': 'Fashion-Forward Statement Outfit',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item10.png',
'condition': 'Excellent',
'size': 'L',
'why_release': 'I want to exchange this statement outfit because I\'m looking for something that will make me feel more irresistible. This piece has been my bold choice for turning heads, and now I want to trade it for something that will make me feel even more captivating. Ideal for someone who wants to look stunning and absolutely seductive.',
'user': {
'name': 'Yasmin Al-Qasimi',
'avatar': 'https://i.pravatar.cc/150?img=40',
'trust_level': 'new',
'trust_badge': '🌙 New Member'
},
'has_story': True,
'verified': False
},
{
'id': 11,
'title': 'Versatile Everyday Outfit',
'category': 'Casual',
'cover': '/static/clothes-middle-east/item11.png',
'condition': 'Good',
'size': 'M',
'why_release': 'I\'m trading this versatile outfit because I want something that will make me feel more attractive. This piece has been my reliable choice, and now I want to exchange it for something that will make me feel even more desirable. Perfect for someone who wants to look effortlessly sexy and alluring.',
'user': {
'name': 'Rania Al-Nuaimi',
'avatar': 'https://i.pravatar.cc/150?img=45',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 12,
'title': 'Elegant Special Occasion Outfit',
'category': 'Dress',
'cover': '/static/clothes-middle-east/item12.png',
'condition': 'Like New',
'size': 'S',
'why_release': 'I want to exchange this special occasion outfit because I\'m seeking something that will make me feel more seductive. This piece has been my go-to for celebrations, and I\'m ready to swap it for something that will make me feel even more irresistible. Ideal for someone who wants to look hot and absolutely captivating.',
'user': {
'name': 'Lina Al-Mazrouei',
'avatar': 'https://i.pravatar.cc/150?img=50',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 13,
'title': 'Comfortable Sleepwear Set',
'category': 'Sleepwear',
'cover': '/static/clothes-middle-east/sleepwear.png',
'condition': 'Excellent',
'size': 'M',
'why_release': 'I\'m trading this sleepwear set because I want something that will make me feel more desirable. This piece has been my comfort choice, but now I want something that will make me feel more attractive and alluring. Perfect for someone who wants to look both comfortable and absolutely irresistible.',
'user': {
'name': 'Nadia Al-Hosani',
'avatar': 'https://i.pravatar.cc/150?img=55',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 14,
'title': 'Fashion Magazine Collection',
'category': 'Magazine',
'cover': '/static/clothes-middle-east/magazine1.png',
'condition': 'Like New',
'size': 'N/A',
'why_release': 'I want to exchange this fashion magazine collection because I\'m looking for something that will inspire me to look more irresistible. This collection has been my style guide, and now I want to trade it for something that will make me feel even more captivating. Ideal for someone who wants to stay updated with seductive fashion trends.',
'user': {
'name': 'Dina Al-Kaabi',
'avatar': 'https://i.pravatar.cc/150?img=60',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
},
{
'id': 15,
'title': 'Fashion Exchange Magazine',
'category': 'Magazine',
'cover': '/static/clothes-middle-east/magazine2.png',
'condition': 'Excellent',
'size': 'N/A',
'why_release': 'I\'m trading this fashion exchange magazine because I want something that will make me feel more attractive. This magazine has been my inspiration, and now I want to exchange it for something that will make me feel even more desirable. Perfect for someone who wants to discover the art of looking absolutely irresistible.',
'user': {
'name': 'Salma Al-Mansoori',
'avatar': 'https://i.pravatar.cc/150?img=65',
'trust_level': 'trusted',
'trust_badge': '⭐ Trusted Member'
},
'has_story': True,
'verified': True
}
]
# 交换历史示例数据
SAMPLE_EXCHANGES = [
{
'id': 1,
'date': '2025-01-08',
'item1': {
'title': 'Elegant Evening Dress',
'cover': '/static/clothes-middle-east/item1.png',
'user': 'Fatima'
},
'item2': {
'title': 'Professional Business Attire',
'cover': '/static/clothes-middle-east/item3.png',
'user': 'Noor'
},
'message1': 'Thank you for this beautiful exchange! The dress is perfect.',
'message2': 'So happy you love it! Enjoy your new professional look!'
},
{
'id': 2,
'date': '2025-01-05',
'item1': {
'title': 'Casual Summer Outfit',
'cover': '/static/clothes-middle-east/item2.png',
'user': 'Layla'
},
'item2': {
'title': 'Comfortable Home Wear',
'cover': '/static/clothes-middle-east/item5.png',
'user': 'Mariam'
},
'message1': 'Perfect for Dubai weather! Thank you so much!',
'message2': 'Glad it works for you! Enjoy your new casual style!'
}
]