Metadata-Version: 1.1
Name: python-iglobal
Version: 0.1
Summary: Python wrapper for the iGlobalStores.com REST API.
Home-page: https://github.com/RidleyLarsen/python-iglobal
Author: Ridley Larsen
Author-email: ridley@iglobalstores.com
License: UNKNOWN
Description: Python iGlobal
        
        # Introduction
        This library provides a python interface for the iGlobalStores API.
        
        
        # Basic Usage
        
        ```python
        	import iglobal
        
        	api = iglobal.Api(store_id="<store_id>", secret_key="<secret_key>")
        
        	# Fetch all iGlobal international Order Numbers
        	orders = api.all_orders()
        
        	# Fetch Order Numbers from certain date
        	orders = api.order_numbers(since_date='20151101')
        
        	# Fetch Order Details of specific order
        	order = api.order_details(order_id='999-99999')
        
        	# Update an Order with a new Merchant Order ID
        	response = api.update_merchant_order_id(order_id="123-1234", merchant_order_id="123456")
        ```
        
        Responses are returned as Python dictionaries decoded from JSON. Non-200 response raises an exception.
        
Keywords: iglobal api
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
