Metadata-Version: 1.1
Name: whiplash
Version: 0.1.0
Summary: Python API Client for the whiplash API
Home-page: https://github.com/fulfilio/whiplash
Author: Fulfil.IO Inc.
Author-email: hello@fulfil.io
License: BSD
Description: ===============================
        Whiplash API Python Client
        ===============================
        
        .. image:: https://img.shields.io/travis/fulfilio/whiplash.svg
                :target: https://travis-ci.org/fulfilio/whiplash
        
        .. image:: https://img.shields.io/pypi/v/whiplash.svg
                :target: https://pypi.python.org/pypi/whiplash
        
        
        Python API Client for the whiplash API
        
        * Free software: ISC license
        * Documentation: https://whiplash.readthedocs.org.
        
        Features
        --------
        
        * Add Items
        * Manage Orders
        * Manage Ship Notices
        
        Installation
        ------------
        
        ::
        
            pip install whiplash
        
        
        Example
        -------
        
        Create a new Item::
        
        
            from whiplash import Whiplash
        
            # Not for production
            whiplash = Whiplash('Hc2BHTn3bcrwyPooyYTP', test=True)
        
            product1 = whiplash.item.create(
                title='Apple iPhone 5',
                sku='A1429',
                group_id='iPhone 5',
            )
            print product1.title
            print product1.id
            print product1.currency
        
        
        
        
        History
        -------
        
        0.1.0 (2015-01-11)
        ---------------------
        
        * First release on PyPI.
        
Keywords: whiplash
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
