0
在這個問題中使用python從magento獲取網站列表。
在Python代碼我已經使用XML-RPC,
我已經嘗試這一點,但錯誤是發生我的代碼下面寫
我如何使用python代碼從magento獲取網站列表?
result1=api.call('ol_websites.info',[1,])
print result1
如何我這樣做,任何人都可以幫我解決這個問題呢?
在這個問題中使用python從magento獲取網站列表。
在Python代碼我已經使用XML-RPC,
我已經嘗試這一點,但錯誤是發生我的代碼下面寫
我如何使用python代碼從magento獲取網站列表?
result1=api.call('ol_websites.info',[1,])
print result1
如何我這樣做,任何人都可以幫我解決這個問題呢?
from magento.api import API
with API('url of magento instance',
'username',
'password') as api:
websites = api.call('ol_websites.list', [])
print "websites :",websites