From 63a46ee0d73786b2e951b471b646ddecd10c78e7 Mon Sep 17 00:00:00 2001 From: JAMES LETTS Date: Wed, 15 Oct 2014 12:32:47 -0700 Subject: [PATCH] new file --- multi-core.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 multi-core.py diff --git a/multi-core.py b/multi-core.py new file mode 100755 index 0000000..2522e9b --- /dev/null +++ b/multi-core.py @@ -0,0 +1,8 @@ +#!/usr/bin/python26 +import json +from pprint import pprint +FILE="data/monitor-multicore-production-2014-10-15-Z15:25.json" +with open(FILE) as json_data: + d = json.load(json_data) + json_data.close() + pprint(d)