I wanted to go with the funny haha number, but it was probably taken so many times in this thread already
Comment has been collapsed.
On a side note, let me know if you need help making that parser. I'm handy with Python. ^^
Comment has been collapsed.
Whipped together a quick Python script, it outputs a list of dictionaries, but you could have it output a file (CSV, Excel. etc).
import requests
from bs4 import BeautifulSoup as bs
url = 'https://www.steamgifts.com/discussion/JicPW/everyone-get-a-chance/search?page='
pages_count = 6 # Set this value to the last page of the thread
parsed_list = []
def parser():
for i in range(pages_count):
r = requests.get(url+str(i+1))
soup = bs(r.content, "html.parser")
comments = soup.find_all('div', {'class': 'comment__summary'})
for comment in comments:
content = comment.find('div', {'class': 'comment__description markdown markdown--resize-body'}).text.strip()
author = comment.find('div', {'class': 'comment__username'}).text
if content.isdigit():
parsed_list.append({author: content})
Comment has been collapsed.
Not sure, JS is a beast I haven't tried to tame, I'm terrified of it. :D
Comment has been collapsed.
16 Comments - Last post 41 minutes ago by vlbastos
23 Comments - Last post 57 minutes ago by diamonds1358
800 Comments - Last post 1 hour ago by eeev
34 Comments - Last post 1 hour ago by Chris76de
60 Comments - Last post 2 hours ago by raenye
16,415 Comments - Last post 2 hours ago by Dayannah
1,965 Comments - Last post 3 hours ago by TwixClub
19 Comments - Last post 2 minutes ago by Thexder
3,445 Comments - Last post 4 minutes ago by pizurk
40 Comments - Last post 6 minutes ago by Cjcomplex
559 Comments - Last post 20 minutes ago by cassioht
13 Comments - Last post 51 minutes ago by Kyog
10 Comments - Last post 1 hour ago by cowbell
20 Comments - Last post 1 hour ago by dankk
Hi everyone,
how are you?
I've had this idea for an event in mind for years now ..and, again, I couldn't make it 😅 At this rate, it's never going to see the light.
So, here comes something entirely different!
Rules
What comes next
I'll random.orgly select 10 numbers and all the people who chose those numbers will be in for some whitelist giveaways. Don't know what they'll be yet, it could be some AAA title «That was a joke; haha, fat chance» or some asset flip.. who knows? who cares? You don't lose anything anyway 😉 #joinfortheplusone
Bonus
So, with my upcoming birthday, I bought one of those Fanatical Birthday Mystery Bundle I mean, how could I not get one? It says it's for birthday! 🤪
..most of the games are in the current Holiday Event, but I've kept 5 of them for this thread. With the help of random.org, I've selected 5 numbers and those giveaways will appear here as "soon" as any of you will select those numbers.
Disclaimer(s)
UPDATE
Please when I say that the comment for participating needs to have only the number, I mean it. Nothing else, not even an exclamation point! That's because, if I manage to complete the parser, all those comments are going to be ignored. I'm saying it for your sake 🥺
UPDATE #2
The numbers have been chosen!
Comment has been collapsed.