Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yujinlim/go-bandsintown
bandsintown golang api package
https://github.com/yujinlim/go-bandsintown
Last synced: 2 months ago
JSON representation
bandsintown golang api package
- Host: GitHub
- URL: https://github.com/yujinlim/go-bandsintown
- Owner: yujinlim
- License: mit
- Created: 2015-10-14T11:37:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-20T03:25:27.000Z (over 8 years ago)
- Last Synced: 2024-06-20T16:34:48.138Z (7 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-bandsintown [![GoDoc](https://godoc.org/github.com/yujinlim/go-bandsintown?status.svg)](https://godoc.org/github.com/yujinlim/go-bandsintown) [![Build Status](https://travis-ci.org/yujinlim/go-bandsintown.svg?branch=master)](https://travis-ci.org/yujinlim/go-bandsintown)
> bandsintown golang api package## Usage
```
go get github.com/yujinlim/go-bandsintown
```## Example
```go
package mainimport "github.com/yujinlim/go-bandsintown"
func main() {
client := bands.New("apiKey")artist, err := client.GetArtist("artistName")
events, err := client.GetArtistEvents("artistName")
}
```