John Glatts

Results 4 comments of John Glatts

For a quick-and-dirty fix, wrap the statement in a try\except block: ```python try: session = InstaPy(username=username, password=password) session.login() except AttributeError as e: print(e) ``` Also, the [Instagrapi](https://github.com/subzeroid/instagrapi) is a working...

@thegreatref you can wrap the statement in a try\except block to keep your script running: ```python try: session = InstaPy(username=username, password=password) session.login() except AttributeError as e: print(e) ``` pls note...

I've had luck with this library [instagrapi](https://github.com/subzeroid/instagrapi) for the common instagram functions. Login, Likes, and Comments are all working. Just be careful as instagram might flag the account.

What errors are you getting?