Answers for "increase instagram followers using python"

8

python instagram bot

from instapy import InstaPy

session = InstaPy(username="<your_username>", password="<your_password>")
session.login()
session.like_by_tags(["bmw", "mercedes"], amount=5)
session.set_dont_like(["naked", "nsfw"])
session.set_do_follow(True, percentage=50)
session.set_do_comment(True, percentage=50)
session.set_comments(["Nice!", "Sweet!", "Beautiful :heart_eyes:"])
session.end()
Posted by: Guest on July-14-2020
0

increase instagram followers using python

from instapy import InstaPy

session = InstaPy(username="<lil__keed>", password="<instagram>")

session.login()

session.like_by_tags(["bmw", "mercedes"], amount=5)

session.set_dont_like(["naked", "nsfw"])

session.set_do_follow(True, percentage=50)

session.set_do_comment(True, percentage=50)

session.set_comments(["Nice!", "Sweet!", "Beautiful :heart_eyes:"])

session.end()
Posted by: Guest on October-11-2021

Code answers related to "increase instagram followers using python"

Python Answers by Framework

Browse Popular Code Answers by Language