├── .gitignore ├── LICENCE ├── README.md ├── constraint.py ├── example.py ├── instagram_bot.py ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | liked_posts.txt 4 | *.pyc -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzaytsev91/mygf-instagram/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzaytsev91/mygf-instagram/HEAD/README.md -------------------------------------------------------------------------------- /constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzaytsev91/mygf-instagram/HEAD/constraint.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzaytsev91/mygf-instagram/HEAD/example.py -------------------------------------------------------------------------------- /instagram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzaytsev91/mygf-instagram/HEAD/instagram_bot.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzaytsev91/mygf-instagram/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzaytsev91/mygf-instagram/HEAD/requirements.txt --------------------------------------------------------------------------------