Coder Social home page Coder Social logo

trackr's Introduction

trackr

image

image

Documentation Status

Updates

trackr is a lightweight Python lib to access carriers' tracking information.

Installation

pip install trackr

Works with Python 2.7, 3.5 and 3.6.

Usage

from trackr import Trackr

package = Trackr.track('ect', 'PN871429404BR')

for t in package.tracking_info:
    print t.location, t.status

Or also using Trackr cli:

$ trackr --carrier=ect --object-id=PN871429404BR

Available carriers

  • ect (brazilian "Correios")
  • fake (for testing purposes)

ECT

Data is retrieved from Correios using its SOAP webservice. For that you'll need an username and password. Get in touch with your ECT representative to gain acess.

The easiest way to provide the credentials is exporting as env variable:

export TRACKR_ECT_USERNAME=**
export TRACKR_ECT_PASSWORD=**

You can also pass a function keyword args:

package = Trackr.track('ect', 'PN871429404BR', ect_username='**', ect_password='**')

Warning

The default username and password provided by Correios for integration purposes (username ECT, password`SRO`) will not allow bulk tracking.

Fake

Fake carrier is meant to be used when testing and developing integrations. It will always return as package found with 4 tracking info rows. Example

$ trackr --carrier=fake --object-id=123456789
Package found!
2017-04-23 15:12:23.521052 - City 1 - In transit 1
2017-04-23 15:12:23.521075 - City 2 - In transit 2
2017-04-23 15:12:23.521081 - City 3 - In transit 3
2017-04-23 15:12:23.521086 - City 4 - In transit 4

Integrating a new carrier

To add a new carrier, inherit carriers.base.BaseCarrier and fillout _track_single() and/or _track_bulk() methods, it must return one instance or a list of carriers.base.Package instance. See an example below:

from datetime import datetime
from .base import BaseCarrier


class MyOwnCarrier(BaseCarrier):
    id = 'mycarrier'
    name = 'My Carrier'

    def _track_single(self, object_id):

        # ... fetch data from carrier's data source

        package = self.create_package(
            object_id=object_id,
            service_name='Express service',
        )

        package.add_tracking_info(
            date=datetime(2017, 1, 1, 10, 00),
            location='Last Location',
            status='In transit to another location'
            description='Get ready!',
        )

        package.add_tracking_info(
            date=datetime.now(),
            location='Current Location',
            status='Delivered'
            description='Finally',
        )


        return package

Then update the carrier mapping on trackr/carriers/__init__.py (this should be improved with some autodiscover feature). Remember to write tests!

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

trackr's People

Contributors

dependabot[bot] avatar jairhenrique avatar renatogp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

luizrabachini

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.