https://github.com/aldidana/go-igdb
WIP. Golang Wrapper for IGDB.com v2 API
https://github.com/aldidana/go-igdb
igdb mashape-kong
Last synced: 4 months ago
JSON representation
WIP. Golang Wrapper for IGDB.com v2 API
- Host: GitHub
- URL: https://github.com/aldidana/go-igdb
- Owner: aldidana
- License: mit
- Created: 2016-10-09T12:59:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-09T13:03:26.000Z (over 9 years ago)
- Last Synced: 2025-03-01T16:11:19.696Z (over 1 year ago)
- Topics: igdb, mashape-kong
- Language: Go
- Homepage: https://market.mashape.com/igdbcom/internet-game-database
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-igdb #
-
**WIP**. Golang Wrapper for [IGDB.com](https://www.igdb.com) v2 API.
Read more: https://market.mashape.com/igdbcom/internet-game-database
###Usage
```go
import "github.com/aldidana/go-igdb/igdb"
```
Construct a new IGDB client, then use the various services on the client to access IGDB API. For example:
```go
client := igdb.NewClient(os.Getenv("igdbKey"))
companies, _ := client.GetCompanies("name", 1, 0)
genres, _ := client.GetGenres("*", 10)
```