def api_status(): try: status.get() except KeyError: return json_response({ 'coffee': {'status': 'unknown'} }) return json_response({ 'coffee': status.to_dict() })
def api_stats(): return json_response({ 'stats': status.get_stats() })