https://github.com/cemsbv/gef-file-to-map
Utility library for parsing of *.gef files, used primarily in pygef
https://github.com/cemsbv/gef-file-to-map
gef pygef python rust
Last synced: 4 months ago
JSON representation
Utility library for parsing of *.gef files, used primarily in pygef
- Host: GitHub
- URL: https://github.com/cemsbv/gef-file-to-map
- Owner: cemsbv
- License: mit
- Created: 2023-02-21T15:15:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-14T13:14:40.000Z (5 months ago)
- Last Synced: 2025-06-07T08:07:32.788Z (4 months ago)
- Topics: gef, pygef, python, rust
- Language: Rust
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# gef-file-to-map
[](https://pypi.org/project/gef-file-to-map)
Utility library for parsing of .gef files, written for [pygef](https://github.com/cemsbv/pygef).
### Run locally
```sh
# 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())
```