box-o-sand/mathpractice/json_formatter.py

13 lines
236 B
Python
Raw Normal View History

import json
class JSONFormatter(object):
def format(self, sheet):
return json.dumps(
{
'seed': sheet.seed,
'entries': sheet.entries
},
indent=4
)