gelbooru 3.1.3 gelbooru: ^3.1.3 copied to clipboard
A universal package for connectiong ot various gelbooru based imageboards.
A universal package for connectiong ot various gelbooru based imageboards.
Features #
- Tested on the most populars gelbooru's imageboards !
- Mapping to Dart objects from API responses
Getting started #
Run the following command:
$ dart pub add gelbooru
Usage #
import 'package:gelbooru/gelbooru.dart';
void main() async {
var host = Uri.parse('https://gelbooru.com');
final client = GelbooruClient(host);
final posts = await client.posts.index();
for (final post in posts) {
print(post.fileUrl);
}
}
Additional information #
The package isn't conceived to actually detect if the imageboard is Gelbooru based.