Skip to content

Instantly share code, notes, and snippets.

View kami4ka's full-sized avatar
🚀
To the Cloud!

Oleg Kulyk kami4ka

🚀
To the Cloud!
View GitHub Profile
@kami4ka
kami4ka / etsy-scraper.js
Last active August 30, 2021 08:21
Scrape Etsy products information using ScrapingAnt web scraping API
/**
* Get data from Etsy search
*
* ScrapingAnt allows you to scrape for free using proxy servers
*
* npm install @scrapingant/scrapingant-client
* npm install cheerio
**/
const ScrapingAntClient = require('@scrapingant/scrapingant-client');
@kami4ka
kami4ka / medium-scraper.js
Created September 13, 2021 08:28
Most popular Medium writers scraper
/**
* Get the most popular Medium writers by tags
*
* ScrapingAnt allows you to scrape for free using proxy servers
*
* npm install @scrapingant/scrapingant-client
* npm install cheerio
**/
const ScrapingAntClient = require('@scrapingant/scrapingant-client');