Django Pickit Integration
Project description
django-pickit
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-pickit
or
- From a build
git clone https://gitlab.com/linets/ecommerce/oms/integrations/django-pickit
cd {{project}}
python setup.py sdist
and, install in your project django
pip install {{path}}/django-pickit/dist/{{tar.gz file}}
- Settings in django project
DJANGO_PICKIT = {
'PICKIT': {
'BASE_URL': '<PICKIT_BASE_URL>',
'RUT_USER': '<PICKIT_RUT_USER>',
'PASS_USER': '<PICKIT_PASS_USER>',
'DELIVERY_TYPE': '<PICKIT_DELIVERY_TYPE>',
},
'SENDER': {
'RUT_COMPANY': '<PICKIT_RUT_COMPANY>',
'CTA_CTE_NUMBER': '<PICKIT_CTA_CTE_NUMBER>',
'DV_CTA_CTE_NUMBER': '<PICKIT_DV_CTA_CTE_NUMBER>',
'CENTER_COST_CTA_CTE': '<PICKIT_CENTER_COST_CTA_CTE>',
'DOCUMENT_TYPE': '<PICKIT_DOCUMENT_TYPE>',
'GENERATE_LABEL_DOCUMENT_1': '<PICKIT_GENERATE_LABEL_DOCUMENT_1>',
'TYPE_ORDER_1': '<PICKIT_TYPE_ORDER_1>',
'ORIGEN_CITY': <PICKIT_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 pickit.handler import PickitHandler
handler = PickitHandler()
default_data = handler.get_default_payload(<instance>)
- Create shipping:
from pickit.handler import PickitHandler
handler = PickitHandler()
default_data = handler.create_shipping(<default_data>)
- Get events:
from pickit.handler import PickitHandler
handler = PickitHandler()
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 pickit.handler import PickitHandler
handler = PickitHandler()
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
corona_pickit-0.0.11.tar.gz
(7.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file corona_pickit-0.0.11.tar.gz.
File metadata
- Download URL: corona_pickit-0.0.11.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9485b50986834f3275fcb08d4952c0e71a65d65937b2896e6378ab17f1af33e
|
|
| MD5 |
d4d8fe687edb67cec612f89e276bb0f6
|
|
| BLAKE2b-256 |
af953be203c404363c5deae1af79a3ac027a8829f0ade10091a02e5688fb2e80
|
File details
Details for the file corona_pickit-0.0.11-py3-none-any.whl.
File metadata
- Download URL: corona_pickit-0.0.11-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ec8511afd519cc51271dddbc85504523aef20cffb1b2b0aaa345bad3a2bac5e
|
|
| MD5 |
d802d736f5eda9cc4cba79aed373aff1
|
|
| BLAKE2b-256 |
20204e5c745b85e956b9756a199dd5985a386f10e174fd1188cd552052689143
|