├── .DS_Store ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── infos ├── .DS_Store ├── accounts.json ├── messages.txt └── usernames.txt ├── requirements.txt ├── run.py └── src ├── .DS_Store ├── __init__.py └── instadm.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/README.md -------------------------------------------------------------------------------- /infos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/infos/.DS_Store -------------------------------------------------------------------------------- /infos/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/infos/accounts.json -------------------------------------------------------------------------------- /infos/messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/infos/messages.txt -------------------------------------------------------------------------------- /infos/usernames.txt: -------------------------------------------------------------------------------- 1 | zuck 2 | enca 3 | dababy 4 | lilloaded 5 | 6 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/run.py -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/instadm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/ig-dmbot-acc/HEAD/src/instadm.py --------------------------------------------------------------------------------