summaryrefslogtreecommitdiffstats
path: root/btc/mtgox/json_ticker_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'btc/mtgox/json_ticker_helper.py')
-rwxr-xr-xbtc/mtgox/json_ticker_helper.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/btc/mtgox/json_ticker_helper.py b/btc/mtgox/json_ticker_helper.py
deleted file mode 100755
index 727dd594..00000000
--- a/btc/mtgox/json_ticker_helper.py
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/bin/python
-
-import json,sys
-
-result = json.load(sys.stdin)
-
-print "High: " + str(result["ticker"]["high"]) + " Low: " + str(result["ticker"]["low"]) + " Last: " + str(result["ticker"]["last"])