├── Procfile ├── README.md ├── app.json ├── bot.py ├── config.py ├── database └── database.py ├── plugins ├── caption.py └── commands.py ├── requirements.txt ├── runtime.txt └── translation.py /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/config.py -------------------------------------------------------------------------------- /database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/database/database.py -------------------------------------------------------------------------------- /plugins/caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/plugins/caption.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram==1.4.0 2 | tgcrypto 3 | psycopg2-binary 4 | sqlalchemy==1.3.23 5 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.12 2 | -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/ChannelAutoCaption/HEAD/translation.py --------------------------------------------------------------------------------