gelbooru 6.0.0+beta copy "gelbooru: ^6.0.0+beta" to clipboard
gelbooru: ^6.0.0+beta copied to clipboard

An Gelboory API client written in Dart and powered by the `http` package !

example/gelbooru_example.dart

import 'package:gelbooru/gelbooru.dart';

Future<void> main() async {
  final client = GelbooruClient(baseUrl: 'https://gelbooru.com');

  final posts = await client.posts.index(
    request: PostIndexRequest(tags: ['blonde', 'anal'], limit: 5),
  );

  for (var p in posts) {
    print(p.fileUrl.toString());
  }
}
2
likes
150
points
28
downloads

Publisher

verified publisherprojetretro.io

Weekly Downloads

An Gelboory API client written in Dart and powered by the `http` package !

Repository

Topics

#gelbooru #api #http #nsfw #art

Documentation

API reference

License

unknown (license)

Dependencies

http, meta, xml

More

Packages that depend on gelbooru