├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── CHANGELOG.rst ├── InstagramPy ├── AppInfo.py ├── InstagramPyCLI.py ├── InstagramPyConfigurationCreator.py ├── InstagramPyDumper.py ├── InstagramPyInstance.py ├── InstagramPyScript.py ├── InstagramPySession.py ├── __init__.py └── colors │ ├── __init__.py │ ├── ansi.py │ ├── ansitowin32.py │ ├── initialise.py │ ├── win32.py │ └── winterm.py ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin └── instagram-py ├── examples ├── README.rst └── multi_attack.py ├── indent.sh ├── instapy-config.json ├── observations ├── cookies.png └── login_create.png ├── preview.gif ├── requirements.txt ├── setup.cfg └── setup.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /InstagramPy/AppInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/AppInfo.py -------------------------------------------------------------------------------- /InstagramPy/InstagramPyCLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/InstagramPyCLI.py -------------------------------------------------------------------------------- /InstagramPy/InstagramPyConfigurationCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/InstagramPyConfigurationCreator.py -------------------------------------------------------------------------------- /InstagramPy/InstagramPyDumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/InstagramPyDumper.py -------------------------------------------------------------------------------- /InstagramPy/InstagramPyInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/InstagramPyInstance.py -------------------------------------------------------------------------------- /InstagramPy/InstagramPyScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/InstagramPyScript.py -------------------------------------------------------------------------------- /InstagramPy/InstagramPySession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/InstagramPySession.py -------------------------------------------------------------------------------- /InstagramPy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/__init__.py -------------------------------------------------------------------------------- /InstagramPy/colors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/colors/__init__.py -------------------------------------------------------------------------------- /InstagramPy/colors/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/colors/ansi.py -------------------------------------------------------------------------------- /InstagramPy/colors/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/colors/ansitowin32.py -------------------------------------------------------------------------------- /InstagramPy/colors/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/colors/initialise.py -------------------------------------------------------------------------------- /InstagramPy/colors/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/colors/win32.py -------------------------------------------------------------------------------- /InstagramPy/colors/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/InstagramPy/colors/winterm.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/README.rst -------------------------------------------------------------------------------- /bin/instagram-py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/bin/instagram-py -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/multi_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/examples/multi_attack.py -------------------------------------------------------------------------------- /indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/indent.sh -------------------------------------------------------------------------------- /instapy-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/instapy-config.json -------------------------------------------------------------------------------- /observations/cookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/observations/cookies.png -------------------------------------------------------------------------------- /observations/login_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/observations/login_create.png -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/preview.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathsec/instagram-py/HEAD/setup.py --------------------------------------------------------------------------------