dvingerh / PyInstaStories

Python script to download Instagram stories from Instagram users.
MIT License
329 stars 74 forks source link

Auto Download when new story is added #10

Closed ghost closed 5 years ago

ghost commented 5 years ago

Could auto download be implemented?

dvingerh commented 5 years ago

I won't implement any functionality to allow polling for new stories, but you can use a simple batch/bash loop script to achieve the same thing.

Windows
:loop
python3 pyinstastories.py -d jacobsartorius justinbieber lilhankwilliams
timeout 60 > nul
goto loop
Linux / MacOS
while true
do
    python3 pyinstastories.py -d jacobsartorius justinbieber lilhankwilliams
    sleep 60
done