├── !install_libs.bat ├── !start.bat ├── .gitignore ├── .idea ├── .gitignore ├── Zefoy_TIKTOK_BOT.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── config.json ├── main.py └── requirements.txt /!install_libs.bat: -------------------------------------------------------------------------------- 1 | pip3 install -r requirements.txt 2 | pause -------------------------------------------------------------------------------- /!start.bat: -------------------------------------------------------------------------------- 1 | python main.py 2 | pause -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Zefoy_TIKTOK_BOT.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.idea/Zefoy_TIKTOK_BOT.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/config.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plowside/Zefoy_TIKTOK_BOT/HEAD/requirements.txt --------------------------------------------------------------------------------