yabadabadoo-instagram
v1.0.2
Published
This package crawls instagram accounts and collects data from users.
Downloads
5
Readme
Yabadabadoo-Instagram
This package crawls instagram accounts and collects data from users.
How to use
First import the module:
const yi = require('yabadabadoo-instagram')
Then get your settings object ready:
const settings = {
saveDir: 'profiles',
fetchList: 'accounts.txt',
fetchedList: 'fetched.txt',
saveExtension: 'txt',
wait: 'rand:2,3',
savePrefix: 'user-',
saveSuffix: '-fetched',
useConsole: true,
template: `
NAME: {ad}
ID: {id}
USERNAME: {kadi}
BIOGRAPHY: {bio}
URL: {site}
FOLLOWING: {takip}
FOLLOWERS: {takipci}
PRIVATE: {gizlimi}
PHOTO: {foto}`
}
And finally, use the function:
yi(settings).then( () => {
// done :)
})
Reference
- saveDir (string): Name of the folder where to put the data.
- fetchList (string):
WORK IN PROGRESS