mangadex_api 1.0.0-dev.1 copy "mangadex_api: ^1.0.0-dev.1" to clipboard
mangadex_api: ^1.0.0-dev.1 copied to clipboard

discontinued
outdated

API wrapper for the MangaDex API

A MangaDex API wrapper for Dart

Usage #

A simple usage example:

import 'package:mangadex_api/mangadex_api.dart';

main() {
  var client = MDClient();

  client.getChapter('5e8bc984-5f3f-4fb1-b6ee-cf7f3812b112').then((chapter) {
    print(chapter!.title);
  });

  client.getMangaInfo('a96676e5-8ae2-425e-b549-7f15dd34a6d8',
      appendChapters: true, translatedLang: ['cs']).then((m) {
    print(m!.title['en']);
  });
}

Currently if you login, all requests will be done with your token.

What's implemented #

  • Log-in
  • Get Chapters
  • Get Manga
  • Get cover
  • Manga search

What's NOT yet implemented #

  • Captcha
  • Get user
  • Get group

Features and bugs #

Please file feature requests and bugs at the issue tracker.