15 changed files with 104 additions and 7 deletions
@ -0,0 +1,10 @@
|
||||
:mod:`ModuleBase` --- Main class of the bot |
||||
========================================= |
||||
|
||||
yabba blahblah blahblah |
||||
|
||||
.. automodule:: core.modulebase |
||||
:members: |
||||
:undoc-members: |
||||
:show-inheritance: |
||||
|
@ -0,0 +1,9 @@
|
||||
:mod:`Error` --- A module to cause an error |
||||
=========================================== |
||||
|
||||
yabba blahblah blahblah |
||||
|
||||
.. automodule:: modules.Error |
||||
:members: |
||||
:undoc-members: |
||||
:show-inheritance: |
@ -0,0 +1,9 @@
|
||||
:mod:`Scramble` --- Module to provide a word scramble game |
||||
========================================================= |
||||
|
||||
yabba blahblah blahblah |
||||
|
||||
.. automodule:: modules.Scramble |
||||
:members: |
||||
:undoc-members: |
||||
:show-inheritance: |
@ -0,0 +1,9 @@
|
||||
:mod:`BotRPC` --- Main class of the bot |
||||
========================================= |
||||
|
||||
yabba blahblah blahblah |
||||
|
||||
.. automodule:: core.rpc |
||||
:members: |
||||
:undoc-members: |
||||
:show-inheritance: |
@ -1,4 +1,12 @@
|
||||
Included Modules |
||||
================ |
||||
|
||||
TODO: Document included modules |
||||
PyIRCBot includes several modules to add basic functionality to your bot. |
||||
|
||||
Contents: |
||||
|
||||
.. toctree:: |
||||
:maxdepth: 8 |
||||
:glob: |
||||
|
||||
../api/modules/* |
||||
|
@ -0,0 +1,11 @@
|
||||
""" |
||||
.. module:: Core |
||||
:synopsis: Core module of the bot |
||||
|
||||
.. moduleauthor:: Dave Pedu <dave@davepedu.com> |
||||
|
||||
.. automodule:: core.pyircbot |
||||
|
||||
.. automodule:: core.rpc |
||||
|
||||
""" |
Loading…
Reference in new issue