Metadata-Version: 1.0
Name: magento
Version: 0.1.1
Summary: Magento E-Commerce Integration
Home-page: http://projects.openlabs.co.in/trac/openlabs_magento
Author: Sharoon Thomas, Openlabs Technologies
Author-email: info@openlabs.co.in
License: GNU Affero General Public License v3
Description: 
            Magento API
        
            :copyright: (c) 2010 by Sharoon Thomas.
            :copyright: (c) 2010 by Openlabs Technologies & Consulting (P) LTD
            :license: AGPLv3, see LICENSE for more details
        
            A simple to use python library to access the magento API and
            covered by a complete test suite based on Nose tests. Also
            includes a nose plugin to do the tests based on a config
            file.
        
            Example usage::
            
                from magento import Customer
                url = 'http://yourmagento.com'
                apiuser = 'apiusername'
                apipass = 'password'
                with Customer(url, apiuser, apipass) as customer_api:
                    customer_api.list()
        
            The implemented methods and APIs are from the Core API of 
            magento documented here: 
            
            http://www.magentocommerce.com/support/magento_core_api
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
