├── .github └── FUNDING.yml ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── main.py ├── requirements.txt └── runtime.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: nuhmanpk 2 | custom: ["https://paytm.me/yoB-s0a"] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BugHunterBotLabs/Sticker-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BugHunterBotLabs/Sticker-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BugHunterBotLabs/Sticker-Bot/HEAD/app.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BugHunterBotLabs/Sticker-Bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram 2 | python-decouple 3 | tgcrypto 4 | requests 5 | aiohttp 6 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.5 2 | --------------------------------------------------------------------------------