Utility library for parsing of .gef files, written for pygef.
# Install maturin inside a Python environment
python3 -m venv .env
source .env/bin/activate
pip install maturin
# Create a Python package from the Rust code
maturin develop
# Open a GEF file locally
python
>>> from gef_file_to_map import gef_to_map
>>> gef_to_map(open('./tests/test.gef').read())