2017-06-19 46 views

回答

1

從Python應用程序調用動作需要您向平臺API發送HTTP請求。沒有用於Python的官方OpenWhisk SDK。

示例代碼顯示瞭如何使用requests庫調用平臺API。

import subprocess 
import requests 

APIHOST = 'https://openwhisk.ng.bluemix.net' 
AUTH_KEY = subprocess.check_output("wsk property get --auth", shell=True).split()[2] 
NAMESPACE = 'whisk.system' 
ACTION = 'utils/echo' 
PARAMS = {'myKey':'myValue'}; 
BLOCKING = 'true' 
RESULT = 'true' 

url = APIHOST + '/api/v1/namespaces/' + NAMESPACE + '/actions/' + ACTION 
user_pass = AUTH_KEY.split(':') 
response = requests.post(url, json=PARAMS, params={'blocking': BLOCKING, 'result': RESULT}, auth=(user_pass[0], user_pass[1])) 
print(response.text) 

全API的Swagger文檔可用here

有一個open issue創建一個Python客戶端庫,使這更容易。

相關問題