Golang API wrapper for MangaDex v5's MVP API.
Full documentation is found here.
This API is still in Open Beta, so testing may not be complete. However, basic authentication has been tested.
To install, do go get -u github.com/darylhjd/mangodex
.
package main
import (
"fmt"
"github.com/darylhjd/mangodex"
)
func main() {
// Create new client.
// Without logging in, you may not be able to access
// all API functionality.
c := mangodex.NewDexClient()
// Login using your username and password.
err := c.Login("user", "password")
if err != nil {
fmt.Println("Could not login!")
}
}
Rapid changes expected. Any contributions are welcome.