realbooru 0.3.0 copy "realbooru: ^0.3.0" to clipboard
realbooru: ^0.3.0 copied to clipboard

A simple http backed scraper to collect Realbooru content, images and videos.

example/realbooru_example.dart

import 'dart:io';

import 'package:realbooru/realbooru.dart';

Future<void> main() async {
  final RealbooruClient client = RealbooruClient(userAgent: 'DemoUserAgent');

  final List<Post> posts = await client.posts.random(
    tags: <String>['blonde', 'anal'],
  );

  for (final Post post in posts) {
    stdout.writeln('Url: ${post.fullImageUrl}');
  }
}
0
likes
150
points
23
downloads

Publisher

verified publisherprojetretro.io

Weekly Downloads

A simple http backed scraper to collect Realbooru content, images and videos.

Repository

Topics

#api #web #nsfw #porn

Documentation

API reference

License

unknown (license)

Dependencies

collection, html, http, meta

More

Packages that depend on realbooru