├── .gitignore ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── conf.py ├── day_to_day.rst ├── faq.rst ├── getting_started.rst ├── index.rst ├── logo.pdf ├── logo.png ├── logo.svg └── make.bat ├── gbot ├── __init__.py ├── commands.py ├── gui.py ├── info.py ├── irc.py ├── libs │ ├── __init__.py │ ├── helper.py │ └── nsp.py ├── modules.py └── users.py ├── goshu.py ├── log.py ├── modules.md ├── modules ├── __init__.py ├── accounts.py ├── apiquery │ ├── __init__.py │ ├── gel.api.json │ ├── github.api.json │ ├── itunes.api.json │ ├── soundcloud.api.json │ ├── tt.api.json │ ├── wiki.api.json │ └── youtube.api.yaml ├── calc.py ├── commands.py ├── ctcp_reply.py ├── danbooru │ ├── __init__.py │ ├── dan.dan.json │ ├── kona.dan.json │ └── oreno.dan.json ├── dice.py ├── dictionary.py ├── eggdrop.py ├── google │ ├── __init__.py │ ├── bakabt.goo.json │ ├── imgur.goo.json │ ├── mf.goo.json │ ├── nyaa.goo.json │ ├── pixiv.goo.json │ └── tvtropes.goo.json ├── info.py ├── invite.py ├── link │ ├── __init__.py │ ├── fimfiction.lnk.yaml │ ├── fimfiction_lnk.py │ ├── youtube.lnk.yaml │ └── youtube_lnk.py ├── list_module.py ├── log_display.py ├── modules.py ├── pokemon │ ├── __init__.py │ ├── corrupt_list.json │ └── pokemon_list.json ├── random_module.py ├── responses_module │ ├── 8ball.res.json │ ├── __init__.py │ └── mc.res.json ├── status.py ├── suggest.py ├── teams.py └── urbandictionary.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/day_to_day.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/day_to_day.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/logo.pdf -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/docs/make.bat -------------------------------------------------------------------------------- /gbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/__init__.py -------------------------------------------------------------------------------- /gbot/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/commands.py -------------------------------------------------------------------------------- /gbot/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/gui.py -------------------------------------------------------------------------------- /gbot/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/info.py -------------------------------------------------------------------------------- /gbot/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/irc.py -------------------------------------------------------------------------------- /gbot/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gbot/libs/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/libs/helper.py -------------------------------------------------------------------------------- /gbot/libs/nsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/libs/nsp.py -------------------------------------------------------------------------------- /gbot/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/modules.py -------------------------------------------------------------------------------- /gbot/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/gbot/users.py -------------------------------------------------------------------------------- /goshu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/goshu.py -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/log.py -------------------------------------------------------------------------------- /modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules.md -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/accounts.py -------------------------------------------------------------------------------- /modules/apiquery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/__init__.py -------------------------------------------------------------------------------- /modules/apiquery/gel.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/gel.api.json -------------------------------------------------------------------------------- /modules/apiquery/github.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/github.api.json -------------------------------------------------------------------------------- /modules/apiquery/itunes.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/itunes.api.json -------------------------------------------------------------------------------- /modules/apiquery/soundcloud.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/soundcloud.api.json -------------------------------------------------------------------------------- /modules/apiquery/tt.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/tt.api.json -------------------------------------------------------------------------------- /modules/apiquery/wiki.api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/wiki.api.json -------------------------------------------------------------------------------- /modules/apiquery/youtube.api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/apiquery/youtube.api.yaml -------------------------------------------------------------------------------- /modules/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/calc.py -------------------------------------------------------------------------------- /modules/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/commands.py -------------------------------------------------------------------------------- /modules/ctcp_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/ctcp_reply.py -------------------------------------------------------------------------------- /modules/danbooru/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/danbooru/__init__.py -------------------------------------------------------------------------------- /modules/danbooru/dan.dan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/danbooru/dan.dan.json -------------------------------------------------------------------------------- /modules/danbooru/kona.dan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/danbooru/kona.dan.json -------------------------------------------------------------------------------- /modules/danbooru/oreno.dan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/danbooru/oreno.dan.json -------------------------------------------------------------------------------- /modules/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/dice.py -------------------------------------------------------------------------------- /modules/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/dictionary.py -------------------------------------------------------------------------------- /modules/eggdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/eggdrop.py -------------------------------------------------------------------------------- /modules/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/google/__init__.py -------------------------------------------------------------------------------- /modules/google/bakabt.goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/google/bakabt.goo.json -------------------------------------------------------------------------------- /modules/google/imgur.goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/google/imgur.goo.json -------------------------------------------------------------------------------- /modules/google/mf.goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/google/mf.goo.json -------------------------------------------------------------------------------- /modules/google/nyaa.goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/google/nyaa.goo.json -------------------------------------------------------------------------------- /modules/google/pixiv.goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/google/pixiv.goo.json -------------------------------------------------------------------------------- /modules/google/tvtropes.goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/google/tvtropes.goo.json -------------------------------------------------------------------------------- /modules/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/info.py -------------------------------------------------------------------------------- /modules/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/invite.py -------------------------------------------------------------------------------- /modules/link/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/link/__init__.py -------------------------------------------------------------------------------- /modules/link/fimfiction.lnk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/link/fimfiction.lnk.yaml -------------------------------------------------------------------------------- /modules/link/fimfiction_lnk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/link/fimfiction_lnk.py -------------------------------------------------------------------------------- /modules/link/youtube.lnk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/link/youtube.lnk.yaml -------------------------------------------------------------------------------- /modules/link/youtube_lnk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/link/youtube_lnk.py -------------------------------------------------------------------------------- /modules/list_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/list_module.py -------------------------------------------------------------------------------- /modules/log_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/log_display.py -------------------------------------------------------------------------------- /modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/modules.py -------------------------------------------------------------------------------- /modules/pokemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/pokemon/__init__.py -------------------------------------------------------------------------------- /modules/pokemon/corrupt_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/pokemon/corrupt_list.json -------------------------------------------------------------------------------- /modules/pokemon/pokemon_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/pokemon/pokemon_list.json -------------------------------------------------------------------------------- /modules/random_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/random_module.py -------------------------------------------------------------------------------- /modules/responses_module/8ball.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/responses_module/8ball.res.json -------------------------------------------------------------------------------- /modules/responses_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/responses_module/__init__.py -------------------------------------------------------------------------------- /modules/responses_module/mc.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/responses_module/mc.res.json -------------------------------------------------------------------------------- /modules/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/status.py -------------------------------------------------------------------------------- /modules/suggest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/suggest.py -------------------------------------------------------------------------------- /modules/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/teams.py -------------------------------------------------------------------------------- /modules/urbandictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/modules/urbandictionary.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goshuirc/goshu/HEAD/requirements.txt --------------------------------------------------------------------------------