scrapeulous icon indicating copy to clipboard operation
scrapeulous copied to clipboard

Cloud crawler functions for scrapeulous

Results 7 scrapeulous issues
Sort by recently updated
recently updated
newest added

Hi, I was trying out your new repo and found that Google Scraper is only returning top_products from crawled page and organic results, ads are missing apart from bunch of...

How to install dependencies in this project if there is no package.json file?

including "function":"http.js" works but "function":"https://raw.githubusercontent.com/NikolaiT/scrapeulous/master/http.js" does not work. Is the shortcut referencing a different file?

The python code shown below returns a "ReferenceError: HttpWorker is not defined" error. ``` url = 'https://scrapeulous.com/api' payload = { "API_KEY": "key", "function": "https://raw.githubusercontent.com/NikolaiT/scrapeulous/master/meta.js", "region": "us", "items": ['https://www.google.com/'] } r...

There's no extractLinkedin(html) function in social.js. You will also need to chance the extractSocialInformation function. I've shown both revised below: ``` extractLinkedin(html) { let linkedin_urls = html.match( /(?i)http(s)?:\/\/([A-z]+\.)?(linkedin)\.com\/(company|showcase|organization-guest|in|pub)/[A-z0-9_\-\.]+\/?/gm ); if...

Hi, first thanks for the great work done here. This really makes scraping a lot simpler. The issue i have is that if a search term returns no results, a...