我如何使用 python 代码从 magento 获取网站列表?
How i do fetch list of website from magento using python code?
在这个问题中,使用 python 从 magento 获取网站列表。
在 python 代码中,我使用了 xmlrpc,
我已经尝试过了但是发生了错误我的代码写在下面
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
在这个问题中,使用 python 从 magento 获取网站列表。
在 python 代码中,我使用了 xmlrpc,
我已经尝试过了但是发生了错误我的代码写在下面
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