├── .gitignore ├── LICENSE ├── README.md ├── comments.txt ├── ilcbot.py ├── instalikecombot.png ├── install.sh ├── limits.json ├── locators └── locators.json ├── logs └── .keepme ├── modules ├── __init__.py ├── applogger.py ├── argparsing.py ├── constants.py ├── exceptions.py ├── helpers.py ├── insta.py ├── instaworkflows.py ├── locators.py ├── profile.py └── stats.py ├── requirements.txt ├── stats └── .keepme ├── targets.txt └── tests ├── __init__.py ├── conftest.py ├── locators.json ├── test_insta_post.py ├── test_insta_reels.py └── test_insta_story.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/README.md -------------------------------------------------------------------------------- /comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/comments.txt -------------------------------------------------------------------------------- /ilcbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/ilcbot.py -------------------------------------------------------------------------------- /instalikecombot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/instalikecombot.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/install.sh -------------------------------------------------------------------------------- /limits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/limits.json -------------------------------------------------------------------------------- /locators/locators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/locators/locators.json -------------------------------------------------------------------------------- /logs/.keepme: -------------------------------------------------------------------------------- 1 | keep me 2 | -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/applogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/applogger.py -------------------------------------------------------------------------------- /modules/argparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/argparsing.py -------------------------------------------------------------------------------- /modules/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/constants.py -------------------------------------------------------------------------------- /modules/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/exceptions.py -------------------------------------------------------------------------------- /modules/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/helpers.py -------------------------------------------------------------------------------- /modules/insta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/insta.py -------------------------------------------------------------------------------- /modules/instaworkflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/instaworkflows.py -------------------------------------------------------------------------------- /modules/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/locators.py -------------------------------------------------------------------------------- /modules/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/profile.py -------------------------------------------------------------------------------- /modules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/modules/stats.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /stats/.keepme: -------------------------------------------------------------------------------- 1 | keep me 2 | -------------------------------------------------------------------------------- /targets.txt: -------------------------------------------------------------------------------- 1 | ed_garlands 2 | short_for_the_day 3 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/locators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/tests/locators.json -------------------------------------------------------------------------------- /tests/test_insta_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/tests/test_insta_post.py -------------------------------------------------------------------------------- /tests/test_insta_reels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/tests/test_insta_reels.py -------------------------------------------------------------------------------- /tests/test_insta_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shine-jayakumar/insta-likecom-bot/HEAD/tests/test_insta_story.py --------------------------------------------------------------------------------