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

https://github.com/atomotic/iccu

A Go client for ICCU API
https://github.com/atomotic/iccu

iccu sbn

Last synced: over 1 year ago
JSON representation

A Go client for ICCU API

Awesome Lists containing this project

README

          

# A Go client for ICCU API

https://api.iccu.sbn.it/devportal/apis

_Work in progress, do not use._

Example usage:

```
package main

import (
"fmt"

"github.com/atomotic/iccu/client"
"github.com/atomotic/iccu/nomi"
)

func main() {

client.New("$key", "$secret")

names := nomi.Search("alei* crowley")

for _, name := range names.Docs {
fmt.Printf("%s - %s - %s\n", name.ID, name.Bid(), name.Name())
}

}
```

```
IT\ICCU\CFIV\025223 - http://id.sbn.it/bid/CFIV025223 - Crowley, Aleister
```