scraper

How to scrape a website that requires login first with Python

How to scrape a website that requires login first with Python Question: First of all, I think it’s worth saying that, I know there are a bunch of similar questions but NONE of them works for me… I’m a newbie on Python, html and web scraper. I’m trying to scrape user information from a website …

Total answers: 3

scrape websites with infinite scrolling

scrape websites with infinite scrolling Question: I have written many scrapers but I am not really sure how to handle infinite scrollers. These days most website etc, Facebook, Pinterest has infinite scrollers. Asked By: add-semi-colons || Source Answers: Most sites that have infinite scrolling do (as Lattyware notes) have a proper API as well, and …

Total answers: 3

BeautifulSoup: extract text from anchor tag

BeautifulSoup: extract text from anchor tag Question: I want to extract: text from following src of the image tag and text of the anchor tag which is inside the div class data I successfully manage to extract the img src, but am having trouble extracting the text from the anchor tag. <a class=”title” href=”http://www.amazon.com/Nikon-COOLPIX-Digital-Camera-NIKKOR/dp/B0073HSK0K/ref=sr_1_1?s=electronics&amp;ie=UTF8&amp;qid=1343628292&amp;sr=1-1&amp;keywords=digital+camera”>Nikon COOLPIX …

Total answers: 8