Browse Source

more docs stuff

pull/20/head
Andrei 8 years ago
parent
commit
dae10ef47a
  1. 2
      .biblio.yaml
  2. 7
      docs/SUMMARY.md
  3. 32
      docs/bot_tutorial/building_block_plugins.md
  4. 2
      docs/bot_tutorial/first_steps.md
  5. 0
      docs/bot_tutorial/writing_a_plugin.md
  6. 19
      docs/build.sh
  7. 22
      docs/installation.md
  8. 5
      setup.py

2
.biblio.yaml

@ -5,4 +5,4 @@ rules:
parser: numpy
outputs:
- {type: markdown, path: _build, title: 'Disco Documentation'}
- {type: markdown, path: docs/api/, title: 'Disco Documentation'}

7
docs/SUMMARY.md

@ -4,10 +4,9 @@
* [Installation and Setup](installation.md)
* [Bot Tutorial](bot_tutorial/intro.md)
* [Creating and Running a Bot](bot_tutorial/first_steps.md)
* [Writing a Plugin](bot_tutorial/writing_a_plugin.md)
* Building Blocks
* [Commands](bot_tutorial/building_block_commands.md)
* [Listeners](bot_tutorial/building_block_listeners.md)
* [Plugins](bot_tutorial/building_block_plugins.md)
* [Commands](bot_tutorial/building_block_commands.md)
* [Listeners](bot_tutorial/building_block_listeners.md)
* [Message Embeds](bot_tutorial/message_embeds.md)
* [Advanced](bot_tutorial/advanced.md)
* API Docs

32
docs/bot_tutorial/building_block_plugins.md

@ -0,0 +1,32 @@
# Plugins
Plugins are Disco are a core abstraction which attempt to encapsulate the functionality of your bot into contained modules. To boil it down, commands related to one another, or listeners that control the same functionality should be within the same Plugin. Although it's possible to call and pass data between Plugins, you should generally attempt to avoid it.
## Plugin Lifecycle
### Loading
Plugins are loaded when the Bot is initially created, and when this happens the `Plugin.load` function is called. If the plugin is being reloaded, the call to this function will contain a dictionary of data returned by the previous `unload` call. Using this, you can pass data between loaded instances of your plugin to help aid in seamless reloads. Often plugins will require some level of configuration and setup before running, and this code can be inserted within an overridden version of the load function, as such:
```python
class ExamplePlugin(Plugin):
def load(self, ctx):
super(ExamplePlugin, self).load(ctx)
setup_database()
self.data = ctx.get('data', {})
```
The load function of a plugin is guaranteed to only be called once for the instance, when reloading a new instance of the plugin will be created.
### Unloading
Plugins are unloaded in multiple scenarios (shutdown, before a reload, or during an unload), and when this happens the `Plugin.unload` function is called. This function is passed one argument containing a dictionary, which (if the plugin wants) can be filled with information that a future iteration (in the case we're reloading) of the plugin can use to maintain state. Plugins may want to call or save data before being unloaded, and in this case they can override the unload function:
```python
class ExamplePlugin(Plugin):
def unload(self, ctx):
ctx['data'] = self.data
super(ExamplePlugin, self).unload(ctx)
```
During the unload sequence all greenlets which the plugin owns (e.g. greenlets for command or listener callbacks, any spawned with `Plugin.spawn`) are terminated. In the case where command callbacks should continue execution past the unload point (e.g. in the case where a plugin reloads itself), you should pass `oob=True` to the `Plugin.command` decorator.

2
docs/bot_tutorial/first_steps.md

@ -51,3 +51,5 @@ If all is successful, you can then test your bot by mentioning it with the comma
```
@tutorial#1234 ping
```
At this point, you've achieved the creation and setup of a very simple bot. Now lets work on understanding and working with more Disco features.

0
docs/bot_tutorial/writing_a_plugin.md

19
docs/build.sh

@ -1,3 +1,20 @@
#!/bin/bash
echo "Building Autogenerated API Docs"
pushd ..
python -m biblio.cli ../disco/.biblio.yaml
popd
echo "Running Gitbook Build"
gitbook build
rsync -avzP _book/* meph:/var/www/disco/
if [ ! -z "${GH_TOKEN:-}" ]; then
echo "Deploying to Github Pages"
pushd _book/
git init
git config user.name "AutoDoc"
git config user.email "<>"
git add .
git commit -m "Generated Documentation"
git push --force --quiet "https://${GH_TOKEN}@github.com/b1naryth1ef/disco" master:gh-pages
popd
fi

22
docs/installation.md

@ -1,27 +1,27 @@
# Installation and Setup
The easiest way to install the base version of Disco is through Python's [pip](https://pip.pypa.io/en/stable/) utility. To simply install the most minimal version of Disco, simply run:
{% hint style='tip' %}
If you are a new Python developer, or are unsure what pip even is, try starting [here](https://packaging.python.org/installing/).
{% endhint %}
The easiest way to install the base version of Disco is through Python's [pip](https://pip.pypa.io/en/stable/) utility. To simply install the most minimal version of Disco, simply run:
```sh
pip install disco-py
```
## Optional Dependencies
Disco also has a set of optional dependencies which add various levels of functionality or support when installed. These can all be installed in a similar fashion to Disco, by simply running:
Disco provides a set of optional dependencies which add various bits of functionality or performance changes when installed. These can all be installed in a similar fashion to Disco;
```sh
pip install DEPENDENCY_NAME
pip install disco[performance]
```
| Name | Explanation |
|---------|------------------|
| requests[security] | modern/proper SSL implementation, this helps silence some annoying warning messages |
| ujson | faster json parser, can be used to improve performance |
| erlpack | ETF parser, only supports Python 2.x but will greatly improve Gateway performance and bandwidth usage |
| gipc | IPC library for Gevent which adds support for automatic sharding |
| youtube-dl | adds support for downloading and playing songs from a plethora (including Youtube) of sources |
| Name | Explanation | Versions |
|------|-------------|----------|
| voice | Adds functionality required to connect and use voice | Both |
| music | Adds the ability to stream and play music from various third party sites | Both |
| performance | Adds a faster JSON parser (ujson) and an ETF encoding parser | 2.x Only |
| sharding | Adds a library which is required to enable auto-sharding | 2.x Only |
| docs | Adds a library required to build this documentation | Both |

5
setup.py

@ -18,7 +18,10 @@ with open('README.md') as f:
extras_require = {
'voice': ['pynacl==1.1.2'],
'performance': ['erlpack==0.3.2'],
'music': ['youtube_dl==2017.4.26'],
'performance': ['erlpack==0.3.2', 'ujson==1.35'],
'sharding': ['gipc==0.6.0'],
'docs': ['biblio==0.0.2'],
}
setup(

Loading…
Cancel
Save