You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import danbooru
|
|
|
|
var db = newDanbooru()
|
|
echo(db.endpoint)
|
|
var mai_waifu = db.searchPosts("makise_kurisu", random = true)
|
|
mai_waifu = mai_waifu.filterTags("1girl -1boy -2girl -futanari -sex_toy -cosplay -tattoo")
|
|
for post in mai_waifu:
|
|
echo(post.file_url)
|
|
|