summaryrefslogtreecommitdiff
path: root/plugins/python/liveconv/plugin.py
blob: cacdf096360eacebbea7d138db024ba64ac0cdd4 (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

from pychrysalide.gui import core
from pychrysalide.plugins import PluginModule

from .panel import ConvPanel


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

    _name = 'LiveConverter'
    _desc = 'Convert raw values into interprered values'
    _version = '0.1'
    _url = 'https://www.chrysalide.re/'

    _actions = ( )


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

        super(LiveConverter, self).__init__()

        core.register_panel(ConvPanel)