├── .flake8 ├── .github ├── dependabot.yml ├── semantic.yml └── workflows │ ├── _codeql.yml │ ├── _common-lint.yml │ └── update-db.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── gh-pages-template ├── assets │ ├── img │ │ └── no-logo.png │ └── js │ │ └── item_loader.js └── index.html ├── requirements-dev.txt ├── requirements.txt └── src ├── __init__.py ├── platforms.py └── update_db.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/_codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.github/workflows/_codeql.yml -------------------------------------------------------------------------------- /.github/workflows/_common-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.github/workflows/_common-lint.yml -------------------------------------------------------------------------------- /.github/workflows/update-db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.github/workflows/update-db.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/README.md -------------------------------------------------------------------------------- /gh-pages-template/assets/img/no-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/gh-pages-template/assets/img/no-logo.png -------------------------------------------------------------------------------- /gh-pages-template/assets/js/item_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/gh-pages-template/assets/js/item_loader.js -------------------------------------------------------------------------------- /gh-pages-template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/gh-pages-template/index.html -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | flake8==7.3.0 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/src/platforms.py -------------------------------------------------------------------------------- /src/update_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LizardByte/GameDB/HEAD/src/update_db.py --------------------------------------------------------------------------------