-
Notifications
You must be signed in to change notification settings - Fork 0
jacobcui/magentouch
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Following python code shows you how to inititialize the Magentouch instance and then call an Magento SOUPv2 api Further api reference can be found here http://www.magentocommerce.com/api/soap/introduction.html from magentouch import Magentouch from magentouch.utils import recursive_asdict # e.g. url='http://shop.digirocks.com.au/api/v2_soap?wsdl=1' url='' username='' password='' mgt = Magentouch(url=url, username=username, password=password) suds_ret = mgt.service.catalogCategoryTree(mgt.session) categories = recursive_asdict(suds_ret)['children'] for c in categories: print c
About
A python library to call Magento api though Suds
Resources
Stars
Watchers
Forks
Packages 0
No packages published