├── .gitignore ├── README.md ├── configure.py ├── like_location.py ├── like_my_feed.py ├── like_tag.py ├── like_username.py ├── profile_analyzer.py ├── requirements.txt └── var ├── cookie └── .gitkeep ├── db └── .gitkeep ├── exclude_accounts.txt └── log ├── .gitkeep └── screenshot └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/README.md -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/configure.py -------------------------------------------------------------------------------- /like_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/like_location.py -------------------------------------------------------------------------------- /like_my_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/like_my_feed.py -------------------------------------------------------------------------------- /like_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/like_tag.py -------------------------------------------------------------------------------- /like_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/like_username.py -------------------------------------------------------------------------------- /profile_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/profile_analyzer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | insta_browser -------------------------------------------------------------------------------- /var/cookie/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/exclude_accounts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricha/insta_bot/HEAD/var/exclude_accounts.txt -------------------------------------------------------------------------------- /var/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/log/screenshot/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------