How to increase followers on Instagram by python
from instapy import InstaPy
session = InstaPy(username = "pigirl_tech", password = "8762143801", headless_browser = True)
session.login()
session.set_relationship_bounds(enabled = True, max_followers = 200)
session.set_do_follow(True, percentage=100)
session.like_by_tags(["electronics", "arduino","esp32"], amount = 3)
session.set_dont_like(["non"])
#session.unfollow_users(amount=6, allFollowing=True, sleep_delay=60)
session.end()
Post a Comment