Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 741 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 741 Bytes

identify_dreamcast_games

A module for identifying Sega Dreamcast games with Python 2 & 3

Only works with .cdi, .gdi, and .iso

Does not yet work with .mdf/.mds, .nrg, and .ccd/.img

Example use:

from identify_dreamcast_games import get_dreamcast_game_info

info = get_dreamcast_game_info("E:\Sega\Dreamcast\Power Stone 2\power_stone_2.cdi")
		
print('title', info['title'])
print('disc_info', info['disc_info'])
print('region', info['region'])
print('serial_number', info['serial_number'])
print('version', info['version'])
print('boot', info['boot'])
print('maker', info['maker'])
print('title', info['title'])
print('sloppy_title', info['sloppy_title'])
print('header_index', info['header_index'])