├── .github └── workflows │ └── lint.yml ├── LICENSE ├── README.md ├── TODO ├── _skeleton.py ├── admin_tools.py ├── afk.py ├── autoprofile.py ├── b_emoji.py ├── forward.py ├── full.txt ├── google.py ├── info.py ├── insult.py ├── lmgtfy.py ├── lydia.py ├── lyrics.py ├── manifest.txt ├── minimal.txt ├── misc.py ├── mock.py ├── none.txt ├── nopm.py ├── notes.py ├── purge.py ├── quicktype.py ├── quotes.py ├── recentactions.py ├── setup.cfg ├── setup_for_development.sh ├── spam.py ├── speedtest.py ├── stickers.py ├── terminal.py ├── transfersh.py ├── translate.py ├── tts.py ├── typer.py ├── urbandictionary.py ├── userinfo.py ├── weather.py ├── xda.py └── yesno.py /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # modules-repo 2 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/TODO -------------------------------------------------------------------------------- /_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/_skeleton.py -------------------------------------------------------------------------------- /admin_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/admin_tools.py -------------------------------------------------------------------------------- /afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/afk.py -------------------------------------------------------------------------------- /autoprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/autoprofile.py -------------------------------------------------------------------------------- /b_emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/b_emoji.py -------------------------------------------------------------------------------- /forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/forward.py -------------------------------------------------------------------------------- /full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/full.txt -------------------------------------------------------------------------------- /google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/google.py -------------------------------------------------------------------------------- /info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/info.py -------------------------------------------------------------------------------- /insult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/insult.py -------------------------------------------------------------------------------- /lmgtfy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/lmgtfy.py -------------------------------------------------------------------------------- /lydia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/lydia.py -------------------------------------------------------------------------------- /lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/lyrics.py -------------------------------------------------------------------------------- /manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/manifest.txt -------------------------------------------------------------------------------- /minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/minimal.txt -------------------------------------------------------------------------------- /misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/misc.py -------------------------------------------------------------------------------- /mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/mock.py -------------------------------------------------------------------------------- /none.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nopm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/nopm.py -------------------------------------------------------------------------------- /notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/notes.py -------------------------------------------------------------------------------- /purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/purge.py -------------------------------------------------------------------------------- /quicktype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/quicktype.py -------------------------------------------------------------------------------- /quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/quotes.py -------------------------------------------------------------------------------- /recentactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/recentactions.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup_for_development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/setup_for_development.sh -------------------------------------------------------------------------------- /spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/spam.py -------------------------------------------------------------------------------- /speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/speedtest.py -------------------------------------------------------------------------------- /stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/stickers.py -------------------------------------------------------------------------------- /terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/terminal.py -------------------------------------------------------------------------------- /transfersh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/transfersh.py -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/translate.py -------------------------------------------------------------------------------- /tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/tts.py -------------------------------------------------------------------------------- /typer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/typer.py -------------------------------------------------------------------------------- /urbandictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/urbandictionary.py -------------------------------------------------------------------------------- /userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/userinfo.py -------------------------------------------------------------------------------- /weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/weather.py -------------------------------------------------------------------------------- /xda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/xda.py -------------------------------------------------------------------------------- /yesno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendly-telegram/modules-repo/HEAD/yesno.py --------------------------------------------------------------------------------