├── .gitignore ├── Procfile ├── __pycache__ └── credentials.cpython-38.pyc ├── bot.py ├── credentials.py ├── geckodriver.log └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | \evn 2 | credentials.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python bot.py -------------------------------------------------------------------------------- /__pycache__/credentials.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-bot/HEAD/__pycache__/credentials.cpython-38.pyc -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-bot/HEAD/bot.py -------------------------------------------------------------------------------- /credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-bot/HEAD/credentials.py -------------------------------------------------------------------------------- /geckodriver.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/instagram-bot/HEAD/requirements.txt --------------------------------------------------------------------------------