Django Moova Integration
Project description
django-moova
Starting
These instructions will allow you to install the library in your python project.
Current features
- Create shipment.
- Get tracking info.
- Get shipping label.
Pre-requisitos
- Python >= 3.7
- Django >= 3
- requests >= 2
Installation
- To get the latest stable release from PyPi:
pip install corona-moova
or
- From a build
git clone git@gitlab.com:linets-projects/python-libraries/django-moova.git
cd {{project}}
python setup.py sdist
and, install in your project django
pip install {{path}}/django-moova/dist/{{tar.gz file}}
- Settings in django project
DJANGO_MOOVA = {
'MOOVA': {
'BASE_URL': '<MOOVA_BASE_URL>',
'SECRET': '<MOOVA_SECRET_TOKEN>',
'KEY': '<MOOVA_SECRET_KEY>',
'CURRENCY': 'CLP',
'TYPE': 'regular',
'FLOW': 'manual',
},
'REMITENTE': {
'ADDRESS': '<ADDRESS>',
'COUNTRY': 'CHL',
'INSTRUCTIONS': 'Call before delivery',
'FIRST_NAME': '<FIRST_NAME>',
'LAST_NAME': '<LAST_NAME>',
'EMAIL': '<EMAIL>',
'PHONE': '<PHONE>',
},
}
Usage
- Create shipment:
from moova.handler import MoovaHandler
handler = MoovaHandler()
default_data = handler.get_default_payload(instance)
default_data["currency"] = "CLP" # eg. (Optional)
response = handler.create_shipping(default_data)
- Get tracking info:
from moova.handler import MoovaHandler
handler = MoovaHandler()
tracking_info = handler.get_tracking(<identifier>)
- Get shipping label:
from moova.handler import MoovaHandler
handler = MoovaHandler()
label_info = handler.get_shipping_label(<shipping_id>)
Output:
'https://moova-user-data-test.s3.amazonaws.com/etiqueta-10x15.pdf'
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
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_logistica_moova-1.0.9.tar.gz.
File metadata
- Download URL: corona_logistica_moova-1.0.9.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
029d7e4334f4c476d0d297efbc0ee34773c7c5d4ea9b7063025c3dbbcba8fa76
|
|
| MD5 |
10783dfe3bf20df5a5337e47e72e6cec
|
|
| BLAKE2b-256 |
fa914e927b4ca1142f0f387c2e6b9ca51d429a89f59dc6cde6d56a4f9a9f1cce
|
File details
Details for the file corona_logistica_moova-1.0.9-py3-none-any.whl.
File metadata
- Download URL: corona_logistica_moova-1.0.9-py3-none-any.whl
- Upload date:
- Size: 7.2 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 |
f6d6244fb812b0d3171ec97aedbf2142eba7c864839d9ac08808338a256eeac9
|
|
| MD5 |
1b7b2be1aeedc4c47e61415f12b0e429
|
|
| BLAKE2b-256 |
5a559c842ca09ac6d2bae20675eaca223ed8d736aab16f2eabdd4735f7c81f83
|