├── .travis.yml ├── CREDITS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc └── pymag.rst ├── magento ├── __init__.py ├── api.py ├── catalog.py ├── checkout.py ├── client.py ├── customer.py ├── directory.py ├── miscellaneous.py ├── sales.py ├── utils.py └── version.py └── setup.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/.travis.yml -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/README.rst -------------------------------------------------------------------------------- /doc/pymag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/doc/pymag.rst -------------------------------------------------------------------------------- /magento/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/__init__.py -------------------------------------------------------------------------------- /magento/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/api.py -------------------------------------------------------------------------------- /magento/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/catalog.py -------------------------------------------------------------------------------- /magento/checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/checkout.py -------------------------------------------------------------------------------- /magento/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/client.py -------------------------------------------------------------------------------- /magento/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/customer.py -------------------------------------------------------------------------------- /magento/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/directory.py -------------------------------------------------------------------------------- /magento/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/miscellaneous.py -------------------------------------------------------------------------------- /magento/sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/sales.py -------------------------------------------------------------------------------- /magento/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/utils.py -------------------------------------------------------------------------------- /magento/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/magento/version.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openlabs/magento/HEAD/setup.py --------------------------------------------------------------------------------