├── .github └── workflows │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── README.md ├── brunnhilde.py ├── requirements └── test.txt ├── setup.py ├── test-data ├── diskimages │ └── sample-floppy-fat.dd └── files │ ├── TW 11 May 2016.pdf │ ├── description.xlsx │ ├── kaypro.jpg │ └── spn_logo-01.png └── test.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | brunnhilde.egg-info/ 2 | dist/ 3 | .tox/ 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/README.md -------------------------------------------------------------------------------- /brunnhilde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/brunnhilde.py -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- 1 | flake8 2 | pytest 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/setup.py -------------------------------------------------------------------------------- /test-data/diskimages/sample-floppy-fat.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/test-data/diskimages/sample-floppy-fat.dd -------------------------------------------------------------------------------- /test-data/files/TW 11 May 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/test-data/files/TW 11 May 2016.pdf -------------------------------------------------------------------------------- /test-data/files/description.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/test-data/files/description.xlsx -------------------------------------------------------------------------------- /test-data/files/kaypro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/test-data/files/kaypro.jpg -------------------------------------------------------------------------------- /test-data/files/spn_logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/test-data/files/spn_logo-01.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw4l/brunnhilde/HEAD/test.py --------------------------------------------------------------------------------