Instapy: Question - way to stop the bot in the middle of the cycle, AND see the report (liked-followed-inappropriate, etc)?

Created on 31 Jan 2018  路  7Comments  路  Source: timgrossmann/InstaPy

Subj. Is it possible to stop the bot half way and see that report which is usually displayed only if the full cycle is accomplished?

wontfix

All 7 comments

Can be accomplished but complicated.

Better to just stop the loop .... showing the results is the difficult issue

Thank you!

If you're kicking this off from the command line, you can write to logs an then just look through the logs.

python quickstart.py >> /path/to/your/log/file.log 2>&1

also ...

    except KeyboardInterrupt:
        session.end()
        quit()

Can work but need some workarounds

ctrl + c

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

If this problem still occurs, please open a new issue

Was this page helpful?
0 / 5 - 0 ratings