Metadata-Version: 1.1
Name: correos
Version: 0.0.5
Summary: Python API Correos carrier
Home-page: https://www.zikzakmedia.com
Author: Zikzakmedia SL
Author-email: zikzak@zikzakmedia.com
License: GPL-3
Download-URL: https://bitbucket.org/zikzakmedia/python-correos
Description-Content-Type: UNKNOWN
Description: Correos
        =======
        
        Python API Correos carrier.
        
        Features
        --------
        
        - Services
        - Test connection
        - Create/Send shipments to Correos
        - Get label shipment in PDF
        
        Usage Examples
        --------------
        
        Example API in test.py file
        
        Services
        --------
        
        .. code-block:: python
        
            from correos.utils import services
            services()
        
        Test connection
        ---------------
        
        .. code-block:: python
        
            with API(username, password, code, debug) as correos_api:
                print correos_api.test_connection()
        
        Oficinas
        --------
        
        Get Correos offices by zip
        
        .. code-block:: python
        
            with API(username, password, code, debug) as correos_api:
                zip = '08720'
                print correos_api.oficinas(zip)
        
        Create/send shipment to Correos
        -------------------------------
        
        .. code-block:: python
        
            with Picking(username, password, code, debug) as picking_api:
                data = {...}
                reference, label, error = picking_api.create(data)
        
        Get label shipment
        ------------------
        
        .. code-block:: python
        
            with Picking(username, password, code, debug) as picking_api:
                data = {...}
                label = picking_api.label(data)
        
Platform: UNKNOWN
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
