私はpython関数を持っています。
def v():
response = urllib2.urlopen('https://api.gosquared.com/v2/concurrents?api_key=xxxxx&site_token=xxxx&presenter=old')
data = json.load(response)
print data
そして私はfirebaseを持っています
f = Firebase('https://xxxxx.firebaseio.com/channel/1/status/viewers')
r = f.update({'viewers': 'v()'})
そのキーと値のペアの値を v() 関数からの戻り値にしたい。
「v()」、「v()」、および v() を試してみましたが、役に立ちませんでした。
私は何を正しく理解していませんか?