├── .gitignore ├── README.md ├── configuration.py ├── content.py ├── core ├── __init__.py ├── instagram_urls.cfg └── operation.py ├── datalayer.py ├── default.cfg ├── dependencies ├── instaactivity.py ├── instabot.py ├── instafollow.py ├── instalike.py ├── log.py ├── logger ├── __init__.py ├── clogger.py └── logger.py ├── main.py ├── model.py ├── operation.py ├── period.py ├── spam.py └── tests ├── logger └── test_logger.py ├── test_core.py ├── test_instalikedatalayer.py ├── test_photo.py └── testcontext.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/README.md -------------------------------------------------------------------------------- /configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/configuration.py -------------------------------------------------------------------------------- /content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/content.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/instagram_urls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/core/instagram_urls.cfg -------------------------------------------------------------------------------- /core/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/core/operation.py -------------------------------------------------------------------------------- /datalayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/datalayer.py -------------------------------------------------------------------------------- /default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/default.cfg -------------------------------------------------------------------------------- /dependencies: -------------------------------------------------------------------------------- 1 | peewee 2 | requests -------------------------------------------------------------------------------- /instaactivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/instaactivity.py -------------------------------------------------------------------------------- /instabot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/instabot.py -------------------------------------------------------------------------------- /instafollow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/instafollow.py -------------------------------------------------------------------------------- /instalike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/instalike.py -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/log.py -------------------------------------------------------------------------------- /logger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logger/clogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/logger/clogger.py -------------------------------------------------------------------------------- /logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/logger/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/model.py -------------------------------------------------------------------------------- /operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/operation.py -------------------------------------------------------------------------------- /period.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/period.py -------------------------------------------------------------------------------- /spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/spam.py -------------------------------------------------------------------------------- /tests/logger/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/tests/logger/test_logger.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_instalikedatalayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/tests/test_instalikedatalayer.py -------------------------------------------------------------------------------- /tests/test_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/tests/test_photo.py -------------------------------------------------------------------------------- /tests/testcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpawlak2/instalike-instagram-bot/HEAD/tests/testcontext.py --------------------------------------------------------------------------------