Closed ghost closed 6 years ago
hey @bretie, this will do it:
#some SETtings below
session.set_do_follow(enabled=True, percentage=25, times=1) #25%
session.set_do_like(enabled=True, percentage=100) #100%
session.set_do_comment(enabled=True, percentage=100) #100%
#some ACTions below
session.like_by_tags(['nikontop', 'hills'], amount=200)
And always write settings before actions in your quickstart script, otherwise, it will not work properly _(most of the settings start with set
, such as, session.set
_dolike())
Read documentation, it is written well with great examples
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
Expected Behavior
Current Behavior
Just follows if they meet follower limit
Possible Solution (optional)
InstaPy configuration
session.set_upper_follower_count(limit=1500) session.follow_by_tags(['bodybuilding', 'fit', 'fitness', 'gym', 'fitnessmotivation'], amount=50) session.set_do_comment(True, percentage=100) session.set_dont_like(['gay', 'fag', 'instagay', 'boy', 'motivationalquotes', 'fitgirl', 'toptags', 'model', 'Fitgirl']) session.like_by_tags(['bodybuilding', 'fit', 'fitness', 'gym', 'fitnessmotivation'], amount=100) session.set_comments([u'Great job! :fire:', u'Looking great! :100:'])
Notes
I'm new to InstaPy, just playing with it right now. Are there any public configurations besides whats on the Git?