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
- Host: GitHub
- URL: https://github.com/atomotic/iccu
- Owner: atomotic
- Created: 2024-07-19T09:51:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T09:13:25.000Z (over 1 year ago)
- Last Synced: 2025-01-05T02:24:31.459Z (over 1 year ago)
- Topics: iccu, sbn
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```