ts3plugin 0.3.1

An abstraction layer that simplifies creating TeamSpeak3 plugins and stores received data to provide a more convenient API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{% macro do_doc(prop,depth) %}
{% if prop.documentation %}
{{ prop.documentation | indent(depth=depth) }}{% endif %}
{% if prop.requested %}
{% filter indent(depth=depth) %}
{% if prop.documentation %}
///
{% endif %}
/// Only available if requested explicitly through `request_data`.
{% endfilter %}
{% endif %}
{% endmacro do_doc %}