Unofficial MangaPlus API Client.
go get github.com/raf555/mangoplus@latest
The simplest usage is as follows.
import "github.com/raf555/mangoplus"
client, err := mangoplus.NewClient()
if err != nil {
// handle error
}
_, err = client.Register(context.Background())
if err != nil {
// handle error
}
manga, err := client.Title.GetTitleDetailV3(context.Background(), 100185)
if err != nil {
// handle error
}See CONTRIBUTING.md.
Warning
this package is an unofficial API wrapper for the MangaPlus android application and is not affiliated with, endorsed by, or sponsored by Shueisha or MangaPlus. "MangaPlus" and all related content are trademarks of their respective owners. The API is undocumented and may change or break at any time. Use of this package may be subject to MangaPlus's Terms of Service; users are responsible for ensuring their use complies with applicable terms and laws.