Skip to content

Golang API wrapper for MangaDex v5's MVP API.

License

Notifications You must be signed in to change notification settings

danieloliveira085/mangodex

 
 

Repository files navigation

mangodex

Go Reference

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.

Installation

To install, do go get -u github.com/darylhjd/mangodex.

Usage

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!")
	}
}

Contributing

Rapid changes expected. Any contributions are welcome.

About

Golang API wrapper for MangaDex v5's MVP API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%