0.1.2 • Published 4 years ago

@juliendu11/instagramuserfinder v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Build Status

InstagramUserFinder

Find users by keyword, extract their username

Do a google search by targeting the instagram site with a keyword and then extract the username by looking at the title, description and link, only public accounts will be found.

Using google-it to scrap the results and put them in JSON format

Install

npm i @juliendu11/instagramuserfinder

How to use ?

const instagram_user_finder = require ('@juliendu11/instagramuserfinder');

(async () =>{
console.log(await instagram_user_finder.getUsersWithKeyword('travel', 100)) //('keyword', limit (default is 100))
})()

Result example:
[
  'exploretagstravel',
  'travelmehappy',
  'travelawesome',
  'taylor_fuller',
  'melinoush.travel',
....
]

Dependencies