Go to file
resteve 17eea8261f Initial commit 2014-03-12 17:46:38 +01:00
doc Initial commit 2014-03-12 17:46:38 +01:00
seurvalencia Initial commit 2014-03-12 17:46:38 +01:00
CHANGELOG Initial commit 2014-03-12 17:46:38 +01:00
COPYRIGHT Initial commit 2014-03-12 17:46:38 +01:00
INSTALL Initial commit 2014-03-12 17:46:38 +01:00
LICENSE Initial commit 2014-03-12 17:46:38 +01:00
MANIFEST.in Initial commit 2014-03-12 17:46:38 +01:00
README Initial commit 2014-03-12 17:46:38 +01:00
setup.py Initial commit 2014-03-12 17:46:38 +01:00
test.py Initial commit 2014-03-12 17:46:38 +01:00

README

Seur Valencia
=============

Python API Seur Valencia carrier, Spain.

Seur Valencia use API methods not equal than Seur (general).

Features
--------

- Test connection
- Get cities by zio
- Create/Send shipments to Seur Valencia
- Get today deliveries (shipments) in PDF

Usage Examples
--------------

Example API in test.py file

Test connection
---------------

.. code-block:: python

    with API(username, password, debug) as seurvalencia_api:
        print seurvalencia_api.test_connection()

Create/send shipment to Seur Valencia
-------------------------------------

.. code-block:: python

    with API(username, password, debug) as seurvalencia_api:
        print seurvalencia_api.get_city('08720')

Create/send shipment to Seur Valencia
-------------------------------------

.. code-block:: python

    with Picking(username, password, debug) as picking_api:
        data = {...}
        reference, label, error = picking_api.create(data)

Get today deliveries (shipments) in PDF
---------------------------------------

.. code-block:: python

    with Picking(username, password, debug) as picking_api:
        pdf = picking_api.info()