I have looked around the docs, wiki and tried Googling, but I still can't find information about the interaction part of InstaPy. Could you kindly explain what is the difference between:
session.set_user_interact(amount=5, random=True, percentage=50, media='Photo')
session.interact_user_followers(['natgeo'], amount=10, random=True)
What part does 'session.set_user_interact' play in my interaction with natgeo's 10 followers?
Alright after observing the bot for awhile. I think I understand now.
session.interact_user_followers(['natgeo'], amount=10, random=True)
would get 10 random followers from natgeo
whereas
session.set_user_interact(amount=5, random=True, percentage=50, media='Photo')
would look at 5 pictures from the random follower that it picked earlier
and
session.set_do_follow(enabled=False, percentage=70)
session.set_do_like(enabled=False, percentage=70)
session.set_comments(["Cool", "Super!"])
session.set_do_comment(enabled=True, percentage=80)
are the % chance of each action for each picture on the random account.
Am I right?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
If this problem still occurs, please open a new issue
Most helpful comment
Alright after observing the bot for awhile. I think I understand now.
session.interact_user_followers(['natgeo'], amount=10, random=True)would get 10 random followers from natgeo
whereas
session.set_user_interact(amount=5, random=True, percentage=50, media='Photo')would look at 5 pictures from the random follower that it picked earlier
and
are the % chance of each action for each picture on the random account.
Am I right?