All Projects → darylhjd → mangodex

darylhjd / mangodex

Licence: MIT license
API wrapper for MangaDex v5 API.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to mangodex

MangadexRecomendations
Finding recommendations between them all. Work in progress.
Stars: ✭ 18 (-48.57%)
Mutual labels:  manga, mangadex
mangadesk
Terminal client for MangaDex 📖
Stars: ✭ 569 (+1525.71%)
Mutual labels:  manga, mangadex
MangaDex.py
An easy to use wrapper for the MangaDexAPIv5 written in Python using Requests.
Stars: ✭ 13 (-62.86%)
Mutual labels:  mangadex, mangadex-api
mangastack
Front-end web client for MangaDex. Previously hosted at https://mangastack.cf/
Stars: ✭ 23 (-34.29%)
Mutual labels:  manga, mangadex
Ichaival
Android client for the LANraragi manga/doujinshi web manager.
Stars: ✭ 89 (+154.29%)
Mutual labels:  manga
MangDL
The most inefficient Manga downloader for PC
Stars: ✭ 40 (+14.29%)
Mutual labels:  manga
Nekome
Nekome is an Android application to manage tracked Anime and Manga lists.
Stars: ✭ 279 (+697.14%)
Mutual labels:  manga
Shigureader
用Chrome或者iPad轻松阅读整理漫画,播放音乐,以及观看视频. All-in-one solution for local doujin/anime/music file.
Stars: ✭ 254 (+625.71%)
Mutual labels:  manga
Renta Downloader
Download manga you rent from http://renta.papy.co.jp/
Stars: ✭ 34 (-2.86%)
Mutual labels:  manga
pynocchio
🚀 A minimalist comic reader
Stars: ✭ 72 (+105.71%)
Mutual labels:  manga
Mal4J
Java wrapper for the official MyAnimeList API
Stars: ✭ 23 (-34.29%)
Mutual labels:  manga
Shukofukurou-iOS
The Ultimate Open Source AniList, Kitsu, and MyAnimeList Tracker for iOS/iPadOS written in Objective-C
Stars: ✭ 29 (-17.14%)
Mutual labels:  manga
tachiyomi-1.x
[WIP] 1.x app rewrite
Stars: ✭ 182 (+420%)
Mutual labels:  manga
mr2tachiyomi
Import your Mangarock favorites to Tachiyomi
Stars: ✭ 48 (+37.14%)
Mutual labels:  manga
MangaViewAndroid
뉴토끼 / 마나토끼 앱
Stars: ✭ 27 (-22.86%)
Mutual labels:  manga
fanga
A manga reader and downloader made with flutter
Stars: ✭ 61 (+74.29%)
Mutual labels:  manga
mangodl
An easy-to-use cli tool for downloading manga
Stars: ✭ 154 (+340%)
Mutual labels:  manga
Discord-Trivia-Bot
TriviaBot: Play trivia in Discord! Powered by discord.js and OpenTDB, with 24 categories and three modes of play.
Stars: ✭ 83 (+137.14%)
Mutual labels:  manga
Bookwalker Downloader
Download manga you rent from https://bookwalker.jp/
Stars: ✭ 26 (-25.71%)
Mutual labels:  manga
LANraragi cn
This repo is a fork of Difegue / LANraragi , those things i've done was to translate this repo into chinese ,and fix chrome browser js problem.
Stars: ✭ 147 (+320%)
Mutual labels:  manga

mangodex

Go Reference

Golang API wrapper for MangaDex v5's MVP API.

Full API documentation is found here.

This branch contains only essential services, such as Manga searching and image downloading.

Installation

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

Usage

package main

import (
	"fmt"
	
	m "github.com/darylhjd/mangodex@simple"
)

func main() {
	// Create new client.
	// Without logging in, you may not be able to access 
	// all API functionality.
	c := m.NewDexClient()

	// Login using your username and password.
	err := c.Auth.Login("user", "password")
	if err != nil {
		fmt.Println("Could not login!")
	}
}

Contributing

Any contributions are welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].