Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joeychilson/osrsapi
A library for interacting with the Old School Runescape API.
https://github.com/joeychilson/osrsapi
api client go osrs runescape
Last synced: about 24 hours ago
JSON representation
A library for interacting with the Old School Runescape API.
- Host: GitHub
- URL: https://github.com/joeychilson/osrsapi
- Owner: joeychilson
- License: mit
- Created: 2024-07-08T11:42:16.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T15:20:05.000Z (4 months ago)
- Last Synced: 2024-09-20T06:42:03.365Z (about 2 months ago)
- Topics: api, client, go, osrs, runescape
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# osrsapi
A library for interacting with the Old School Runescape API.
## Usage
```go
package mainimport (
"context"
"fmt""github.com/joeychilson/osrsapi"
)func main() {
client := osrsapi.NewClient()item, err := client.Item(context.Background(), 4151)
if err != nil {
panic(err)
}fmt.Println(item)
}
```