def dumps(obj): if isinstance(obj, Iterator): obj = list(obj) return json.dumps(obj, sort_keys=True, indent=4, ensure_ascii=False)