├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── insta_bot ├── __init__.py ├── app.py └── modules │ └── utils.py ├── packages.txt ├── poetry.lock ├── pyproject.toml ├── start.bat ├── static └── background │ ├── main-bg.png │ └── side-bg.png └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/README.md -------------------------------------------------------------------------------- /insta_bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /insta_bot/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/insta_bot/app.py -------------------------------------------------------------------------------- /insta_bot/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/insta_bot/modules/utils.py -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/packages.txt -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/start.bat -------------------------------------------------------------------------------- /static/background/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/static/background/main-bg.png -------------------------------------------------------------------------------- /static/background/side-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ata-turhan/Insta-Bot/HEAD/static/background/side-bg.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------