├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── hrku-deploy.yml │ └── pythonapp.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT ├── Dockerfile ├── LICENSE ├── Procfile.txt ├── README.md ├── app.json ├── docker-compose.yml ├── exec.sh ├── heroku.yml ├── requirements.txt ├── resources ├── MutantAcademyStyle.ttf └── alice.txt ├── sample_config.env ├── string_session.py └── userbot ├── __init__.py ├── __main__.py ├── events.py ├── modules ├── __init__.py ├── admin.py ├── afk.py ├── android.py ├── anime.py ├── anti_spambot.py ├── aria.py ├── blacklist.py ├── chat.py ├── clone.py ├── covid.py ├── direct_links.py ├── evaluators.py ├── fban.py ├── filemanager.py ├── filter.py ├── getmusic.py ├── github.py ├── google_drive.py ├── hash.py ├── help.py ├── heroku.py ├── lastfm.py ├── locks.py ├── lyrics.py ├── mega_downloader.py ├── memes.py ├── misc.py ├── multimemes.py ├── nekobot.py ├── nekos_img.py ├── notes.py ├── ocr.py ├── paste.py ├── pmpermit.py ├── profile.py ├── purge.py ├── qrcode.py ├── remove_bg.py ├── reverse.py ├── scrapers.py ├── screencapture.py ├── sed.py ├── snips.py ├── spam.py ├── spotifynow.py ├── sql_helper │ ├── .DS_Store │ ├── __init__.py │ ├── blacklist_sql.py │ ├── fban_sql.py │ ├── filter_sql.py │ ├── globals.py │ ├── gmute_sql.py │ ├── google_drive_sql.py │ ├── keep_read_sql.py │ ├── notes_sql.py │ ├── pm_permit_sql.py │ ├── snips_sql.py │ ├── spam_mute_sql.py │ └── welcome_sql.py ├── ssvideo.py ├── stickers.py ├── system_stats.py ├── telegraph.py ├── time.py ├── updater.py ├── upload_download.py ├── weather.py ├── welcomes.py ├── whois.py ├── wordcloud.py └── www.py └── utils ├── FastTelethon.py ├── __init__.py ├── chrome.py ├── exceptions.py ├── google_images_download.py ├── pastebin.py ├── progress.py └── tools.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/hrku-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/.github/workflows/hrku-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/Procfile.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/app.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/exec.sh -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/MutantAcademyStyle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/resources/MutantAcademyStyle.ttf -------------------------------------------------------------------------------- /resources/alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/resources/alice.txt -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/sample_config.env -------------------------------------------------------------------------------- /string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/string_session.py -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/events.py -------------------------------------------------------------------------------- /userbot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/__init__.py -------------------------------------------------------------------------------- /userbot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/admin.py -------------------------------------------------------------------------------- /userbot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/afk.py -------------------------------------------------------------------------------- /userbot/modules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/android.py -------------------------------------------------------------------------------- /userbot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/anime.py -------------------------------------------------------------------------------- /userbot/modules/anti_spambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/anti_spambot.py -------------------------------------------------------------------------------- /userbot/modules/aria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/aria.py -------------------------------------------------------------------------------- /userbot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/blacklist.py -------------------------------------------------------------------------------- /userbot/modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/chat.py -------------------------------------------------------------------------------- /userbot/modules/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/clone.py -------------------------------------------------------------------------------- /userbot/modules/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/covid.py -------------------------------------------------------------------------------- /userbot/modules/direct_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/direct_links.py -------------------------------------------------------------------------------- /userbot/modules/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/evaluators.py -------------------------------------------------------------------------------- /userbot/modules/fban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/fban.py -------------------------------------------------------------------------------- /userbot/modules/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/filemanager.py -------------------------------------------------------------------------------- /userbot/modules/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/filter.py -------------------------------------------------------------------------------- /userbot/modules/getmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/getmusic.py -------------------------------------------------------------------------------- /userbot/modules/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/github.py -------------------------------------------------------------------------------- /userbot/modules/google_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/google_drive.py -------------------------------------------------------------------------------- /userbot/modules/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/hash.py -------------------------------------------------------------------------------- /userbot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/help.py -------------------------------------------------------------------------------- /userbot/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/heroku.py -------------------------------------------------------------------------------- /userbot/modules/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/lastfm.py -------------------------------------------------------------------------------- /userbot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/locks.py -------------------------------------------------------------------------------- /userbot/modules/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/lyrics.py -------------------------------------------------------------------------------- /userbot/modules/mega_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/mega_downloader.py -------------------------------------------------------------------------------- /userbot/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/memes.py -------------------------------------------------------------------------------- /userbot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/misc.py -------------------------------------------------------------------------------- /userbot/modules/multimemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/multimemes.py -------------------------------------------------------------------------------- /userbot/modules/nekobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/nekobot.py -------------------------------------------------------------------------------- /userbot/modules/nekos_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/nekos_img.py -------------------------------------------------------------------------------- /userbot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/notes.py -------------------------------------------------------------------------------- /userbot/modules/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/ocr.py -------------------------------------------------------------------------------- /userbot/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/paste.py -------------------------------------------------------------------------------- /userbot/modules/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/pmpermit.py -------------------------------------------------------------------------------- /userbot/modules/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/profile.py -------------------------------------------------------------------------------- /userbot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/purge.py -------------------------------------------------------------------------------- /userbot/modules/qrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/qrcode.py -------------------------------------------------------------------------------- /userbot/modules/remove_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/remove_bg.py -------------------------------------------------------------------------------- /userbot/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/reverse.py -------------------------------------------------------------------------------- /userbot/modules/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/scrapers.py -------------------------------------------------------------------------------- /userbot/modules/screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/screencapture.py -------------------------------------------------------------------------------- /userbot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sed.py -------------------------------------------------------------------------------- /userbot/modules/snips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/snips.py -------------------------------------------------------------------------------- /userbot/modules/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/spam.py -------------------------------------------------------------------------------- /userbot/modules/spotifynow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/spotifynow.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/.DS_Store -------------------------------------------------------------------------------- /userbot/modules/sql_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/__init__.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/blacklist_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/fban_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/fban_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/filter_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/filter_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/globals.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gmute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/gmute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/google_drive_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/google_drive_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/keep_read_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/keep_read_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/notes_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/pm_permit_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/pm_permit_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/snips_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/snips_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/spam_mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/spam_mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/sql_helper/welcome_sql.py -------------------------------------------------------------------------------- /userbot/modules/ssvideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/ssvideo.py -------------------------------------------------------------------------------- /userbot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/stickers.py -------------------------------------------------------------------------------- /userbot/modules/system_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/system_stats.py -------------------------------------------------------------------------------- /userbot/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/telegraph.py -------------------------------------------------------------------------------- /userbot/modules/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/time.py -------------------------------------------------------------------------------- /userbot/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/updater.py -------------------------------------------------------------------------------- /userbot/modules/upload_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/upload_download.py -------------------------------------------------------------------------------- /userbot/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/weather.py -------------------------------------------------------------------------------- /userbot/modules/welcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/welcomes.py -------------------------------------------------------------------------------- /userbot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/whois.py -------------------------------------------------------------------------------- /userbot/modules/wordcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/wordcloud.py -------------------------------------------------------------------------------- /userbot/modules/www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/modules/www.py -------------------------------------------------------------------------------- /userbot/utils/FastTelethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/FastTelethon.py -------------------------------------------------------------------------------- /userbot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/__init__.py -------------------------------------------------------------------------------- /userbot/utils/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/chrome.py -------------------------------------------------------------------------------- /userbot/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/exceptions.py -------------------------------------------------------------------------------- /userbot/utils/google_images_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/google_images_download.py -------------------------------------------------------------------------------- /userbot/utils/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/pastebin.py -------------------------------------------------------------------------------- /userbot/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/progress.py -------------------------------------------------------------------------------- /userbot/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BianSepang/WeebProject/HEAD/userbot/utils/tools.py --------------------------------------------------------------------------------