sauce is a Python parser for SAUCE (Standard Architecture for Universal Comment Extensions) invented by Rad Man and Tasmaniac from ACid.
SAUCE is a block of metadata which can be appended to some art works made by the scene.
Usage
Load the interface:
>>> from sauce import SAUCE
Extract metadata of an ANSI file:
>>> piece = SAUCE('artwork.ans')
>>> print piece.group
'ACiD'
Modify metadata of an ANSI file:
>>> import datetime
>>> piece = SAUCE('artwork.ans')
>>> piece.date = datetime.datetime.now()
>>> piece.write('artwork.new')
Product's homepage
Requirements:
· Python