summaryrefslogtreecommitdiffstats
path: root/gold/mtgox/json_ticker_helper.py
diff options
context:
space:
mode:
authortv <tv@xso>2011-08-24 16:45:00 +0200
committertv <tv@xso>2011-08-24 16:45:00 +0200
commitc37ab9c4accc58919e87ad4eee1ef19f49eed873 (patch)
treee640c348718e2a72770ce47d03e4549b6fbce80f /gold/mtgox/json_ticker_helper.py
parente7a148349ef3e1e4e1607fd29148bec51dc4ed82 (diff)
{btc -> gold} SC & co., we're ready
Diffstat (limited to 'gold/mtgox/json_ticker_helper.py')
-rwxr-xr-xgold/mtgox/json_ticker_helper.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gold/mtgox/json_ticker_helper.py b/gold/mtgox/json_ticker_helper.py
new file mode 100755
index 00000000..727dd594
--- /dev/null
+++ b/gold/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"])