├── .github └── workflows │ └── daily-rebuild.yml ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── dats-site.py ├── img ├── clrmamepro.png └── headers.png ├── no-intro.py ├── redump.py └── smdb.py /.github/workflows/daily-rebuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/.github/workflows/daily-rebuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/README.md -------------------------------------------------------------------------------- /dats-site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/dats-site.py -------------------------------------------------------------------------------- /img/clrmamepro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/img/clrmamepro.png -------------------------------------------------------------------------------- /img/headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/img/headers.png -------------------------------------------------------------------------------- /no-intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/no-intro.py -------------------------------------------------------------------------------- /redump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/redump.py -------------------------------------------------------------------------------- /smdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo19941994/auto-datfile-generator/HEAD/smdb.py --------------------------------------------------------------------------------