summaryrefslogtreecommitdiff
path: root/plugins/python/cglimpse/core.py
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-12-24 16:34:38 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-12-24 16:35:33 (GMT)
commit5bd15ad0d14e925d1f42ff12a1bc254de3fbdda8 (patch)
treeb68ecb23966e977bd99a2866b907c4bb7be71c67 /plugins/python/cglimpse/core.py
parentf3578d35758ac47991806233ceba8d566160260b (diff)
Created the basics of a new panel for binary content glimpse.
Diffstat (limited to 'plugins/python/cglimpse/core.py')
-rw-r--r--plugins/python/cglimpse/core.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/python/cglimpse/core.py b/plugins/python/cglimpse/core.py
new file mode 100644
index 0000000..d2cfdc4
--- /dev/null
+++ b/plugins/python/cglimpse/core.py
@@ -0,0 +1,24 @@
+
+from pychrysalide import PluginModule
+from pychrysalide.gui import core
+
+from .panel import CGlimpsePanel
+
+
+class ContentGlimpse(PluginModule):
+ """Convert raw values into interpreted values."""
+
+ _name = 'ContentGlimpse'
+ _desc = 'Display some glimpses of binary contents'
+ _version = '0.1'
+ _url = 'https://www.chrysalide.re/'
+
+ _actions = ( )
+
+
+ def __init__(self):
+ """Initialize the plugin for Chrysalide."""
+
+ super(ContentGlimpse, self).__init__()
+
+ core.register_panel(CGlimpsePanel)