summaryrefslogtreecommitdiffstats
path: root/btc/mtgox/json_ticker_helper.py
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-08-22 01:35:55 +0200
committermakefu <github@syntax-fehler.de>2011-08-22 01:35:55 +0200
commit5e102279a72d77305d84f3cab9aef464a76ecb68 (patch)
treef5cdb07de14ba80f08bffe7b7daae4c70a1d34bd /btc/mtgox/json_ticker_helper.py
parentcd2e7afcab18480fa8f21874a3eb529f0d070780 (diff)
mtgox: add ticker text script
Diffstat (limited to 'btc/mtgox/json_ticker_helper.py')
-rwxr-xr-xbtc/mtgox/json_ticker_helper.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/btc/mtgox/json_ticker_helper.py b/btc/mtgox/json_ticker_helper.py
new file mode 100755
index 00000000..727dd594
--- /dev/null
+++ b/btc/mtgox/json_ticker_helper.py
@@ -0,0 +1,7 @@
+#!/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"])