autoscraper icon indicating copy to clipboard operation
autoscraper copied to clipboard

A Smart, Automatic, Fast and Lightweight Web Scraper for Python

Results 15 autoscraper issues
Sort by recently updated
recently updated
newest added

I am trying to export a localhost website that is generated with this project: https://github.com/HBehrens/puncover The project generates a localhost website, and each time the user interacts clicks a link...

This is my code ``` from autoscraper import AutoScraper url = 'https://www.thedailystar.net/news/bangladesh/diplomacy/news/rohingya-repatriation-countries-should-impose-sanctions-pressurise-myanmar-2922581' # We can add one or multiple candidates here. # You can also put urls here to retrieve...

Hello! @alirezamika I wanted to ask what to do if the text in the wanted list is no longer available in the website ! ``` from autoscraper import AutoScraper scrapper=AutoScraper()...

i tried to scrape the webpage but the results are zero 👍 ///////// ` from autoscraper import AutoScraper url = 'https://trade.mango.markets/account?pubkey=8zJHqNa9sVvyLmVBQwY2vch5729dqfmzF3cxE25ZYVn' wanted_list = ['Futures Positions','Notion Size'] scraper = AutoScraper() result...

Most of the pages you demo on are dynamic, so some of the quoted text disappears. Can you pick sites that don't change as ofter.

https://www.homedepot.com/p/Suncast-Tremont-8-ft-4-1-2-in-x-10-ft-2-1-4-in-Resin-Storage-Shed-BMS8100/205115642

I am trying to scrape data from amazon through autoscraper but it is fetching empty list ![image](https://user-images.githubusercontent.com/123429653/228414909-75ae7ff7-4f01-4083-b3eb-1d57b5b1b090.png)

Hi again, in my code data is not correct . mean for ex. iphone 11 price must be 10000 but its returned 150 which is airpod price. How can i...

Hello! First of all, thanks for this great library! I had a use-case where I wanted to find the matching elements of the rules instead of simply their text. So...

Given the examples, struggle to understand how this may be utilized to extract the main article from a page. In this case, the sample would be the article content itself....