Skip to content

Instantly share code, notes, and snippets.

@cdhowie
Created March 31, 2014 17:13
Show Gist options
  • Save cdhowie/1eb0ec1c1765f9528897 to your computer and use it in GitHub Desktop.
Save cdhowie/1eb0ec1c1765f9528897 to your computer and use it in GitHub Desktop.
import json
import sys
txns = json.load(sys.stdin)
for txn in (_ for _ in txns if abs(_[u'amount']) >= 70000):
print txn[u'txid']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment