[GH-ISSUE #1] Monitor multiple users #1

Closed
opened 2026-02-27 20:04:55 +03:00 by kerem · 1 comment
Owner

Originally created by @ikoiko12 on GitHub (Jun 11, 2024).
Original GitHub issue: https://github.com/misiektoja/instagram_monitor/issues/1

Hello. Thanks, it's a pretty good tool. I can't figure it out and can you help me monitor some users, how can I do it?

Originally created by @ikoiko12 on GitHub (Jun 11, 2024). Original GitHub issue: https://github.com/misiektoja/instagram_monitor/issues/1 Hello. Thanks, it's a pretty good tool. I can't figure it out and can you help me monitor some users, how can I do it?
kerem closed this issue 2026-02-27 20:04:55 +03:00
Author
Owner

@misiektoja commented on GitHub (Jun 11, 2024):

Hey,

To monitor multiple Instagram users simply spawn additional copies of the script. If you are doing this on your desktop simply open separate terminal windows and in the first one monitor the first user:

./instagram_monitor.py user1

and in the second:

./instagram_monitor.py user2

However I recommend to use sth like tmux or screen (not sure which OS you are using):

Create tmux session for first user:

tmux new -s insta_user1

Then run the tool for the first user:

./instagram_monitor.py user1

Press Ctrl+B and then D to detach from the session. The tool will still run in the background.

Then create tmux session for second copy of the script:

tmux new -s insta_user2

And run the tool for the second user:

./instagram_monitor.py user2

You can reattach to the sessions created earlier like this:

tmux a -t insta_user1

tmux a -t insta_user2

I will add some more info about it in the README later.

<!-- gh-comment-id:2160652791 --> @misiektoja commented on GitHub (Jun 11, 2024): Hey, To monitor multiple Instagram users simply spawn additional copies of the script. If you are doing this on your desktop simply open separate terminal windows and in the first one monitor the first user: ```./instagram_monitor.py user1``` and in the second: ```./instagram_monitor.py user2``` However I recommend to use sth like tmux or screen (not sure which OS you are using): Create tmux session for first user: ```tmux new -s insta_user1``` Then run the tool for the first user: ```./instagram_monitor.py user1``` Press Ctrl+B and then D to detach from the session. The tool will still run in the background. Then create tmux session for second copy of the script: ```tmux new -s insta_user2``` And run the tool for the second user: ```./instagram_monitor.py user2``` You can reattach to the sessions created earlier like this: ```tmux a -t insta_user1``` ```tmux a -t insta_user2``` I will add some more info about it in the README later.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/instagram_monitor#1
No description provided.