fernandod1 / Instagram-to-discord

Monitor instagram user account and automatically post new images to discord channel via a webhook. Working 2022!
https://www.fernando.info
Other
127 stars 62 forks source link

for multiple username #6

Closed abdarker closed 3 years ago

abdarker commented 4 years ago

what if i want to monitor multiple user?? how do i do that

K1udg3 commented 3 years ago

Seems like you could just run multiple instances of the script. Not sure haven't tried it.

fernandod1 commented 3 years ago

It can be easily done with minor change in code so its passed to script one argument called username to monitor. Then create a conjob for each username to monitor. Check https://unix.stackexchange.com/questions/237443/is-it-possible-to-pass-arguments-into-a-python-script

Another option is to create a list of usernames to monitor, loop them, and just using one cronjob execution, check all usernames.

abdarker commented 3 years ago

alrighty i will try that