mirror of
https://github.com/misiektoja/instagram_monitor.git
synced 2026-04-25 22:35:49 +03:00
[GH-ISSUE #1] Monitor multiple users #1
Labels
No labels
Stale
Stale
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/instagram_monitor#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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?
@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 user1and in the second:
./instagram_monitor.py user2However 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_user1Then run the tool for the first user:
./instagram_monitor.py user1Press 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_user2And run the tool for the second user:
./instagram_monitor.py user2You can reattach to the sessions created earlier like this:
tmux a -t insta_user1tmux a -t insta_user2I will add some more info about it in the README later.