├── 2FA_DEV ├── DEV_auth.py ├── DEV_config_setup.py ├── DEV_main.py ├── DEV_requirements.txt ├── HAVE NOT TESTED BUT SHOULD WORK.txt ├── auth.py ├── config_setup.py ├── main.py └── requirements.txt ├── Historic ├── Version - 3.2.1 │ ├── 2FA_DEV │ │ ├── DEV_auth.py │ │ ├── DEV_config_setup.py │ │ ├── DEV_main.py │ │ ├── DEV_requirements.txt │ │ └── HAVE NOT TESTED BUT SHOULD WORK.txt │ ├── LICENSE │ ├── README.md │ ├── auth.py │ ├── config_setup.py │ ├── dashboard.py │ ├── default_comments.py │ ├── default_descriptions.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── status.json │ ├── upload.py │ ├── upload_log.txt │ ├── utils.py │ └── version.txt ├── Version 1 - 71820024 │ ├── README.md │ ├── auth.py │ ├── config.yaml │ ├── config_setup.py │ ├── dashboard.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── upload.py │ ├── upload_log.txt │ └── utils.py ├── Version 2 - 72024 │ ├── LICENSE │ ├── README.md │ ├── __pycache__ │ │ ├── scrape.cpython-312.pyc │ │ └── utils.cpython-312.pyc │ ├── auth.py │ ├── config_setup.py │ ├── dashboard.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── upload.py │ ├── upload_log.txt │ └── utils.py ├── Version 2.2 - 7282024 │ ├── LICENSE │ ├── README.md │ ├── auth.py │ ├── config_setup.py │ ├── dashboard.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── upload.py │ ├── upload_log.txt │ └── utils.py ├── Version 3.0 - 852024 │ ├── LICENSE │ ├── README.md │ ├── auth.py │ ├── config_setup.py │ ├── dashboard.py │ ├── default_comments.py │ ├── default_descriptions.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── upload.py │ ├── utils.py │ └── version.txt ├── Version 3.1 81424 │ ├── README.md │ ├── auth.py │ ├── config_setup.py │ ├── dashboard.py │ ├── default_comments.py │ ├── default_descriptions.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── upload.py │ ├── utils.py │ └── version.txt ├── Version 3.1.1 (2) │ ├── 2FA_DEV │ │ ├── Should work not tested as all accs I use 2fa off.txt │ │ ├── auth.py │ │ ├── config_setup.py │ │ ├── main.py │ │ └── requirements.txt │ ├── LICENSE │ ├── README.md │ ├── auth.py │ ├── config_setup.py │ ├── dashboard.py │ ├── default_comments.py │ ├── default_descriptions.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── upload.py │ ├── utils.py │ └── version.txt └── Version 3.2.0 - 92224 │ ├── README.md │ ├── auth.py │ ├── config_setup.py │ ├── dashboard.py │ ├── default_comments.py │ ├── default_descriptions.py │ ├── input_helpers.py │ ├── main.py │ ├── requirements.txt │ ├── scrape.py │ ├── upload.py │ ├── utils.py │ └── version.txt ├── LICENSE ├── README.md ├── auth.py ├── config_setup.py ├── configs └── USERNAE_config.yaml ├── dashboard.py ├── default_comments.py ├── default_descriptions.py ├── input_helpers.py ├── main.py ├── requirements.txt ├── scrape.py ├── upload.py ├── user_sessions └── Test.json ├── utils.py └── version.txt /2FA_DEV/DEV_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/DEV_auth.py -------------------------------------------------------------------------------- /2FA_DEV/DEV_config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/DEV_config_setup.py -------------------------------------------------------------------------------- /2FA_DEV/DEV_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/DEV_main.py -------------------------------------------------------------------------------- /2FA_DEV/DEV_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/DEV_requirements.txt -------------------------------------------------------------------------------- /2FA_DEV/HAVE NOT TESTED BUT SHOULD WORK.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2FA_DEV/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/auth.py -------------------------------------------------------------------------------- /2FA_DEV/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/config_setup.py -------------------------------------------------------------------------------- /2FA_DEV/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/main.py -------------------------------------------------------------------------------- /2FA_DEV/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/2FA_DEV/requirements.txt -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/2FA_DEV/DEV_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/2FA_DEV/DEV_auth.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/2FA_DEV/DEV_config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/2FA_DEV/DEV_config_setup.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/2FA_DEV/DEV_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/2FA_DEV/DEV_main.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/2FA_DEV/DEV_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/2FA_DEV/DEV_requirements.txt -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/2FA_DEV/HAVE NOT TESTED BUT SHOULD WORK.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/LICENSE -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/README.md -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/auth.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/config_setup.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/dashboard.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/default_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/default_comments.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/default_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/default_descriptions.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/main.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/requirements.txt -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/scrape.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/status.json -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/upload.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/upload_log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/utils.py -------------------------------------------------------------------------------- /Historic/Version - 3.2.1/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version - 3.2.1/version.txt -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/README.md -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/auth.py -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/config.yaml -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/dashboard.py -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/main.py -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/scrape.py -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/upload.py -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/upload_log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Historic/Version 1 - 71820024/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 1 - 71820024/utils.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/LICENSE -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/README.md -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/__pycache__/scrape.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/__pycache__/scrape.cpython-312.pyc -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/auth.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/dashboard.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/main.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/scrape.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/upload.py -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/upload_log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Historic/Version 2 - 72024/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2 - 72024/utils.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/LICENSE -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/README.md -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/auth.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/dashboard.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/main.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/scrape.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/upload.py -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/upload_log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Historic/Version 2.2 - 7282024/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 2.2 - 7282024/utils.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/LICENSE -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/README.md -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/auth.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/dashboard.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/default_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/default_comments.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/default_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/default_descriptions.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/main.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/scrape.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/upload.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/utils.py -------------------------------------------------------------------------------- /Historic/Version 3.0 - 852024/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.0 - 852024/version.txt -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/README.md -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/auth.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/dashboard.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/default_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/default_comments.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/default_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/default_descriptions.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/main.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/scrape.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/upload.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/utils.py -------------------------------------------------------------------------------- /Historic/Version 3.1 81424/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1 81424/version.txt -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/2FA_DEV/Should work not tested as all accs I use 2fa off.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/2FA_DEV/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/2FA_DEV/auth.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/2FA_DEV/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/2FA_DEV/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/2FA_DEV/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/2FA_DEV/main.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/2FA_DEV/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/2FA_DEV/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/LICENSE -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/README.md -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/auth.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/dashboard.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/default_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/default_comments.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/default_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/default_descriptions.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/main.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/scrape.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/upload.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/utils.py -------------------------------------------------------------------------------- /Historic/Version 3.1.1 (2)/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.1.1 (2)/version.txt -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/README.md -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/auth.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/config_setup.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/dashboard.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/default_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/default_comments.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/default_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/default_descriptions.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/input_helpers.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/main.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/requirements.txt -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/scrape.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/upload.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/utils.py -------------------------------------------------------------------------------- /Historic/Version 3.2.0 - 92224/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/Historic/Version 3.2.0 - 92224/version.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/README.md -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/auth.py -------------------------------------------------------------------------------- /config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/config_setup.py -------------------------------------------------------------------------------- /configs/USERNAE_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/configs/USERNAE_config.yaml -------------------------------------------------------------------------------- /dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/dashboard.py -------------------------------------------------------------------------------- /default_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/default_comments.py -------------------------------------------------------------------------------- /default_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/default_descriptions.py -------------------------------------------------------------------------------- /input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/input_helpers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/scrape.py -------------------------------------------------------------------------------- /upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/upload.py -------------------------------------------------------------------------------- /user_sessions/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/user_sessions/Test.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/utils.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujay1599/InstagramTheftyScraperPosterHuman/HEAD/version.txt --------------------------------------------------------------------------------