Django Starken Integration
Project description
django-starken
Starting
These instructions will allow you to install the library in your python project.
Current features
- Get default payload.
- Create shipping.
Pre-requisitos
- Python >= 3.7
- Django >= 3
- requests >= 2
Installation
- To get the latest stable release from PyPi:
pip install django-starken
or
- From a build
git clone https://gitlab.com/linets/ecommerce/oms/integrations/django-starken
cd {{project}}
python setup.py sdist
and, install in your project django
pip install {{path}}/django-starken/dist/{{tar.gz file}}
- Settings in django project
DJANGO_STARKEN = {
'STARKEN': {
'BASE_URL': '<STARKEN_BASE_URL>',
'RUT_USER': '<STARKEN_RUT_USER>',
'PASS_USER': '<STARKEN_PASS_USER>',
'DELIVERY_TYPE': '<STARKEN_DELIVERY_TYPE>',
},
'SENDER': {
'RUT_COMPANY': '<STARKEN_RUT_COMPANY>',
'CTA_CTE_NUMBER': '<STARKEN_CTA_CTE_NUMBER>',
'DV_CTA_CTE_NUMBER': '<STARKEN_DV_CTA_CTE_NUMBER>',
'CENTER_COST_CTA_CTE': '<STARKEN_CENTER_COST_CTA_CTE>',
'DOCUMENT_TYPE': '<STARKEN_DOCUMENT_TYPE>',
'GENERATE_LABEL_DOCUMENT_1': '<STARKEN_GENERATE_LABEL_DOCUMENT_1>',
'TYPE_ORDER_1': '<STARKEN_TYPE_ORDER_1>',
'ORIGEN_CITY': <STARKEN_ORIGEN_CITY>,
}
}
Usage
-
Create instance to be sent
import json from types import SimpleNamespace dict_ = { 'reference': '99999', 'delivery_date': '2018-12-06 13:00:00', 'created_at': '12/12/21', 'shipping_date': '12/12/21', 'expiration_date': '26/12/21', 'tracking_code': '6075620-1', 'transport_guide_number': '1121632479536-01-1', 'purchase_number': 'CLV0048146676851-1', 'agency_id': '123', 'items': [ { 'code': 'SKU1234', 'name': 'POLOS', 'price': '2500', 'quantity': '2' }, { 'code': 'SKU12345', 'name': 'SHORT', 'price': '1500', 'quantity': '1' } ], 'customer': { 'first_name': 'Marcos', 'last_name': 'Sac', 'full_name': 'Marcos Sac', 'phone': '932932932', 'email': 'test@gmail.com', 'rut': '16936195-9' }, 'address': { 'street': 'ALEJANDRO VENEGAS CADIZ', 'number': '513', 'unit': 'DEPTO 6A', 'full_address': 'ALEJANDRO VENEGAS CADIZ 513 DEPTO 6A' }, 'commune': { 'name': 'Aisen', 'code': '', 'zone_code': '11201', 'zone_post': 'WPA', }, 'location': { 'code': 'MONTANDON', 'name': 'MNN', }, 'region': { 'name': 'Aysén del General Carlos Ibáñez del Campo', 'code': '11', 'iso_code': 'CL-XI', } } instance = json.loads(json.dumps(dict_), object_hook=lambda attr: SimpleNamespace(**attr))
-
Get default payload:
from starken.handler import StarkenHandler
handler = StarkenHandler()
default_data = handler.get_default_payload(<instance>)
- Create shipping:
from starken.handler import StarkenHandler
handler = StarkenHandler()
default_data = handler.create_shipping(<default_data>)
- Get events:
from starken.handler import StarkenHandler
handler = StarkenHandler()
raw_data = {
'tracking_number': 999999,
'status': 'Entregado',
'events': [{
'city': 'Santiago'
'state': 'RM',
'description': 'Llego al almacén',
'date': '12/12/2021'
}]
}
response = handler.get_events(raw_data)
Output:
[{
'city': 'Santiago'
'state': 'RM',
'description': 'Llego al almacén',
'date': '12/12/2021'
}]
- Get status and if "is_delivered":
from starken.handler import StarkenHandler
handler = StarkenHandler()
raw_data = {
'tracking_number': 999999,
'status': 'ENTREGADO',
'events': [{
'city': 'Santiago'
'state': 'RM',
'description': 'Llego al almacén',
'date': '12/12/2021'
}]
}
response = handler.get_status(raw_data)
Output:
('ENTREGADO', True)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-starken-1.0.7.tar.gz
(7.1 kB
view details)
File details
Details for the file django-starken-1.0.7.tar.gz
.
File metadata
- Download URL: django-starken-1.0.7.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 391bddb82f2d6b7f75f3849ff25be918d45c53c04f6172b68f3f1bd47e3d3f4d |
|
MD5 | b38a5337b809744156b93be53b471568 |
|
BLAKE2b-256 | 3e96cc6fa4880524eab57ab6f8c7f557593f7bd700d579bcc4a87fc9c4e93abd |