0

I'm a novice and started learning to use Instapy, bought a course which I'm considering asking a refund for, since the teacher won't answer. Before I do that, however, thought of giving it a chance and trying my luck here.

Here's the code:

from instapy import InstaPy
from instapy import smart_run

session = InstaPy(username='xxxxxxxxx', password='xxxxxxxxx')

with smart_run(session):
    session.set_do_follow(enabled = True, percentage = 100)
    session.set_do_like(enabled = True, percentage = 100)

session.like_by_tags(['João Pessoa', 'Joao Pessoa', 'Jampa'], amount=100)

comentarios = ['Legal', 'Cool']
session.set_do_comments(enabled=True, percentage=95)
session.set_comments(comentarios, media= 'Photo')
session.join_pods()

code just like teacher's and cmd's commands

error message

https://youtu.be/f4Q11HbxazU - what happens, or better yet, does not happen...

Thank you very much for your help folks.

Richie Bendall
  • 7,738
  • 4
  • 38
  • 58

1 Answers1

0

Get a refund. (not legal advice)

In the first screenshot, an internet connection error inhibits the login process and in the second, it should be set_do_comment instead of set_do_comments.

See the (free) docs for more information.

Richie Bendall
  • 7,738
  • 4
  • 38
  • 58