jikan 0.0.2 copy "jikan: ^0.0.2" to clipboard
jikan: ^0.0.2 copied to clipboard

Dart wrapper for the Jikan API, the unofficial API for MyAnimeList's website.

example/example.dart

import 'package:jikan/jikan.dart';

void main() async {
  Jikan jikan = Jikan();

  /// Fetches the anime "Sword Art Online: Alicization"
  Anime anime = await jikan.getAnime(id: 36474);
  print(anime.title);

  /// Fetches the schedule for the anime airing this week
  jikan.getSchedule().then((schedule) => print(schedule.monday));
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Dart wrapper for the Jikan API, the unofficial API for MyAnimeList's website.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

http, json_annotation, meta

More

Packages that depend on jikan