├── .github └── workflows │ └── pythonapp.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT ├── Dockerfile ├── LICENSE ├── Procfile.txt ├── README.md ├── app.json ├── bot.sh ├── docs ├── _config.yml └── index.md ├── heroku.yml ├── localsetup.md ├── requirements.txt ├── resources ├── AUGUSTUS.TTF ├── Aerospace.ttf ├── Fizilion.png ├── IMG_20201109_130207_262.jpg ├── MagmaWave_Caps.otf ├── MutantAcademyStyle.ttf ├── alive.jpg ├── batmfo__.ttf ├── bruh.mp3 ├── build.txt ├── cosmic.jpg ├── curved.png ├── impact.ttf ├── orbitron-medium.otf └── pro.ogg ├── sample_config.env ├── session_gen.sh ├── string_session.py ├── userbot ├── __init__.py ├── __main__.py ├── events.py ├── modules │ ├── Rekognize.py │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── android.py │ ├── anime.py │ ├── anti_spambot.py │ ├── archive.py │ ├── aria.py │ ├── blacklist.py │ ├── channel_download.py │ ├── chat.py │ ├── chatinfo.py │ ├── clone.py │ ├── covid.py │ ├── create.py │ ├── deepfryer.py │ ├── direct_links.py │ ├── dogbin.py │ ├── evaluators.py │ ├── fban.py │ ├── figlet.py │ ├── filemanager.py │ ├── filesummary.py │ ├── filter.py │ ├── font.py │ ├── fstat.py │ ├── gban.py │ ├── gdrive.py │ ├── github.py │ ├── hack.py │ ├── hash.py │ ├── help.py │ ├── heroku.py │ ├── hyperlink.py │ ├── imgmemes.py │ ├── invite.py │ ├── kill.py │ ├── link_shortner.py │ ├── locks.py │ ├── log_tagging.py │ ├── lyrics.py │ ├── mega.py │ ├── memes.py │ ├── memify.py │ ├── mention.py │ ├── misc.py │ ├── multimemes.py │ ├── mystats.py │ ├── notes.py │ ├── ocr.py │ ├── pdf.py │ ├── pics.py │ ├── pmpermit.py │ ├── profile.py │ ├── profilepicscrapper.py │ ├── purge.py │ ├── qrcode.py │ ├── remove_bg.py │ ├── reverse.py │ ├── scrapers.py │ ├── screencapture.py │ ├── sed.py │ ├── shazam.py │ ├── shift.py │ ├── snips.py │ ├── spam.py │ ├── special.py │ ├── spotifynow.py │ ├── sql_helper │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── blacklist_sql.py │ │ ├── fban_sql.py │ │ ├── filter_sql.py │ │ ├── gban_sql_helper.py │ │ ├── globals.py │ │ ├── gmute_sql.py │ │ ├── google_drive_sql.py │ │ ├── keep_read_sql.py │ │ ├── lydia_sql.py │ │ ├── mute_sql.py │ │ ├── notes_sql.py │ │ ├── pm_permit_sql.py │ │ ├── snips_sql.py │ │ ├── spam_mute_sql.py │ │ └── welcome_sql.py │ ├── stats.py │ ├── stickers.py │ ├── sticklet.py │ ├── stt.py │ ├── system_stats.py │ ├── telegraph.py │ ├── time.py │ ├── transfer.py │ ├── unsplash_walls.py │ ├── updater.py │ ├── upload_download.py │ ├── weather.py │ ├── webupload.py │ ├── welcomes.py │ ├── whois.py │ └── www.py ├── storage.py └── utils │ ├── FastTelethon.py │ ├── __init__.py │ ├── chrome.py │ ├── duckduckgoscraper.py │ ├── exceptions.py │ ├── format.py │ ├── google_images_download.py │ ├── progress.py │ ├── styles │ ├── ProductSans-BoldItalic.ttf │ └── ProductSans-Light.ttf │ └── tools.py └── windows_startup_script.py /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/Procfile.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/app.json -------------------------------------------------------------------------------- /bot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/bot.sh -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/docs/index.md -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/heroku.yml -------------------------------------------------------------------------------- /localsetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/localsetup.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/AUGUSTUS.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/AUGUSTUS.TTF -------------------------------------------------------------------------------- /resources/Aerospace.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/Aerospace.ttf -------------------------------------------------------------------------------- /resources/Fizilion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/Fizilion.png -------------------------------------------------------------------------------- /resources/IMG_20201109_130207_262.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/IMG_20201109_130207_262.jpg -------------------------------------------------------------------------------- /resources/MagmaWave_Caps.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/MagmaWave_Caps.otf -------------------------------------------------------------------------------- /resources/MutantAcademyStyle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/MutantAcademyStyle.ttf -------------------------------------------------------------------------------- /resources/alive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/alive.jpg -------------------------------------------------------------------------------- /resources/batmfo__.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/batmfo__.ttf -------------------------------------------------------------------------------- /resources/bruh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/bruh.mp3 -------------------------------------------------------------------------------- /resources/build.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /resources/cosmic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/cosmic.jpg -------------------------------------------------------------------------------- /resources/curved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/curved.png -------------------------------------------------------------------------------- /resources/impact.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/impact.ttf -------------------------------------------------------------------------------- /resources/orbitron-medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/orbitron-medium.otf -------------------------------------------------------------------------------- /resources/pro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/resources/pro.ogg -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/sample_config.env -------------------------------------------------------------------------------- /session_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/session_gen.sh -------------------------------------------------------------------------------- /string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/string_session.py -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/events.py -------------------------------------------------------------------------------- /userbot/modules/Rekognize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/Rekognize.py -------------------------------------------------------------------------------- /userbot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/__init__.py -------------------------------------------------------------------------------- /userbot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/admin.py -------------------------------------------------------------------------------- /userbot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/afk.py -------------------------------------------------------------------------------- /userbot/modules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/android.py -------------------------------------------------------------------------------- /userbot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/anime.py -------------------------------------------------------------------------------- /userbot/modules/anti_spambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/anti_spambot.py -------------------------------------------------------------------------------- /userbot/modules/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/archive.py -------------------------------------------------------------------------------- /userbot/modules/aria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/aria.py -------------------------------------------------------------------------------- /userbot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/blacklist.py -------------------------------------------------------------------------------- /userbot/modules/channel_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/channel_download.py -------------------------------------------------------------------------------- /userbot/modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/chat.py -------------------------------------------------------------------------------- /userbot/modules/chatinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/chatinfo.py -------------------------------------------------------------------------------- /userbot/modules/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/clone.py -------------------------------------------------------------------------------- /userbot/modules/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/covid.py -------------------------------------------------------------------------------- /userbot/modules/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/create.py -------------------------------------------------------------------------------- /userbot/modules/deepfryer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/deepfryer.py -------------------------------------------------------------------------------- /userbot/modules/direct_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/direct_links.py -------------------------------------------------------------------------------- /userbot/modules/dogbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/dogbin.py -------------------------------------------------------------------------------- /userbot/modules/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/evaluators.py -------------------------------------------------------------------------------- /userbot/modules/fban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/fban.py -------------------------------------------------------------------------------- /userbot/modules/figlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/figlet.py -------------------------------------------------------------------------------- /userbot/modules/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/filemanager.py -------------------------------------------------------------------------------- /userbot/modules/filesummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/filesummary.py -------------------------------------------------------------------------------- /userbot/modules/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/filter.py -------------------------------------------------------------------------------- /userbot/modules/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/font.py -------------------------------------------------------------------------------- /userbot/modules/fstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/fstat.py -------------------------------------------------------------------------------- /userbot/modules/gban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/gban.py -------------------------------------------------------------------------------- /userbot/modules/gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/gdrive.py -------------------------------------------------------------------------------- /userbot/modules/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/github.py -------------------------------------------------------------------------------- /userbot/modules/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/hack.py -------------------------------------------------------------------------------- /userbot/modules/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/hash.py -------------------------------------------------------------------------------- /userbot/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/help.py -------------------------------------------------------------------------------- /userbot/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/heroku.py -------------------------------------------------------------------------------- /userbot/modules/hyperlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/hyperlink.py -------------------------------------------------------------------------------- /userbot/modules/imgmemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/imgmemes.py -------------------------------------------------------------------------------- /userbot/modules/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/invite.py -------------------------------------------------------------------------------- /userbot/modules/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/kill.py -------------------------------------------------------------------------------- /userbot/modules/link_shortner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/link_shortner.py -------------------------------------------------------------------------------- /userbot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/locks.py -------------------------------------------------------------------------------- /userbot/modules/log_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/log_tagging.py -------------------------------------------------------------------------------- /userbot/modules/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/lyrics.py -------------------------------------------------------------------------------- /userbot/modules/mega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/mega.py -------------------------------------------------------------------------------- /userbot/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/memes.py -------------------------------------------------------------------------------- /userbot/modules/memify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/memify.py -------------------------------------------------------------------------------- /userbot/modules/mention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/mention.py -------------------------------------------------------------------------------- /userbot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/misc.py -------------------------------------------------------------------------------- /userbot/modules/multimemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/multimemes.py -------------------------------------------------------------------------------- /userbot/modules/mystats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/mystats.py -------------------------------------------------------------------------------- /userbot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/notes.py -------------------------------------------------------------------------------- /userbot/modules/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/ocr.py -------------------------------------------------------------------------------- /userbot/modules/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/pdf.py -------------------------------------------------------------------------------- /userbot/modules/pics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/pics.py -------------------------------------------------------------------------------- /userbot/modules/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/pmpermit.py -------------------------------------------------------------------------------- /userbot/modules/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/profile.py -------------------------------------------------------------------------------- /userbot/modules/profilepicscrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/profilepicscrapper.py -------------------------------------------------------------------------------- /userbot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/purge.py -------------------------------------------------------------------------------- /userbot/modules/qrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/qrcode.py -------------------------------------------------------------------------------- /userbot/modules/remove_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/remove_bg.py -------------------------------------------------------------------------------- /userbot/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/reverse.py -------------------------------------------------------------------------------- /userbot/modules/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/scrapers.py -------------------------------------------------------------------------------- /userbot/modules/screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/screencapture.py -------------------------------------------------------------------------------- /userbot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sed.py -------------------------------------------------------------------------------- /userbot/modules/shazam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/shazam.py -------------------------------------------------------------------------------- /userbot/modules/shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/shift.py -------------------------------------------------------------------------------- /userbot/modules/snips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/snips.py -------------------------------------------------------------------------------- /userbot/modules/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/spam.py -------------------------------------------------------------------------------- /userbot/modules/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/special.py -------------------------------------------------------------------------------- /userbot/modules/spotifynow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/spotifynow.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/.DS_Store -------------------------------------------------------------------------------- /userbot/modules/sql_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/__init__.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/blacklist_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/fban_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/fban_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/filter_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/filter_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gban_sql_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/gban_sql_helper.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/globals.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/gmute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/gmute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/google_drive_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/google_drive_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/keep_read_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/keep_read_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/lydia_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/lydia_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/notes_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/pm_permit_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/pm_permit_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/snips_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/snips_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/spam_mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/spam_mute_sql.py -------------------------------------------------------------------------------- /userbot/modules/sql_helper/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sql_helper/welcome_sql.py -------------------------------------------------------------------------------- /userbot/modules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/stats.py -------------------------------------------------------------------------------- /userbot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/stickers.py -------------------------------------------------------------------------------- /userbot/modules/sticklet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/sticklet.py -------------------------------------------------------------------------------- /userbot/modules/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/stt.py -------------------------------------------------------------------------------- /userbot/modules/system_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/system_stats.py -------------------------------------------------------------------------------- /userbot/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/telegraph.py -------------------------------------------------------------------------------- /userbot/modules/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/time.py -------------------------------------------------------------------------------- /userbot/modules/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/transfer.py -------------------------------------------------------------------------------- /userbot/modules/unsplash_walls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/unsplash_walls.py -------------------------------------------------------------------------------- /userbot/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/updater.py -------------------------------------------------------------------------------- /userbot/modules/upload_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/upload_download.py -------------------------------------------------------------------------------- /userbot/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/weather.py -------------------------------------------------------------------------------- /userbot/modules/webupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/webupload.py -------------------------------------------------------------------------------- /userbot/modules/welcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/welcomes.py -------------------------------------------------------------------------------- /userbot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/whois.py -------------------------------------------------------------------------------- /userbot/modules/www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/modules/www.py -------------------------------------------------------------------------------- /userbot/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/storage.py -------------------------------------------------------------------------------- /userbot/utils/FastTelethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/FastTelethon.py -------------------------------------------------------------------------------- /userbot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/__init__.py -------------------------------------------------------------------------------- /userbot/utils/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/chrome.py -------------------------------------------------------------------------------- /userbot/utils/duckduckgoscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/duckduckgoscraper.py -------------------------------------------------------------------------------- /userbot/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/exceptions.py -------------------------------------------------------------------------------- /userbot/utils/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/format.py -------------------------------------------------------------------------------- /userbot/utils/google_images_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/google_images_download.py -------------------------------------------------------------------------------- /userbot/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/progress.py -------------------------------------------------------------------------------- /userbot/utils/styles/ProductSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/styles/ProductSans-BoldItalic.ttf -------------------------------------------------------------------------------- /userbot/utils/styles/ProductSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/styles/ProductSans-Light.ttf -------------------------------------------------------------------------------- /userbot/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/userbot/utils/tools.py -------------------------------------------------------------------------------- /windows_startup_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyLab-Devs/CosmicUserbot/HEAD/windows_startup_script.py --------------------------------------------------------------------------------