I am trying to write a code for instapy to like and comment on posts through tags. It shows up the tags page but does not interact with the posts. My code:
session = InstaPy(username, password)
session.login()
session.set_relationship_bounds(enabled=True,max_followers=200)
session.set_do_follow(True,percentage=100)
session.like_by_tags(["indiemusic", "heartbreakanniversary"], amount=5,interact=True)
session.set_dont_like(["naked", "nsfw"])
session.set_do_follow(True, percentage=50)
session.set_do_comment(True, percentage=50)
session.set_comments(["Nice!", "S`weet!", "Beautiful :heart_eyes:"])
session.set_user_interact(amount=1,randomize=True,percentage=100)
session.end()