Ejemplo n.º 1
0
                            },
                        },
                        'value': 'test description english'
                    }, {
                        'attrs': {
                            'id': '2',
                            'href': {
                                'value':
                                'http://localhost:8080/api/languages/1',
                                'xmlns': 'http://www.w3.org/1999/xlink'
                            },
                        },
                        'value': 'test description french'
                    }],
                },
            }
        }
    }

    print dict2xml(x)

    import xml2dict
    from prestapyt import PrestaShopWebService
    prestashop = PrestaShopWebService('http://localhost:8080/api',
                                      'BVWPFFYBT97WKM959D7AVVD0M4815Y1L')

    products_xml = prestashop.get('products', 1)

    products_dict = xml2dict.ET2dict(products_xml)
    pprint(dict2xml(products_dict))