import json
# sudo pip install request
import requests
res_shadows = requests.get(backendUrl + '/api/1.0/signals/shadows', headers=headers)
# checking the response
if res_shadows.ok:
print "OK"
print res_shadows.text
else:
print "Error: " + res_shadows.text
Permalink
Cannot retrieve contributors at this time