├── .deepsource.toml ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT ├── Dockerfile ├── LICENSE ├── README.md ├── app.json ├── heroku.yml ├── init ├── CI_Test_Script.sh ├── start.sh ├── telegram ├── telegramapi └── userbot ├── requirements.txt ├── sample_config.env ├── scripts ├── generate_drive_session.py ├── generate_session_file.py ├── generate_spotify_session.py └── generate_string_session.py └── userbot ├── __init__.py ├── __main__.py ├── events.py └── modules ├── __init__.py ├── admin.py ├── afk.py ├── android.py ├── chat.py ├── dbhelper.py ├── download.py ├── evaluators.py ├── fban_gban.py ├── filter.py ├── gen_direct_links.py ├── grp_exclude.py ├── hash.py ├── help.py ├── helpers.py ├── kang.py ├── lastfm.py ├── lists.py ├── memes.py ├── misc.py ├── mute_chat.py ├── notes.py ├── paste.py ├── pmpermit.py ├── purge.py ├── qrcode.py ├── scrapers.py ├── screencapture.py ├── sed.py ├── spotify.py ├── system_stats.py ├── time.py ├── updater.py ├── userdata.py ├── weather.py ├── welcomes.py ├── whois.py └── www.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/app.json -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/heroku.yml -------------------------------------------------------------------------------- /init/CI_Test_Script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/init/CI_Test_Script.sh -------------------------------------------------------------------------------- /init/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/init/start.sh -------------------------------------------------------------------------------- /init/telegram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/init/telegram -------------------------------------------------------------------------------- /init/telegramapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/init/telegramapi -------------------------------------------------------------------------------- /init/userbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/init/userbot -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/sample_config.env -------------------------------------------------------------------------------- /scripts/generate_drive_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/scripts/generate_drive_session.py -------------------------------------------------------------------------------- /scripts/generate_session_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/scripts/generate_session_file.py -------------------------------------------------------------------------------- /scripts/generate_spotify_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/scripts/generate_spotify_session.py -------------------------------------------------------------------------------- /scripts/generate_string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/scripts/generate_string_session.py -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/events.py -------------------------------------------------------------------------------- /userbot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/__init__.py -------------------------------------------------------------------------------- /userbot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/admin.py -------------------------------------------------------------------------------- /userbot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/afk.py -------------------------------------------------------------------------------- /userbot/modules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/android.py -------------------------------------------------------------------------------- /userbot/modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/chat.py -------------------------------------------------------------------------------- /userbot/modules/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/dbhelper.py -------------------------------------------------------------------------------- /userbot/modules/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/download.py -------------------------------------------------------------------------------- /userbot/modules/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/evaluators.py -------------------------------------------------------------------------------- /userbot/modules/fban_gban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/fban_gban.py -------------------------------------------------------------------------------- /userbot/modules/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/filter.py -------------------------------------------------------------------------------- /userbot/modules/gen_direct_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/gen_direct_links.py -------------------------------------------------------------------------------- /userbot/modules/grp_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/grp_exclude.py -------------------------------------------------------------------------------- /userbot/modules/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/hash.py -------------------------------------------------------------------------------- /userbot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/help.py -------------------------------------------------------------------------------- /userbot/modules/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/helpers.py -------------------------------------------------------------------------------- /userbot/modules/kang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/kang.py -------------------------------------------------------------------------------- /userbot/modules/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/lastfm.py -------------------------------------------------------------------------------- /userbot/modules/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/lists.py -------------------------------------------------------------------------------- /userbot/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/memes.py -------------------------------------------------------------------------------- /userbot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/misc.py -------------------------------------------------------------------------------- /userbot/modules/mute_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/mute_chat.py -------------------------------------------------------------------------------- /userbot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/notes.py -------------------------------------------------------------------------------- /userbot/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/paste.py -------------------------------------------------------------------------------- /userbot/modules/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/pmpermit.py -------------------------------------------------------------------------------- /userbot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/purge.py -------------------------------------------------------------------------------- /userbot/modules/qrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/qrcode.py -------------------------------------------------------------------------------- /userbot/modules/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/scrapers.py -------------------------------------------------------------------------------- /userbot/modules/screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/screencapture.py -------------------------------------------------------------------------------- /userbot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/sed.py -------------------------------------------------------------------------------- /userbot/modules/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/spotify.py -------------------------------------------------------------------------------- /userbot/modules/system_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/system_stats.py -------------------------------------------------------------------------------- /userbot/modules/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/time.py -------------------------------------------------------------------------------- /userbot/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/updater.py -------------------------------------------------------------------------------- /userbot/modules/userdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/userdata.py -------------------------------------------------------------------------------- /userbot/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/weather.py -------------------------------------------------------------------------------- /userbot/modules/welcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/welcomes.py -------------------------------------------------------------------------------- /userbot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/whois.py -------------------------------------------------------------------------------- /userbot/modules/www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphielGang/Telegram-Paperplane/HEAD/userbot/modules/www.py --------------------------------------------------------------------------------