Python API Envialia carrier.
Features
Services
Test connection
List all shipments (by date)
Create/Send shipments to Envialia
Get shipment info (details)
Get shipment state
Delete shipment
Usage Examples
Example API in test.py file
Services
from envialia.utils import services
services()
Test connection
with API(agency, customer, password, debug) as envialia_api:
envialia_api.test_connection()
List all shipments by date
with Picking(agency, customer, password, debug) as picking_api:
date = None # date YYYY/MM/DD
print picking_api.list(date)
Create/Send shipments to Envialia
with Picking(agency, customer, password, debug) as picking_api:
data = {...}
reference = picking_api.create(data)
Get shipment info (details)
with Picking(agency, customer, password, debug) as picking_api:
reference = '123456'
data = {}
data['agency_origin'] = agency
data['agency_cargo'] = agency
picking_api.info(reference, data)
Get shipment state
with Picking(agency, customer, password, debug) as picking_api:
reference = '123456'
data = {}
data['agency_origin'] = agency
data['agency_cargo'] = agency
picking_api.state(reference, data)
Delete shipment
with Picking(agency, customer, password, debug) as picking_api:
reference = '123456'
data = {}
data['agency_origin'] = agency
data['agency_cargo'] = agency
picking_api.delete(reference, data)
Release files for envialia 0.0.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| envialia-0.0.3.tar.gz | 19.4 kB | Details |
Release files / envialia-0.0.3.tar.gz
| Download URL | envialia-0.0.3.tar.gz |
|---|---|
| Size | 19.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
21587e49691f65732a2f5629a4391a1fd4ec492be9b542ea133cf0a8f1d173fa
|
|
BLAKE2b-256 checksum How to use checksums |
e0ae880e8783cbb05e5abd1b8a90cecdbcd45fe1ff2e3782e9fadc22e83b00b4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |