Skip to main content

Django Enviame Integration

Project description

django-enviame

Starting

These instructions will allow you to install the library in your python project.

Current features

  • Create shipment.
  • Get tracking info.

Pre-requisitos

  • Python >= 3.7
  • Django >= 3
  • requests >= 2

Installation

  1. To get the latest stable release from PyPi:
pip install django-enviame

or

  1. From a build
git clone https://gitlab.com/linets/ecommerce/oms/integrations/oms-enviame
cd {{project}}
python setup.py sdist

and, install in your project django

pip install {{path}}/django-enviame/dist/{{tar.gz file}}
  1. Settings in django project
DJANGO_ENVIAME = {
    'ENVIAME': {
        'BASE_URL': 'https://stage.api.enviame.io/api/s2/v2/',
        'COMPANY_ID': '620',
        'API_KEY': '7d066821f33647851bffb8802bf81113',
        'COD_BOD': 'cod_bod',
    },
}

Usage

  1. Create shipment:
from enviame.handler import EnviameHandler

handler = EnviameHandler()

default_data = handler.get_default_payload(instance)
default_data["carrier"]["carrier_code"] = "BLX" # eg. (Optional)
response = handler.send_data(default_data)
  1. Get tracking info:
from enviame.handler import EnviameHandler

handler = EnviameHandler()

tracking_info = handler.get_tracking(<identifier>)

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-enviame-1.0.2.tar.gz (5.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page