Skip to content

Instantly share code, notes, and snippets.

View ticoombs's full-sized avatar

Tim Coombs ticoombs

  • 3B181DEE3C4316F8067B30E2BE1016E60899D5F6
View GitHub Profile
#!/env/bin/python
# lines: 1 words: 3 bytes: 24
# md2: e53bfab73600e05e76546bfbc5509b76
# md4: 8ffed6ee507df5b5462c8b1764eab098
# md5: 1ceab1f5b327682c7835e21b96711429
# sha1: df8d27fb77e06e989eade44ce01165689a9ec527
# sha224: 3195d72d2b1b012d1833243fd73270b05c350fed54a9bb9652de0cbe
# sha256: d383bfaff00ccd347dc40276430a0023d088edf3db35f91db4b481eb52718d3d
import hashlib
@ticoombs
ticoombs / btcaudticker.py
Last active October 13, 2017 03:02
[Python] Bitcoin price ticker for Btcmarkets.net
#!/usr/bin/env python3
import requests
import time
import json
uri = "/market/BTC/AUD/tick"
domain = "https://api.btcmarkets.net"
url = domain + uri