summaryrefslogtreecommitdiff
path: root/plugins/python/liveconv/plugin.py
blob: 8caeb1731bc6c546ca8cec86c59e89542e13a129 (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 import PluginModule
from pychrysalide.gui import core

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)