- extract data from HTML pages since API is no longer usable - move code into its own separate 'realbooru' module
69 lines
2.8 KiB
Python
69 lines
2.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
from gallery_dl.extractor import realbooru
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://realbooru.com/index.php?page=post&s=list&tags=wine",
|
|
"#category": ("booru", "realbooru", "tag"),
|
|
"#class" : realbooru.RealbooruTagExtractor,
|
|
"#count" : ">= 64",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://realbooru.com/index.php?page=pool&s=show&id=1",
|
|
"#category": ("booru", "realbooru", "pool"),
|
|
"#class" : realbooru.RealbooruPoolExtractor,
|
|
"#urls" : (
|
|
"https://realbooru.com//images/bf/d6/bfd682f338691e5254de796040fcba21.mp4",
|
|
"https://realbooru.com//images/cb/7d/cb7d921673ba99f688031ac554777695.mp4",
|
|
"https://realbooru.com//images/9e/14/9e140edc1cb2e4cc734ba5bdc4870955.mp4",
|
|
),
|
|
},
|
|
|
|
{
|
|
"#url" : "https://realbooru.com/index.php?page=favorites&s=view&id=274",
|
|
"#category": ("booru", "realbooru", "favorite"),
|
|
"#class" : realbooru.RealbooruFavoriteExtractor,
|
|
"#urls" : "https://realbooru.com//images/20/3e/203eefb39f54de049e30ff788a022ac7.jpeg",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://realbooru.com/index.php?page=post&s=view&id=862054",
|
|
"#comment" : "regular post",
|
|
"#category": ("booru", "realbooru", "post"),
|
|
"#class" : realbooru.RealbooruPostExtractor,
|
|
"#options" : {"tags": True},
|
|
"#urls" : "https://realbooru.com//images/8a/34/8a345820da989637c21ac013d522bf69.jpeg",
|
|
"#sha1_content": "f6213e6f25c3cb9e3cfefa6d4b3a78e44b9dea5b",
|
|
|
|
"created_at" : "Jan, 18 2024",
|
|
"date" : "dt:2024-01-18 00:00:00",
|
|
"file_url" : "https://realbooru.com//images/8a/34/8a345820da989637c21ac013d522bf69.jpeg",
|
|
"filename" : "8a345820da989637c21ac013d522bf69",
|
|
"id" : "862054",
|
|
"md5" : "8a345820da989637c21ac013d522bf69",
|
|
"rating" : "e",
|
|
"score" : r"re:\d+",
|
|
"source" : "https://www.instagram.com/p/CwAO1UyJBnw",
|
|
"tags" : "1girl asian bikini black_hair breasts cleavage female female_only floral_print instagram japanese kurita_emi large_breasts looking_at_viewer navel sauna short_hair side-tie_bikini sitting solo",
|
|
"tags_copyright": "instagram",
|
|
"tags_general" : "1girl asian bikini black_hair breasts cleavage female female_only floral_print japanese large_breasts looking_at_viewer navel sauna short_hair side-tie_bikini sitting solo",
|
|
"tags_model" : "kurita_emi",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://realbooru.com/index.php?page=post&s=view&id=568145",
|
|
"#comment" : "older post",
|
|
"#category": ("booru", "realbooru", "post"),
|
|
"#class" : realbooru.RealbooruPostExtractor,
|
|
"#sha1_content": "4a7424810f5f846c161b5d3b7c8b0a85a03368c8",
|
|
},
|
|
|
|
)
|