Metadata-Version: 1.1
Name: tipsa-api-python
Version: 0.1.6
Summary: Create packages to send using TIPSA API.
Home-page: https://bitbucket.org/abalt/tipsa-api-python
Author: Abalt
Author-email: admin@abalt.org
License: Copyright (c) 2011, Tangent Communications PLC and individual contributors.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    3. Neither the name of Tangent Communications PLC nor the names of its contributors
	   may be used to endorse or promote products derived from this software without
       specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Download-URL: https://bitbucket.org/abalt/tipsa-api-python/get/0.1.6.zip
Description: =========
        Tipsa API
        =========
        
        This package create packages to send using TIPSA API.
        
        License
        -------
        
        The package is released under the New BSD license.
        
        Example of use
        --------------
        
        .. code-block:: python
        
            from tipsa import api
        
            tipsa_api = api.TipsaAPI('agency_code', 'client_code', 'client_password')
        
            tipsa_api.login() # Web service login
        
            result = tipsa_api.create({
                'service_code': 'service_code',
                'destination_name': 'destination_name',
                'destination_address': 'destination_address',
                'destination_postal_code': 'destination_postal_code',
                'destination_city': 'destination_city'
            }) # Create a shipping
        
            print result['albaran']
            print result['guid']
            print result['url'] # Url to check status
Keywords: TIPSA,Shipping
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Other/Nonlisted Topic
