Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 548 Bytes

lang_python.adoc

File metadata and controls

9 lines (6 loc) · 548 Bytes

Kaitai Struct: Python notes

Requirements

Enums implementation in Python requires a enum support as described in PEP-0435. This support is available out of the box in standard libraries since Python v3.4, or since v2.4 using enum34 PyPi compatibility layer.

  • On Debian / Ubuntu, this library can be installed with sudo apt-get install python-enum34

  • Otherwise, one can use just sudo pip install enum34