├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── description.rst ├── dfsimage ├── __init__.py ├── __main__.py ├── args.py ├── cli.py ├── consts.py ├── conv.py ├── entry.py ├── enums.py ├── image.py ├── inf.py ├── misc.py ├── mmbentry.py ├── mmbfile.py ├── pattern.py ├── protocol.py ├── sectors.py ├── side.py ├── simplewarn.py └── wildparse │ ├── LICENSE │ ├── __init__.py │ └── argparse.py ├── doc ├── .gitignore ├── api.rst ├── conf.py ├── index.rst └── readme.rst ├── makefile ├── pyproject.toml ├── readme.rst ├── setup.cfg ├── setup.py ├── tests └── test_create_image.py └── todo /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/LICENSE -------------------------------------------------------------------------------- /description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/description.rst -------------------------------------------------------------------------------- /dfsimage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/__init__.py -------------------------------------------------------------------------------- /dfsimage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/__main__.py -------------------------------------------------------------------------------- /dfsimage/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/args.py -------------------------------------------------------------------------------- /dfsimage/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/cli.py -------------------------------------------------------------------------------- /dfsimage/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/consts.py -------------------------------------------------------------------------------- /dfsimage/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/conv.py -------------------------------------------------------------------------------- /dfsimage/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/entry.py -------------------------------------------------------------------------------- /dfsimage/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/enums.py -------------------------------------------------------------------------------- /dfsimage/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/image.py -------------------------------------------------------------------------------- /dfsimage/inf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/inf.py -------------------------------------------------------------------------------- /dfsimage/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/misc.py -------------------------------------------------------------------------------- /dfsimage/mmbentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/mmbentry.py -------------------------------------------------------------------------------- /dfsimage/mmbfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/mmbfile.py -------------------------------------------------------------------------------- /dfsimage/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/pattern.py -------------------------------------------------------------------------------- /dfsimage/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/protocol.py -------------------------------------------------------------------------------- /dfsimage/sectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/sectors.py -------------------------------------------------------------------------------- /dfsimage/side.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/side.py -------------------------------------------------------------------------------- /dfsimage/simplewarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/simplewarn.py -------------------------------------------------------------------------------- /dfsimage/wildparse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/wildparse/LICENSE -------------------------------------------------------------------------------- /dfsimage/wildparse/__init__.py: -------------------------------------------------------------------------------- 1 | """Patched argparse container""" 2 | -------------------------------------------------------------------------------- /dfsimage/wildparse/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/dfsimage/wildparse/argparse.py -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../readme.rst 2 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/makefile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/readme.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_create_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/tests/test_create_image.py -------------------------------------------------------------------------------- /todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeyman79/dfsimage/HEAD/todo --------------------------------------------------------------------------------