Skip to content

workhorsylegacy/identify_playstation2_games

Repository files navigation

identify_playstation2_games

A module for identifying Sony Playstation 2 games with Python 2 & 3

Works with CD ISO, DVD ISO, and Binary files.

Example use:

from identify_playstation2_games import get_playstation2_game_info

info = get_playstation2_game_info("E:\Sony\Playstation2\Armored Core 3\Armored Core 3.iso")
print(info['serial_number'])
print(info['region'])
print(info['disc_type'])
print(info['title'])


# outputs:
# "SLUS-20435"
# "USA"
# "DVD"
# u"Armored Core 3"

About

A module for identifying Sony Playstation 2 games with Python 2 & 3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages