├── .bumpversion.cfg ├── .github ├── DONATE_BITCOIN.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-others.md ├── PULL_REQUEST_TEMPLATE.md ├── issue-close-app.yml └── stale.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST ├── OLD_README.md ├── Pipfile ├── Pipfile.lock ├── codecov.yml ├── examples ├── approve_thread_requests.py ├── archive_medias.py ├── autopost │ ├── README.md │ ├── auto_post.py │ └── pics.txt ├── black-whitelist │ ├── black_white_lists.py │ ├── blacklist.txt │ ├── whitelist.txt │ └── whitelist_generator.py ├── block_bots.py ├── collect_stats.py ├── comment │ ├── comment_hashtags.py │ ├── comment_your_feed.py │ ├── comments.txt │ ├── comments_emoji.txt │ └── reply_to_media_comments.py ├── comment_medias_by_location.py ├── config │ ├── blacklist.txt │ ├── comments.txt │ ├── followed.txt │ ├── friends.txt │ ├── hashtag_database.txt │ ├── setting_multiscript.txt │ ├── skipped.txt │ ├── unfollowed.txt │ ├── username_database.txt │ └── whitelist.txt ├── delete_all_posts.py ├── direct_send_photo.py ├── download_photos_by_hashtag.py ├── download_photos_by_user.py ├── download_stories.py ├── download_user_videos.py ├── download_your_photos.py ├── filter_blacklist_hashtag_medias.py ├── filter_private_profiles.py ├── follow_last_user_media_likers.py ├── follow_requests.py ├── follow_user_followers.py ├── follow_user_following.py ├── follow_users_by_hashtag.py ├── follow_users_from_file.py ├── get_followers_or_followings_to_file.py ├── get_hashtags_from_keywords.py ├── infinity_feedliker.py ├── infinity_hashtags_follower.py ├── infinity_hashtags_liker.py ├── interact_DM.py ├── like_and_follow_last_user_media_likers.py ├── like_and_follow_media_likers.py ├── like_and_follow_your_last_media_likers.py ├── like_example.py ├── like_hashtags.py ├── like_hashtags_from_file.py ├── like_location_feed.py ├── like_medias_by_location.py ├── like_timeline_feed.py ├── like_user_followers.py ├── like_user_following.py ├── like_users.py ├── like_users_from_file.py ├── like_your_last_media_likers.py ├── message_users.py ├── messages.csv ├── multi_script_CLI.py ├── photos │ ├── README.md │ ├── captions_for_medias.py │ ├── pics.txt │ └── upload_photos.py ├── repost_best_photos_from_users.py ├── repost_photo.py ├── reset_following.py ├── save_unfollowers_into_file.py ├── save_users_followers_into_file.py ├── save_users_following_into_file.py ├── stories │ └── watch_user_likers_stories.py ├── ultimate │ ├── follow_followers.txt │ ├── follow_following.txt │ ├── like_hashtags.txt │ ├── like_users.txt │ └── ultimate.py ├── ultimate_schedule │ ├── config.py │ ├── config │ │ ├── blacklist.txt │ │ ├── comments.txt │ │ ├── followed.txt │ │ ├── friends.txt │ │ ├── hashtag_database.txt │ │ ├── photo_captions.txt │ │ ├── pics.txt │ │ ├── skipped.txt │ │ ├── unfollowed.txt │ │ ├── username_database.txt │ │ └── whitelist.txt │ ├── readme.md │ └── ultimate.py ├── unarchive_your_medias.py ├── unfollow_everyone.py ├── unfollow_non_followers.py ├── unlike_users.py ├── upload_story_photo.py ├── video │ ├── README.md │ ├── captions_for_medias.py │ └── upload_video.py └── welcome_message.py ├── instabot ├── __init__.py ├── api │ ├── __init__.py │ ├── api.py │ ├── api_login.py │ ├── api_photo.py │ ├── api_story.py │ ├── api_video.py │ ├── config.py │ ├── devices.py │ └── prepare.py ├── bot │ ├── __init__.py │ ├── bot.py │ ├── bot_archive.py │ ├── bot_block.py │ ├── bot_checkpoint.py │ ├── bot_comment.py │ ├── bot_delete.py │ ├── bot_direct.py │ ├── bot_filter.py │ ├── bot_follow.py │ ├── bot_get.py │ ├── bot_like.py │ ├── bot_photo.py │ ├── bot_stats.py │ ├── bot_story.py │ ├── bot_support.py │ ├── bot_unfollow.py │ ├── bot_unlike.py │ ├── bot_video.py │ └── state │ │ ├── __init__.py │ │ ├── bot_cache.py │ │ └── bot_state.py ├── singleton.py └── utils.py ├── push.sh ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_bot.py ├── test_bot_comment.py ├── test_bot_filter.py ├── test_bot_follow.py ├── test_bot_get.py ├── test_bot_like.py ├── test_bot_support.py ├── test_bot_unlike.py └── test_variables.py ├── tox.ini └── tox_install_command.sh /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/DONATE_BITCOIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/DONATE_BITCOIN.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/ISSUE_TEMPLATE/question-others.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/issue-close-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/issue-close-app.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/MANIFEST -------------------------------------------------------------------------------- /OLD_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/OLD_README.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/codecov.yml -------------------------------------------------------------------------------- /examples/approve_thread_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/approve_thread_requests.py -------------------------------------------------------------------------------- /examples/archive_medias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/archive_medias.py -------------------------------------------------------------------------------- /examples/autopost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/autopost/README.md -------------------------------------------------------------------------------- /examples/autopost/auto_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/autopost/auto_post.py -------------------------------------------------------------------------------- /examples/autopost/pics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/autopost/pics.txt -------------------------------------------------------------------------------- /examples/black-whitelist/black_white_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/black-whitelist/black_white_lists.py -------------------------------------------------------------------------------- /examples/black-whitelist/blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/black-whitelist/blacklist.txt -------------------------------------------------------------------------------- /examples/black-whitelist/whitelist.txt: -------------------------------------------------------------------------------- 1 | 352300017 2 | -------------------------------------------------------------------------------- /examples/black-whitelist/whitelist_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/black-whitelist/whitelist_generator.py -------------------------------------------------------------------------------- /examples/block_bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/block_bots.py -------------------------------------------------------------------------------- /examples/collect_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/collect_stats.py -------------------------------------------------------------------------------- /examples/comment/comment_hashtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/comment/comment_hashtags.py -------------------------------------------------------------------------------- /examples/comment/comment_your_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/comment/comment_your_feed.py -------------------------------------------------------------------------------- /examples/comment/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/comment/comments.txt -------------------------------------------------------------------------------- /examples/comment/comments_emoji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/comment/comments_emoji.txt -------------------------------------------------------------------------------- /examples/comment/reply_to_media_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/comment/reply_to_media_comments.py -------------------------------------------------------------------------------- /examples/comment_medias_by_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/comment_medias_by_location.py -------------------------------------------------------------------------------- /examples/config/blacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/comments.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/followed.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/friends.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/hashtag_database.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/setting_multiscript.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/skipped.txt: -------------------------------------------------------------------------------- 1 | 3875577 2 | -------------------------------------------------------------------------------- /examples/config/unfollowed.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/username_database.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/config/whitelist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/delete_all_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/delete_all_posts.py -------------------------------------------------------------------------------- /examples/direct_send_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/direct_send_photo.py -------------------------------------------------------------------------------- /examples/download_photos_by_hashtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/download_photos_by_hashtag.py -------------------------------------------------------------------------------- /examples/download_photos_by_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/download_photos_by_user.py -------------------------------------------------------------------------------- /examples/download_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/download_stories.py -------------------------------------------------------------------------------- /examples/download_user_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/download_user_videos.py -------------------------------------------------------------------------------- /examples/download_your_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/download_your_photos.py -------------------------------------------------------------------------------- /examples/filter_blacklist_hashtag_medias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/filter_blacklist_hashtag_medias.py -------------------------------------------------------------------------------- /examples/filter_private_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/filter_private_profiles.py -------------------------------------------------------------------------------- /examples/follow_last_user_media_likers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/follow_last_user_media_likers.py -------------------------------------------------------------------------------- /examples/follow_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/follow_requests.py -------------------------------------------------------------------------------- /examples/follow_user_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/follow_user_followers.py -------------------------------------------------------------------------------- /examples/follow_user_following.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/follow_user_following.py -------------------------------------------------------------------------------- /examples/follow_users_by_hashtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/follow_users_by_hashtag.py -------------------------------------------------------------------------------- /examples/follow_users_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/follow_users_from_file.py -------------------------------------------------------------------------------- /examples/get_followers_or_followings_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/get_followers_or_followings_to_file.py -------------------------------------------------------------------------------- /examples/get_hashtags_from_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/get_hashtags_from_keywords.py -------------------------------------------------------------------------------- /examples/infinity_feedliker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/infinity_feedliker.py -------------------------------------------------------------------------------- /examples/infinity_hashtags_follower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/infinity_hashtags_follower.py -------------------------------------------------------------------------------- /examples/infinity_hashtags_liker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/infinity_hashtags_liker.py -------------------------------------------------------------------------------- /examples/interact_DM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/interact_DM.py -------------------------------------------------------------------------------- /examples/like_and_follow_last_user_media_likers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_and_follow_last_user_media_likers.py -------------------------------------------------------------------------------- /examples/like_and_follow_media_likers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_and_follow_media_likers.py -------------------------------------------------------------------------------- /examples/like_and_follow_your_last_media_likers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_and_follow_your_last_media_likers.py -------------------------------------------------------------------------------- /examples/like_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_example.py -------------------------------------------------------------------------------- /examples/like_hashtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_hashtags.py -------------------------------------------------------------------------------- /examples/like_hashtags_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_hashtags_from_file.py -------------------------------------------------------------------------------- /examples/like_location_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_location_feed.py -------------------------------------------------------------------------------- /examples/like_medias_by_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_medias_by_location.py -------------------------------------------------------------------------------- /examples/like_timeline_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_timeline_feed.py -------------------------------------------------------------------------------- /examples/like_user_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_user_followers.py -------------------------------------------------------------------------------- /examples/like_user_following.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_user_following.py -------------------------------------------------------------------------------- /examples/like_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_users.py -------------------------------------------------------------------------------- /examples/like_users_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_users_from_file.py -------------------------------------------------------------------------------- /examples/like_your_last_media_likers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/like_your_last_media_likers.py -------------------------------------------------------------------------------- /examples/message_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/message_users.py -------------------------------------------------------------------------------- /examples/messages.csv: -------------------------------------------------------------------------------- 1 | R1B4Z01D, "Thank You for the example." 2 | koanmedia, "I love your work." 3 | -------------------------------------------------------------------------------- /examples/multi_script_CLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/multi_script_CLI.py -------------------------------------------------------------------------------- /examples/photos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/photos/README.md -------------------------------------------------------------------------------- /examples/photos/captions_for_medias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/photos/captions_for_medias.py -------------------------------------------------------------------------------- /examples/photos/pics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/photos/pics.txt -------------------------------------------------------------------------------- /examples/photos/upload_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/photos/upload_photos.py -------------------------------------------------------------------------------- /examples/repost_best_photos_from_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/repost_best_photos_from_users.py -------------------------------------------------------------------------------- /examples/repost_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/repost_photo.py -------------------------------------------------------------------------------- /examples/reset_following.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/reset_following.py -------------------------------------------------------------------------------- /examples/save_unfollowers_into_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/save_unfollowers_into_file.py -------------------------------------------------------------------------------- /examples/save_users_followers_into_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/save_users_followers_into_file.py -------------------------------------------------------------------------------- /examples/save_users_following_into_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/save_users_following_into_file.py -------------------------------------------------------------------------------- /examples/stories/watch_user_likers_stories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/stories/watch_user_likers_stories.py -------------------------------------------------------------------------------- /examples/ultimate/follow_followers.txt: -------------------------------------------------------------------------------- 1 | ohld 2 | -------------------------------------------------------------------------------- /examples/ultimate/follow_following.txt: -------------------------------------------------------------------------------- 1 | ohld 2 | -------------------------------------------------------------------------------- /examples/ultimate/like_hashtags.txt: -------------------------------------------------------------------------------- 1 | mipt 2 | мфти 3 | -------------------------------------------------------------------------------- /examples/ultimate/like_users.txt: -------------------------------------------------------------------------------- 1 | ohld 2 | lenakolenka 3 | -------------------------------------------------------------------------------- /examples/ultimate/ultimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/ultimate/ultimate.py -------------------------------------------------------------------------------- /examples/ultimate_schedule/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/ultimate_schedule/config.py -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/blacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/comments.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/followed.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/friends.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/hashtag_database.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/photo_captions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/pics.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/skipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/unfollowed.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/username_database.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/config/whitelist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ultimate_schedule/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/ultimate_schedule/readme.md -------------------------------------------------------------------------------- /examples/ultimate_schedule/ultimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/ultimate_schedule/ultimate.py -------------------------------------------------------------------------------- /examples/unarchive_your_medias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/unarchive_your_medias.py -------------------------------------------------------------------------------- /examples/unfollow_everyone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/unfollow_everyone.py -------------------------------------------------------------------------------- /examples/unfollow_non_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/unfollow_non_followers.py -------------------------------------------------------------------------------- /examples/unlike_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/unlike_users.py -------------------------------------------------------------------------------- /examples/upload_story_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/upload_story_photo.py -------------------------------------------------------------------------------- /examples/video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/video/README.md -------------------------------------------------------------------------------- /examples/video/captions_for_medias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/video/captions_for_medias.py -------------------------------------------------------------------------------- /examples/video/upload_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/video/upload_video.py -------------------------------------------------------------------------------- /examples/welcome_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/examples/welcome_message.py -------------------------------------------------------------------------------- /instabot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/__init__.py -------------------------------------------------------------------------------- /instabot/api/__init__.py: -------------------------------------------------------------------------------- 1 | from .api import API 2 | 3 | __all__ = ["API"] 4 | -------------------------------------------------------------------------------- /instabot/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/api.py -------------------------------------------------------------------------------- /instabot/api/api_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/api_login.py -------------------------------------------------------------------------------- /instabot/api/api_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/api_photo.py -------------------------------------------------------------------------------- /instabot/api/api_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/api_story.py -------------------------------------------------------------------------------- /instabot/api/api_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/api_video.py -------------------------------------------------------------------------------- /instabot/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/config.py -------------------------------------------------------------------------------- /instabot/api/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/devices.py -------------------------------------------------------------------------------- /instabot/api/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/api/prepare.py -------------------------------------------------------------------------------- /instabot/bot/__init__.py: -------------------------------------------------------------------------------- 1 | from .bot import Bot 2 | 3 | __all__ = ["Bot"] 4 | -------------------------------------------------------------------------------- /instabot/bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot.py -------------------------------------------------------------------------------- /instabot/bot/bot_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_archive.py -------------------------------------------------------------------------------- /instabot/bot/bot_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_block.py -------------------------------------------------------------------------------- /instabot/bot/bot_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_checkpoint.py -------------------------------------------------------------------------------- /instabot/bot/bot_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_comment.py -------------------------------------------------------------------------------- /instabot/bot/bot_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_delete.py -------------------------------------------------------------------------------- /instabot/bot/bot_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_direct.py -------------------------------------------------------------------------------- /instabot/bot/bot_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_filter.py -------------------------------------------------------------------------------- /instabot/bot/bot_follow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_follow.py -------------------------------------------------------------------------------- /instabot/bot/bot_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_get.py -------------------------------------------------------------------------------- /instabot/bot/bot_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_like.py -------------------------------------------------------------------------------- /instabot/bot/bot_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_photo.py -------------------------------------------------------------------------------- /instabot/bot/bot_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_stats.py -------------------------------------------------------------------------------- /instabot/bot/bot_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_story.py -------------------------------------------------------------------------------- /instabot/bot/bot_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_support.py -------------------------------------------------------------------------------- /instabot/bot/bot_unfollow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_unfollow.py -------------------------------------------------------------------------------- /instabot/bot/bot_unlike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_unlike.py -------------------------------------------------------------------------------- /instabot/bot/bot_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/bot_video.py -------------------------------------------------------------------------------- /instabot/bot/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instabot/bot/state/bot_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/state/bot_cache.py -------------------------------------------------------------------------------- /instabot/bot/state/bot_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/bot/state/bot_state.py -------------------------------------------------------------------------------- /instabot/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/singleton.py -------------------------------------------------------------------------------- /instabot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/instabot/utils.py -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/push.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot.py -------------------------------------------------------------------------------- /tests/test_bot_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot_comment.py -------------------------------------------------------------------------------- /tests/test_bot_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot_filter.py -------------------------------------------------------------------------------- /tests/test_bot_follow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot_follow.py -------------------------------------------------------------------------------- /tests/test_bot_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot_get.py -------------------------------------------------------------------------------- /tests/test_bot_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot_like.py -------------------------------------------------------------------------------- /tests/test_bot_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot_support.py -------------------------------------------------------------------------------- /tests/test_bot_unlike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_bot_unlike.py -------------------------------------------------------------------------------- /tests/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tests/test_variables.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tox.ini -------------------------------------------------------------------------------- /tox_install_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohld/igbot/HEAD/tox_install_command.sh --------------------------------------------------------------------------------