├── .apt └── usr │ └── bin │ └── config │ └── config.conf ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── generate_session_file.py ├── heroku.yml ├── requirements.txt ├── runtime.txt ├── sample_config.env ├── string_session.py ├── termux_install.sh ├── userbot ├── __init__.py ├── __main__.py ├── events.py └── modules │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── android.py │ ├── anti_spambot.py │ ├── chat.py │ ├── direct_links.py │ ├── dogbin.py │ ├── evaluators.py │ ├── filter.py │ ├── gdrive.py │ ├── hash.py │ ├── help.py │ ├── lastfm.py │ ├── locks.py │ ├── memes.py │ ├── misc.py │ ├── notes.py │ ├── ocr.py │ ├── pmpermit.py │ ├── profile.py │ ├── purge.py │ ├── qrcode.py │ ├── remove_bg.py │ ├── reverse.py │ ├── scrapers.py │ ├── screencapture.py │ ├── sed.py │ ├── snips.py │ ├── spam.py │ ├── sql_helper │ ├── .DS_Store │ ├── __init__.py │ ├── filter_sql.py │ ├── globals.py │ ├── gmute_sql.py │ ├── keep_read_sql.py │ ├── notes_sql.py │ ├── pm_permit_sql.py │ ├── snips_sql.py │ ├── spam_mute_sql.py │ └── welcome_sql.py │ ├── stickers.py │ ├── system_stats.py │ ├── time.py │ ├── updater.py │ ├── upload_download.py │ ├── weather.py │ ├── welcomes.py │ ├── whois.py │ └── www.py └── windows_startup_script.py /.apt/usr/bin/config/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/.apt/usr/bin/config/config.conf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m userbot 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/app.json -------------------------------------------------------------------------------- /generate_session_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/generate_session_file.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.6 2 | -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/sample_config.env -------------------------------------------------------------------------------- /string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/string_session.py -------------------------------------------------------------------------------- /termux_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/termux_install.sh -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/events.py -------------------------------------------------------------------------------- /userbot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/__init__.py -------------------------------------------------------------------------------- /userbot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/admin.py -------------------------------------------------------------------------------- /userbot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/afk.py -------------------------------------------------------------------------------- /userbot/modules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/android.py -------------------------------------------------------------------------------- /userbot/modules/anti_spambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/anti_spambot.py -------------------------------------------------------------------------------- /userbot/modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/chat.py -------------------------------------------------------------------------------- /userbot/modules/direct_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/direct_links.py -------------------------------------------------------------------------------- /userbot/modules/dogbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/dogbin.py -------------------------------------------------------------------------------- /userbot/modules/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/evaluators.py -------------------------------------------------------------------------------- /userbot/modules/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/filter.py -------------------------------------------------------------------------------- /userbot/modules/gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/gdrive.py -------------------------------------------------------------------------------- /userbot/modules/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/hash.py -------------------------------------------------------------------------------- /userbot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/help.py -------------------------------------------------------------------------------- /userbot/modules/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/lastfm.py -------------------------------------------------------------------------------- /userbot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/locks.py -------------------------------------------------------------------------------- /userbot/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/memes.py -------------------------------------------------------------------------------- /userbot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/misc.py -------------------------------------------------------------------------------- /userbot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/notes.py -------------------------------------------------------------------------------- /userbot/modules/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/ocr.py -------------------------------------------------------------------------------- /userbot/modules/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/pmpermit.py -------------------------------------------------------------------------------- /userbot/modules/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/profile.py -------------------------------------------------------------------------------- /userbot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/purge.py -------------------------------------------------------------------------------- /userbot/modules/qrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/qrcode.py -------------------------------------------------------------------------------- /userbot/modules/remove_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/remove_bg.py -------------------------------------------------------------------------------- /userbot/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/reverse.py -------------------------------------------------------------------------------- /userbot/modules/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/scrapers.py -------------------------------------------------------------------------------- /userbot/modules/screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/screencapture.py -------------------------------------------------------------------------------- /userbot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sed.py -------------------------------------------------------------------------------- /userbot/modules/snips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/snips.py -------------------------------------------------------------------------------- /userbot/modules/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/spam.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/.DS_Store -------------------------------------------------------------------------------- /userbot/modules/sql_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/__init__.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/filter_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/filter_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/globals.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gmute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/gmute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/keep_read_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/keep_read_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/notes_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/pm_permit_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/pm_permit_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/snips_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/snips_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/spam_mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/spam_mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/sql_helper/welcome_sql.py -------------------------------------------------------------------------------- /userbot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/stickers.py -------------------------------------------------------------------------------- /userbot/modules/system_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/system_stats.py -------------------------------------------------------------------------------- /userbot/modules/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/time.py -------------------------------------------------------------------------------- /userbot/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/updater.py -------------------------------------------------------------------------------- /userbot/modules/upload_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/upload_download.py -------------------------------------------------------------------------------- /userbot/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/weather.py -------------------------------------------------------------------------------- /userbot/modules/welcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/welcomes.py -------------------------------------------------------------------------------- /userbot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/whois.py -------------------------------------------------------------------------------- /userbot/modules/www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/userbot/modules/www.py -------------------------------------------------------------------------------- /windows_startup_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvinashReddy3108/PaperplaneExtended/HEAD/windows_startup_script.py --------------------------------------------------------------------------------