├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── blacklist.txt ├── config-examples-extra ├── all-params.json ├── flow-of-actions │ ├── flow-loop-interact-unfollow-sleep-on-working-hours │ │ ├── step-1-interact-likes-and-story-on-working-hours.json │ │ └── step-2-unfollow-any-profile-on-working-hours.json │ ├── flow-loop-scrape-switch_user-interact_targets-unfollow-on-working-hours │ │ ├── step-1-scrape-user-simple-scrape.json │ │ ├── step-2-real-user-interact_targets-likes-and-story-on-working-hours.json │ │ └── step-3-real-user-unfollow-any-profile-on-working-hours.json │ └── flow-loop-scrape-switch_user │ │ ├── step-1-user-1-scrape-with-single-scrappers-db.json │ │ └── step-2-user-2-scrape-with-single-scrappers-db.json ├── interact │ ├── interact-all-params.json │ ├── interact-on-working-hours-follow-only.json │ ├── interact-with-filters-likes-follow-story-comment.json │ └── interact-with-pre-and-post-scripts-likes-only.json └── scrape │ ├── scrape-all-params.json │ ├── scrape-with-single-scrappers-db.json │ └── simple-scrape.json ├── config-examples ├── all-params.json ├── flow-of-actions │ ├── flow-interact-unfollow-switch_user-interact-unfollow-stop │ │ ├── step-1-user-1-interact-likes-and-story.json │ │ ├── step-2-user-1-unfollow-any-profile.json │ │ ├── step-3-user-2-interact-likes-and-story.json │ │ └── step-4-user-2-unfollow-any-profile.json │ └── flow-loop-interact-unfollow-sleep │ │ ├── step-1-interact-likes-and-story.json │ │ └── step-2-unfollow-any-profile.json ├── interact │ ├── interact-all-params.json │ ├── interact-follow-only.json │ ├── interact-likes-and-story.json │ ├── interact-likes-follow-story-comment.json │ ├── interact-likes-only.json │ └── interact-targets-likes-follow-story-comment.json └── unfollow │ ├── unfollow-all-params.json │ ├── unfollow-any-profile-followed-by-bot-only.json │ ├── unfollow-any-profile.json │ ├── unfollow-non-followers-profiles-followed-by-bot-only.json │ └── unfollow-non-followers-profiles.json ├── docs ├── README.md ├── how-to-update.md └── installation.md ├── insomniac ├── __init__.py ├── __main__.py ├── __version__.py ├── action_get_my_profile_info.py ├── action_runners │ ├── __init__.py │ ├── actions_runners_manager.py │ ├── core.py │ ├── interact │ │ ├── __init__.py │ │ ├── action_handle_blogger.py │ │ ├── action_handle_hashtag.py │ │ ├── action_handle_place.py │ │ └── action_handle_target.py │ └── unfollow │ │ ├── __init__.py │ │ └── action_unfollow.py ├── actions_impl.py ├── actions_providers.py ├── actions_types.py ├── activation.py ├── assets │ ├── ADBKeyboard-nomix.apk │ ├── ADBKeyboard.apk │ ├── aapt │ ├── gender_deploy.prototxt │ └── gender_net.caffemodel ├── counters_parser.py ├── database_engine.py ├── db_models.py ├── device.py ├── device_facade.py ├── extra_features │ ├── __init__.py │ ├── action_dm.py │ ├── action_handle_blogger_scrape.py │ ├── action_handle_hashtag_scrape.py │ ├── action_handle_place_scrape.py │ ├── action_manage_clones.py │ ├── action_register_accounts.py │ ├── action_remove_mass_followers.py │ ├── action_warmup.py │ ├── actions_impl.py │ ├── actions_runners.py │ ├── face_detector.py │ ├── filters.py │ ├── filters_impl.py │ ├── limits.py │ ├── management_actions_runners.py │ ├── management_actions_types.py │ ├── profile_info_fetcher.py │ ├── report.py │ ├── report_sender.py │ ├── session.py │ ├── session_state.py │ ├── storage.py │ ├── utils.py │ └── views.py ├── globals.py ├── hardban_indicator.py ├── limits.py ├── migration.py ├── navigation.py ├── network.py ├── params.py ├── report.py ├── safely_runner.py ├── scroll_end_detector.py ├── session.py ├── session_state.py ├── sessions.py ├── sleeper.py ├── softban_indicator.py ├── storage.py ├── tests │ ├── __init__.py │ ├── assets │ │ ├── face1.jpg │ │ ├── face2.jpg │ │ ├── face3.jpg │ │ ├── face_female1.jpg │ │ ├── face_female2.jpg │ │ ├── face_male1.jpg │ │ ├── face_male2.jpg │ │ ├── notface1.jpg │ │ └── notface2.jpg │ ├── db_tests.py │ └── face_detector_tests.py ├── tools │ ├── __init__.py │ ├── speedtest.py │ └── spintax.py ├── typewriter.py ├── utils.py ├── validations.py └── views.py ├── interact-with-filters-likes-follow-story-comment.json ├── registration ├── README.md ├── __init__.py ├── api.py └── users.txt ├── requirements.txt ├── res ├── demo.gif ├── discord.png ├── insomniac.png ├── patreon.png └── telegram.png ├── setup.py ├── start.py ├── targets.txt ├── unfollow.txt └── whitelist.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft insomniac/assets 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/README.md -------------------------------------------------------------------------------- /blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/blacklist.txt -------------------------------------------------------------------------------- /config-examples-extra/all-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/all-params.json -------------------------------------------------------------------------------- /config-examples-extra/flow-of-actions/flow-loop-interact-unfollow-sleep-on-working-hours/step-1-interact-likes-and-story-on-working-hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/flow-of-actions/flow-loop-interact-unfollow-sleep-on-working-hours/step-1-interact-likes-and-story-on-working-hours.json -------------------------------------------------------------------------------- /config-examples-extra/flow-of-actions/flow-loop-interact-unfollow-sleep-on-working-hours/step-2-unfollow-any-profile-on-working-hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/flow-of-actions/flow-loop-interact-unfollow-sleep-on-working-hours/step-2-unfollow-any-profile-on-working-hours.json -------------------------------------------------------------------------------- /config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user-interact_targets-unfollow-on-working-hours/step-1-scrape-user-simple-scrape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user-interact_targets-unfollow-on-working-hours/step-1-scrape-user-simple-scrape.json -------------------------------------------------------------------------------- /config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user-interact_targets-unfollow-on-working-hours/step-2-real-user-interact_targets-likes-and-story-on-working-hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user-interact_targets-unfollow-on-working-hours/step-2-real-user-interact_targets-likes-and-story-on-working-hours.json -------------------------------------------------------------------------------- /config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user-interact_targets-unfollow-on-working-hours/step-3-real-user-unfollow-any-profile-on-working-hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user-interact_targets-unfollow-on-working-hours/step-3-real-user-unfollow-any-profile-on-working-hours.json -------------------------------------------------------------------------------- /config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user/step-1-user-1-scrape-with-single-scrappers-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user/step-1-user-1-scrape-with-single-scrappers-db.json -------------------------------------------------------------------------------- /config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user/step-2-user-2-scrape-with-single-scrappers-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/flow-of-actions/flow-loop-scrape-switch_user/step-2-user-2-scrape-with-single-scrappers-db.json -------------------------------------------------------------------------------- /config-examples-extra/interact/interact-all-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/interact/interact-all-params.json -------------------------------------------------------------------------------- /config-examples-extra/interact/interact-on-working-hours-follow-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/interact/interact-on-working-hours-follow-only.json -------------------------------------------------------------------------------- /config-examples-extra/interact/interact-with-filters-likes-follow-story-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/interact/interact-with-filters-likes-follow-story-comment.json -------------------------------------------------------------------------------- /config-examples-extra/interact/interact-with-pre-and-post-scripts-likes-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/interact/interact-with-pre-and-post-scripts-likes-only.json -------------------------------------------------------------------------------- /config-examples-extra/scrape/scrape-all-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/scrape/scrape-all-params.json -------------------------------------------------------------------------------- /config-examples-extra/scrape/scrape-with-single-scrappers-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/scrape/scrape-with-single-scrappers-db.json -------------------------------------------------------------------------------- /config-examples-extra/scrape/simple-scrape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples-extra/scrape/simple-scrape.json -------------------------------------------------------------------------------- /config-examples/all-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/all-params.json -------------------------------------------------------------------------------- /config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-1-user-1-interact-likes-and-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-1-user-1-interact-likes-and-story.json -------------------------------------------------------------------------------- /config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-2-user-1-unfollow-any-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-2-user-1-unfollow-any-profile.json -------------------------------------------------------------------------------- /config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-3-user-2-interact-likes-and-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-3-user-2-interact-likes-and-story.json -------------------------------------------------------------------------------- /config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-4-user-2-unfollow-any-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/flow-of-actions/flow-interact-unfollow-switch_user-interact-unfollow-stop/step-4-user-2-unfollow-any-profile.json -------------------------------------------------------------------------------- /config-examples/flow-of-actions/flow-loop-interact-unfollow-sleep/step-1-interact-likes-and-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/flow-of-actions/flow-loop-interact-unfollow-sleep/step-1-interact-likes-and-story.json -------------------------------------------------------------------------------- /config-examples/flow-of-actions/flow-loop-interact-unfollow-sleep/step-2-unfollow-any-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/flow-of-actions/flow-loop-interact-unfollow-sleep/step-2-unfollow-any-profile.json -------------------------------------------------------------------------------- /config-examples/interact/interact-all-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/interact/interact-all-params.json -------------------------------------------------------------------------------- /config-examples/interact/interact-follow-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/interact/interact-follow-only.json -------------------------------------------------------------------------------- /config-examples/interact/interact-likes-and-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/interact/interact-likes-and-story.json -------------------------------------------------------------------------------- /config-examples/interact/interact-likes-follow-story-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/interact/interact-likes-follow-story-comment.json -------------------------------------------------------------------------------- /config-examples/interact/interact-likes-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/interact/interact-likes-only.json -------------------------------------------------------------------------------- /config-examples/interact/interact-targets-likes-follow-story-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/interact/interact-targets-likes-follow-story-comment.json -------------------------------------------------------------------------------- /config-examples/unfollow/unfollow-all-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/unfollow/unfollow-all-params.json -------------------------------------------------------------------------------- /config-examples/unfollow/unfollow-any-profile-followed-by-bot-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/unfollow/unfollow-any-profile-followed-by-bot-only.json -------------------------------------------------------------------------------- /config-examples/unfollow/unfollow-any-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/unfollow/unfollow-any-profile.json -------------------------------------------------------------------------------- /config-examples/unfollow/unfollow-non-followers-profiles-followed-by-bot-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/unfollow/unfollow-non-followers-profiles-followed-by-bot-only.json -------------------------------------------------------------------------------- /config-examples/unfollow/unfollow-non-followers-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/config-examples/unfollow/unfollow-non-followers-profiles.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/how-to-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/docs/how-to-update.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/docs/installation.md -------------------------------------------------------------------------------- /insomniac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/__init__.py -------------------------------------------------------------------------------- /insomniac/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/__main__.py -------------------------------------------------------------------------------- /insomniac/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/__version__.py -------------------------------------------------------------------------------- /insomniac/action_get_my_profile_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_get_my_profile_info.py -------------------------------------------------------------------------------- /insomniac/action_runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/__init__.py -------------------------------------------------------------------------------- /insomniac/action_runners/actions_runners_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/actions_runners_manager.py -------------------------------------------------------------------------------- /insomniac/action_runners/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/core.py -------------------------------------------------------------------------------- /insomniac/action_runners/interact/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/interact/__init__.py -------------------------------------------------------------------------------- /insomniac/action_runners/interact/action_handle_blogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/interact/action_handle_blogger.py -------------------------------------------------------------------------------- /insomniac/action_runners/interact/action_handle_hashtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/interact/action_handle_hashtag.py -------------------------------------------------------------------------------- /insomniac/action_runners/interact/action_handle_place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/interact/action_handle_place.py -------------------------------------------------------------------------------- /insomniac/action_runners/interact/action_handle_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/interact/action_handle_target.py -------------------------------------------------------------------------------- /insomniac/action_runners/unfollow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/unfollow/__init__.py -------------------------------------------------------------------------------- /insomniac/action_runners/unfollow/action_unfollow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/action_runners/unfollow/action_unfollow.py -------------------------------------------------------------------------------- /insomniac/actions_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/actions_impl.py -------------------------------------------------------------------------------- /insomniac/actions_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/actions_providers.py -------------------------------------------------------------------------------- /insomniac/actions_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/actions_types.py -------------------------------------------------------------------------------- /insomniac/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/activation.py -------------------------------------------------------------------------------- /insomniac/assets/ADBKeyboard-nomix.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/assets/ADBKeyboard-nomix.apk -------------------------------------------------------------------------------- /insomniac/assets/ADBKeyboard.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/assets/ADBKeyboard.apk -------------------------------------------------------------------------------- /insomniac/assets/aapt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/assets/aapt -------------------------------------------------------------------------------- /insomniac/assets/gender_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/assets/gender_deploy.prototxt -------------------------------------------------------------------------------- /insomniac/assets/gender_net.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/assets/gender_net.caffemodel -------------------------------------------------------------------------------- /insomniac/counters_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/counters_parser.py -------------------------------------------------------------------------------- /insomniac/database_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/database_engine.py -------------------------------------------------------------------------------- /insomniac/db_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/db_models.py -------------------------------------------------------------------------------- /insomniac/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/device.py -------------------------------------------------------------------------------- /insomniac/device_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/device_facade.py -------------------------------------------------------------------------------- /insomniac/extra_features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /insomniac/extra_features/action_dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_dm.py -------------------------------------------------------------------------------- /insomniac/extra_features/action_handle_blogger_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_handle_blogger_scrape.py -------------------------------------------------------------------------------- /insomniac/extra_features/action_handle_hashtag_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_handle_hashtag_scrape.py -------------------------------------------------------------------------------- /insomniac/extra_features/action_handle_place_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_handle_place_scrape.py -------------------------------------------------------------------------------- /insomniac/extra_features/action_manage_clones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_manage_clones.py -------------------------------------------------------------------------------- /insomniac/extra_features/action_register_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_register_accounts.py -------------------------------------------------------------------------------- /insomniac/extra_features/action_remove_mass_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_remove_mass_followers.py -------------------------------------------------------------------------------- /insomniac/extra_features/action_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/action_warmup.py -------------------------------------------------------------------------------- /insomniac/extra_features/actions_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/actions_impl.py -------------------------------------------------------------------------------- /insomniac/extra_features/actions_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/actions_runners.py -------------------------------------------------------------------------------- /insomniac/extra_features/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/face_detector.py -------------------------------------------------------------------------------- /insomniac/extra_features/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/filters.py -------------------------------------------------------------------------------- /insomniac/extra_features/filters_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/filters_impl.py -------------------------------------------------------------------------------- /insomniac/extra_features/limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/limits.py -------------------------------------------------------------------------------- /insomniac/extra_features/management_actions_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/management_actions_runners.py -------------------------------------------------------------------------------- /insomniac/extra_features/management_actions_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/management_actions_types.py -------------------------------------------------------------------------------- /insomniac/extra_features/profile_info_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/profile_info_fetcher.py -------------------------------------------------------------------------------- /insomniac/extra_features/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/report.py -------------------------------------------------------------------------------- /insomniac/extra_features/report_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/report_sender.py -------------------------------------------------------------------------------- /insomniac/extra_features/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/session.py -------------------------------------------------------------------------------- /insomniac/extra_features/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/session_state.py -------------------------------------------------------------------------------- /insomniac/extra_features/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/storage.py -------------------------------------------------------------------------------- /insomniac/extra_features/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/utils.py -------------------------------------------------------------------------------- /insomniac/extra_features/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/extra_features/views.py -------------------------------------------------------------------------------- /insomniac/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/globals.py -------------------------------------------------------------------------------- /insomniac/hardban_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/hardban_indicator.py -------------------------------------------------------------------------------- /insomniac/limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/limits.py -------------------------------------------------------------------------------- /insomniac/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/migration.py -------------------------------------------------------------------------------- /insomniac/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/navigation.py -------------------------------------------------------------------------------- /insomniac/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/network.py -------------------------------------------------------------------------------- /insomniac/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/params.py -------------------------------------------------------------------------------- /insomniac/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/report.py -------------------------------------------------------------------------------- /insomniac/safely_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/safely_runner.py -------------------------------------------------------------------------------- /insomniac/scroll_end_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/scroll_end_detector.py -------------------------------------------------------------------------------- /insomniac/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/session.py -------------------------------------------------------------------------------- /insomniac/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/session_state.py -------------------------------------------------------------------------------- /insomniac/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/sessions.py -------------------------------------------------------------------------------- /insomniac/sleeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/sleeper.py -------------------------------------------------------------------------------- /insomniac/softban_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/softban_indicator.py -------------------------------------------------------------------------------- /insomniac/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/storage.py -------------------------------------------------------------------------------- /insomniac/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /insomniac/tests/assets/face1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/face1.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/face2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/face2.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/face3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/face3.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/face_female1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/face_female1.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/face_female2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/face_female2.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/face_male1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/face_male1.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/face_male2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/face_male2.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/notface1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/notface1.jpg -------------------------------------------------------------------------------- /insomniac/tests/assets/notface2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/assets/notface2.jpg -------------------------------------------------------------------------------- /insomniac/tests/db_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/db_tests.py -------------------------------------------------------------------------------- /insomniac/tests/face_detector_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tests/face_detector_tests.py -------------------------------------------------------------------------------- /insomniac/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /insomniac/tools/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tools/speedtest.py -------------------------------------------------------------------------------- /insomniac/tools/spintax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/tools/spintax.py -------------------------------------------------------------------------------- /insomniac/typewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/typewriter.py -------------------------------------------------------------------------------- /insomniac/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/utils.py -------------------------------------------------------------------------------- /insomniac/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/validations.py -------------------------------------------------------------------------------- /insomniac/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/insomniac/views.py -------------------------------------------------------------------------------- /interact-with-filters-likes-follow-story-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/interact-with-filters-likes-follow-story-comment.json -------------------------------------------------------------------------------- /registration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/registration/README.md -------------------------------------------------------------------------------- /registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /registration/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/registration/api.py -------------------------------------------------------------------------------- /registration/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/registration/users.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/res/demo.gif -------------------------------------------------------------------------------- /res/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/res/discord.png -------------------------------------------------------------------------------- /res/insomniac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/res/insomniac.png -------------------------------------------------------------------------------- /res/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/res/patreon.png -------------------------------------------------------------------------------- /res/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/res/telegram.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/setup.py -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/start.py -------------------------------------------------------------------------------- /targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/targets.txt -------------------------------------------------------------------------------- /unfollow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/unfollow.txt -------------------------------------------------------------------------------- /whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexal1/Insomniac/HEAD/whitelist.txt --------------------------------------------------------------------------------