32 lines
1.3 KiB
Python
32 lines
1.3 KiB
Python
# -*- coding: utf8 -*-
|
|
|
|
# libray - Libre Blu-Ray PS3 ISO Tool
|
|
# Copyright © 2018 - 2021 Nichlas Severinsen
|
|
#
|
|
# This file is part of libray.
|
|
#
|
|
# libray is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# libray is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with libray. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# This is a script to find the redump names and game serial id's using rpcs3's compatibility list.
|
|
# It puts the name, serial id, and some other info into an sqlite3 database.
|
|
# That database can then be used to harcode serial id to keys into keys.db.
|
|
# This script is not included in the release of libray.
|
|
|
|
import pkgutil
|
|
|
|
__all__ = []
|
|
for loader, module_name, is_pkg in pkgutil.walk_packages(__path__):
|
|
__all__.append(module_name)
|
|
_module = loader.find_module(module_name).load_module(module_name)
|
|
globals()[module_name] = _module
|