├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── requirements.txt ├── state.cfg └── twitter.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | twitter.cfg 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbstt/impf-progress-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbstt/impf-progress-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbstt/impf-progress-bot/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tweepy==4.14.0 -------------------------------------------------------------------------------- /state.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbstt/impf-progress-bot/HEAD/state.cfg -------------------------------------------------------------------------------- /twitter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbstt/impf-progress-bot/HEAD/twitter.cfg --------------------------------------------------------------------------------