LUXROBO / parcelux

Parcel delivery tracking library for LUXROBO

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parcelux (파시룩스 - Parcel + Lux)

Go Version Build Workflow Status (Github Actions) CodeClimate Maintainability CodeClimate Issues CodeClimate Coverage Github LICENSE Lines of Code

Description

A parcel delivery tracking Go library for LUXROBO, utilizing sweettracker API.

Features

  • Given a tracking number (i.e. 운송장번호), track current status of corresponding parcel.

Installation

go get github.com/luxrobo/parcelux

Usage

import "github.com/luxrobo/parcelux/client"

// Add your own API key from sweet tracker
API_KEY := ""
parceluxClient := client.NewParceluxClient(API_KEY)

// Init your own tracking number (i.e. 운송장번호)
trackNum := ""
trackResp := parceluxClient.trackParcel(trackNum)
fmt.Println("trackResp.Status:", trackResp.Status)

About

Parcel delivery tracking library for LUXROBO

License:MIT License


Languages

Language:Go 100.0%