项目作者: kevinburke

项目描述 :
API for retrieving Clipper Card data (and parsing Clipper Transactions)
高级语言: Go
项目地址: git://github.com/kevinburke/clipper.git
创建时间: 2018-02-12T08:01:20Z
项目社区:https://github.com/kevinburke/clipper

开源协议:

下载


Clipper API

Use this tool to download data about your Cards, as well as transaction history
for each card.

Usage

  1. client := clipper.NewClient("email", "password")
  2. // You can only access this page twice per day, per Clipper.
  3. transactions := client.Transactions(context.TODO())
  4. for card := range transactions {
  5. fmt.Println("nickname:", card.Nickname)
  6. fmt.Printf("txns: %#v\n", transactions[card].Transactions
  7. }

PDF-to-CSV

You can run a server that converts PDF’s to CSV files; it’s the one that runs at
clipper-csv.appspot.com.

  1. make serve

Install

Use “go get” to install the server.

  1. go get github.com/kevinburke/clipper/...