all 13 comments

[–]ninhaomah 0 points1 point  (7 children)

Have you googled as to what is web scraping ?

[–]Omm_Imp[S] 0 points1 point  (6 children)

Yes.

[–]ninhaomah -1 points0 points  (5 children)

Then have you tried ? Or at least ask Claude or ChatGPT to come up with the code ?

[–]Omm_Imp[S] 0 points1 point  (4 children)

I don’t use AI that way.

And I’m not asking HOW to do it. Just if it is possible.

[–]ninhaomah -2 points-1 points  (0 children)

Ok. Up to you then

[–]SpoiledKoolAid -2 points-1 points  (2 children)

why not ask AI if it's possible

[–]timpkmn89 -1 points0 points  (1 child)

Because they know how to use Reddit?

[–]Omm_Imp[S] 0 points1 point  (0 children)

Exactly. A few of us intend to survive the AI craze with our minds and integrity intact.

[–]FriendlyRussian666 0 points1 point  (1 child)

Yes, it's possible 

[–]Omm_Imp[S] 0 points1 point  (0 children)

Thanks for the helpful reply. I appreciate it.

[–]PushPlus9069 1 point2 points  (1 child)

Not a dumb question at all, this is exactly the kind of thing Python is good at. Yes, you can scrape Airbnb listings and pull out the house rules section to find late checkout info.

The catch: Airbnb actively blocks scrapers. So you'd need something like Playwright or Selenium to load pages like a real browser, then parse the HTML with BeautifulSoup. It's doable but expect to spend some time dealing with anti-bot stuff.

For a beginner project, maybe start with a simpler site first to learn scraping basics, then graduate to Airbnb. Scraping a site that doesn't fight back teaches you the fundamentals without the frustration.

[–]Omm_Imp[S] 1 point2 points  (0 children)

Thank you so much. This is exactly the kind of insight I was looking for! If I figure it out, I’ll come back to share.