Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kevinburke/clipper

API for retrieving Clipper Card data (and parsing Clipper Transactions)
https://github.com/kevinburke/clipper

client clipper clippercard csv golang

Last synced: 22 days ago
JSON representation

API for retrieving Clipper Card data (and parsing Clipper Transactions)

Awesome Lists containing this project

README

        

# Clipper API

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

## Usage

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

## 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](https://clipper-csv.appspot.com).

```
make serve
```

## Install

Use "go get" to install the server.

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