معرفی شرکت ها


construct-editor-0.1.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

GUI (based on wxPython) for 'construct', which is a powerful declarative and symmetrical parser and builder for binary data.
ویژگی مقدار
سیستم عامل -
نام فایل construct-editor-0.1.1
نام construct-editor
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Tim Riddermann
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/timrid/construct-editor
آدرس اینترنتی https://pypi.org/project/construct-editor/
مجوز MIT
# Construct Editor This package provides a GUI (based on wxPython) for 'construct', which is a powerful declarative and symmetrical parser and builder for binary data. It can either be used standalone or embedded as a widget in another application. ![Preview](https://raw.githubusercontent.com/timrid/construct-editor/main/doc/preview.gif) Features: - show documentation as tooltip - different editors for: - Integer values - Enum values - FlagsEnum values - DateTime values - undo/redo in HexEditor and in ConstructEditor - extensible for custom constructs ## Installation The preferred way to installation is via PyPI: ``` pip install construct-editor ``` ## Getting started (Standalone) To start the standalone version, just execute the following in the command line: ``` construct-editor ``` ## Getting started (as Widgets) This is a simple example ```python import wx import construct as cs from construct_editor.wx_widgets import WxConstructHexEditor constr = cs.Struct( "a" / cs.Int16sb, "b" / cs.Int16sb, ) b = bytes([0x12, 0x34, 0x56, 0x78]) app = wx.App(False) frame = wx.Frame(None, title="Construct Hex Editor", size=(1000, 200)) editor_panel = WxConstructHexEditor(frame, construct=constr, binary=b) editor_panel.construct_editor.expand_all() frame.Show(True) app.MainLoop() ``` This snipped generates a GUI like this: ![Screenshot of the example](https://raw.githubusercontent.com/timrid/construct-editor/main/doc/example.png) ## Widgets ### ConstructHexEditor This is the main widget ot this library. It offers a look at the raw binary data and also at the parsed structure. It offers a way to modify the raw binary data, which is then automaticly converted to the structed view. It also supports to modify the structed data and build the binary data from it. ### ConstructEditor This is just the right side of the `ConstructHexEditor`, but can be used also used as standalone widget. It provides: - Viewing the structure of a construct (without binary data) - Parsing binary data according to the construct ### HexEditor Just the left side of the `ConstructHexEditor`, but can be used also used as standalone widget. It provides: - Viewing Bytes in a Hexadecimal form - Callbacks when some value changed - Changeable format via `TableFormat`


نیازمندی

مقدار نام
==2.10.68 construct
==0.5.5 construct-typing
>=4.1.1 wxPython
>=1.0.0 arrow
>=1.14.0 wrapt
>=4.4.0 typing-extensions


زبان مورد نیاز

مقدار نام
>=3.8 Python


نحوه نصب


نصب پکیج whl construct-editor-0.1.1:

    pip install construct-editor-0.1.1.whl


نصب پکیج tar.gz construct-editor-0.1.1:

    pip install construct-editor-0.1.1.tar.gz