├── .gitignore ├── COPYING ├── README.md ├── __init__.py ├── dumpsig.py ├── img └── dialog.png ├── nampa ├── __init__.py ├── binrw.py ├── crc.py └── flirt.py ├── plugin.json ├── setup.cfg ├── setup.py └── tests └── test_crc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/__init__.py -------------------------------------------------------------------------------- /dumpsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/dumpsig.py -------------------------------------------------------------------------------- /img/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/img/dialog.png -------------------------------------------------------------------------------- /nampa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/nampa/__init__.py -------------------------------------------------------------------------------- /nampa/binrw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/nampa/binrw.py -------------------------------------------------------------------------------- /nampa/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/nampa/crc.py -------------------------------------------------------------------------------- /nampa/flirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/nampa/flirt.py -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/plugin.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebabush/nampa/HEAD/tests/test_crc.py --------------------------------------------------------------------------------