Commit
·
c498bcc
1
Parent(s):
be8e5ea
more examples, updated flair options
Browse files- dataset.csv +5 -0
- scraper.py +1 -1
dataset.csv
CHANGED
@@ -13,3 +13,8 @@ The last time I went out on my birthday was over 10 years ago, so I might be ove
|
|
13 |
The draped one is more fun but I feel it make me look short ","https://preview.redd.it/90aufgmo1vef1.jpg?width=905&format=pjpg&auto=webp&s=e31e15c72e4348e89e4c2dcb2952ad0fc85c084a,https://preview.redd.it/yo3cjgmo1vef1.jpg?width=439&format=pjpg&auto=webp&s=fb6518c3b4f4876c5cce40accceb7de88720990d",203,1
|
14 |
|
15 |
1m42jjy,M,Going to a concert. Which one looks better?,I’m still learning to dress better. Please be nice. ,"https://preview.redd.it/0qp2rsvkdvdf1.jpg?width=3024&format=pjpg&auto=webp&s=b3bcce5ee2dc8abeb312d1e167da5b8ddd1c827b,https://preview.redd.it/m9gh6tvkdvdf1.jpg?width=3024&format=pjpg&auto=webp&s=7ab5f371ac8bb871a5eaa68b7fc09fd1677a3e81,https://preview.redd.it/6qovckvkdvdf1.jpg?width=3024&format=pjpg&auto=webp&s=352c55e9a263fbf7d6d12c7495c6a2c534b8ffcb",769,1
|
|
|
|
|
|
|
|
|
|
|
|
13 |
The draped one is more fun but I feel it make me look short ","https://preview.redd.it/90aufgmo1vef1.jpg?width=905&format=pjpg&auto=webp&s=e31e15c72e4348e89e4c2dcb2952ad0fc85c084a,https://preview.redd.it/yo3cjgmo1vef1.jpg?width=439&format=pjpg&auto=webp&s=fb6518c3b4f4876c5cce40accceb7de88720990d",203,1
|
14 |
|
15 |
1m42jjy,M,Going to a concert. Which one looks better?,I’m still learning to dress better. Please be nice. ,"https://preview.redd.it/0qp2rsvkdvdf1.jpg?width=3024&format=pjpg&auto=webp&s=b3bcce5ee2dc8abeb312d1e167da5b8ddd1c827b,https://preview.redd.it/m9gh6tvkdvdf1.jpg?width=3024&format=pjpg&auto=webp&s=7ab5f371ac8bb871a5eaa68b7fc09fd1677a3e81,https://preview.redd.it/6qovckvkdvdf1.jpg?width=3024&format=pjpg&auto=webp&s=352c55e9a263fbf7d6d12c7495c6a2c534b8ffcb",769,1
|
16 |
+
1m3wjde,F,All similar but which is actually best? 💙,,"https://preview.redd.it/ce9v978c4udf1.jpg?width=3024&format=pjpg&auto=webp&s=8d8b0d92ec06e4acbd9b1b2c3174b60365e373e0,https://preview.redd.it/821xm68c4udf1.jpg?width=3024&format=pjpg&auto=webp&s=a64009ed305381435b1ca09e6fea86aa11abd58e,https://preview.redd.it/1v4b578c4udf1.jpg?width=3024&format=pjpg&auto=webp&s=706a0108caa78b73c68bc407283a05bc49f6cf05",276,196
|
17 |
+
1ls9ozg,F,Upscale dinner outfit pt 2?,"After everyone unanimously voted for the black strapless dress, I went digging in my closet a bit more for .. less casual dresses (old habits die hard). Are we still team strapless black dress? Or red or pink?","https://preview.redd.it/8ii26pra32bf1.jpg?width=2829&format=pjpg&auto=webp&s=478af8f62e81cb6dc997b819e1284e3cfd49ec2b,https://preview.redd.it/h1okmnra32bf1.jpg?width=2234&format=pjpg&auto=webp&s=f6e1cff51c0953d5cff3981f633b8c4c4e84c632,https://preview.redd.it/c6a5sora32bf1.jpg?width=2290&format=pjpg&auto=webp&s=c4c10927b303b1e1d038b27e4ad8d7180c49fa00",667,1
|
18 |
+
1lrzbuu,F,Dress for upscale dinner,"Thank you all for your help on my last post! It gave me the clarity I needed to not purchase the dress (and save money)!
|
19 |
+
|
20 |
+
I need y’all’s advice one more time. I have a birthday dinner tomorrow for a friend and need help deciding between three dresses: pink, black, or blue? Thank you!","https://preview.redd.it/ixdvxxhotyaf1.jpg?width=2290&format=pjpg&auto=webp&s=c58ff4266be2cd3b5b2b9b9f1a46cb0066685dee,https://preview.redd.it/22idq6hotyaf1.jpg?width=1576&format=pjpg&auto=webp&s=6f3210d343c6815b7c48846cde04f2fd940a43c0,https://preview.redd.it/q4tpkehotyaf1.jpg?width=3308&format=pjpg&auto=webp&s=c81c4c459e0285bc7f0611aa56aa984fc2001e9a",296,1
|
scraper.py
CHANGED
@@ -24,7 +24,7 @@ def main(post_id):
|
|
24 |
raise Exception("Must be a gender or non-binary fashion flair post")
|
25 |
elif "Men's" in post.link_flair_text:
|
26 |
gender = "M"
|
27 |
-
elif "Women's" in post.link_flair_text:
|
28 |
gender = "F"
|
29 |
elif "Non Binary" in post.link_flair_text:
|
30 |
gender = "X"
|
|
|
24 |
raise Exception("Must be a gender or non-binary fashion flair post")
|
25 |
elif "Men's" in post.link_flair_text:
|
26 |
gender = "M"
|
27 |
+
elif "Women's" in post.link_flair_text or "Ladies'" in post.link_flair_text:
|
28 |
gender = "F"
|
29 |
elif "Non Binary" in post.link_flair_text:
|
30 |
gender = "X"
|