summaryrefslogtreecommitdiff
path: root/plugins/python/liveconv/plugin.py
blob: a1a182e3ad18109a5ab97273656c624084daac50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

from pychrysalide import PluginModule
from pychrysalide.gui import core

from .panel import ConvPanel


class LiveConverter(PluginModule):
    """Convert raw values into interpreted values."""


    def __init__(self):
        """Initialize the plugin for Chrysalide."""

        interface = {

            'name' : 'LiveConverter',
            'desc' : 'Convert raw values into interprered values',
            'version' : '0.1',

            'actions' : ( )

        }

        super(LiveConverter, self).__init__(**interface)

        p = ConvPanel()

        core.register_panel(p)