Python module to parse Erlang BEAM files


Keywords
beam, erlang, erlang-beam, python
License
MIT
Install
pip install pybeam==0.7

Documentation

Build Status PyPI version Documentation Status

pybeam

Python module to parse Erlang BEAM files.

Both python 2.7 and python 3.3 are supported. Python 3.2 are known not to work. Pull-requests are always welcome.

Quick start:

import pybeam
p = pybeam.BeamFile("/usr/lib64/erlang/lib/appmon-2.1.14.1/ebin/appmon.beam")
print(p.imports)
print(p.exports)
print(p.atoms)

References