Pybeam
Python module to parse Erlang BEAM files
Install / Use
/learn @matwey/PybeamREADME
pybeam
Python module to parse Erlang BEAM files.
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)
