# -*- 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 fanbox __tests__ = ( { "#url" : "https://xub.fanbox.cc", "#category": ("", "fanbox", "creator"), "#class" : fanbox.FanboxCreatorExtractor, "#range" : "1-15", "#count" : ">= 15", "creatorId": "xub", "tags" : list, "title" : str, }, { "#url" : "https://xub.fanbox.cc/posts", "#category": ("", "fanbox", "creator"), "#class" : fanbox.FanboxCreatorExtractor, }, { "#url" : "https://www.fanbox.cc/@xub/", "#category": ("", "fanbox", "creator"), "#class" : fanbox.FanboxCreatorExtractor, }, { "#url" : "https://www.fanbox.cc/@xub/posts", "#category": ("", "fanbox", "creator"), "#class" : fanbox.FanboxCreatorExtractor, }, { "#url" : "https://www.fanbox.cc/@xub/posts/1910054", "#category": ("", "fanbox", "post"), "#class" : fanbox.FanboxPostExtractor, "#count" : 3, "title" : "えま★おうがすと", "tags" : list, "hasAdultContent": True, "isCoverImage" : False, }, { "#url" : "https://nekoworks.fanbox.cc/posts/915", "#comment" : "entry post type, image embedded in html of the post", "#category": ("", "fanbox", "post"), "#class" : fanbox.FanboxPostExtractor, "#count" : 2, "title" : "【SAYORI FAN CLUB】お届け内容", "tags" : list, "html" : str, "hasAdultContent": True, }, { "#url" : "https://steelwire.fanbox.cc/posts/285502", "#comment" : "article post type, imageMap, 2 twitter embeds, fanbox embed", "#category": ("", "fanbox", "post"), "#class" : fanbox.FanboxPostExtractor, "#options" : {"embeds": True}, "#count" : 8, "title" : "イラスト+SS|【全体公開版】義足の探鉱夫男子が義足を見せてくれるだけ ", "tags" : list, "articleBody" : dict, "hasAdultContent": True, }, { "#url" : "https://www.fanbox.cc/@official-en/posts/4326303", "#comment" : "'content' metadata (#3020)", "#category": ("", "fanbox", "post"), "#class" : fanbox.FanboxPostExtractor, "content": r"re:(?s)^Greetings from FANBOX.\n \nAs of Monday, September 5th, 2022, we are happy to announce the start of the FANBOX hashtag event #MySetupTour ! \nAbout the event\nTo join this event .+ \nPlease check this page for further details regarding the Privacy & Terms.\nhttps://fanbox.pixiv.help/.+/10184952456601\n\n\nThank you for your continued support of FANBOX.$", }, { "#url" : "https://official-en.fanbox.cc/posts/7022572", "#comment" : "'plan' and 'user' metadata (#4921)", "#category": ("", "fanbox", "post"), "#class" : fanbox.FanboxPostExtractor, "#options" : {"metadata": True}, "plan": { "coverImageUrl" : "", "creatorId" : "official-en", "description" : "", "fee" : 0, "hasAdultContent": None, "id" : "", "paymentMethod" : None, "title" : "", }, "user": { "coverImageUrl" : "https://pixiv.pximg.net/c/1620x580_90_a2_g5/fanbox/public/images/creator/74349833/cover/n9mX8q4tUXHXXj7sK1RPWyUu.jpeg", "creatorId" : "official-en", "description" : "This is the official English pixivFANBOX account! \n(official Japanese account: https://official.fanbox.cc/ )\n\npixivFANBOX is a subscription service for building a reliable fan community where creators can nurture creative lifestyles together with their fans.\nFollowers can be notified of the updates from their favorite creators they are following. Supporters can enjoy closer communication with creators through exclusive content and their latest information.\n", "hasAdultContent" : False, "hasBoothShop" : False, "iconUrl" : "https://pixiv.pximg.net/c/160x160_90_a2_g5/fanbox/public/images/user/74349833/icon/oJH0OoGoSixLrJXlnneNvC95.jpeg", "isAcceptingRequest": False, "isFollowed" : False, "isStopped" : False, "isSupported" : False, "name" : "pixivFANBOX English", "profileItems" : [], "profileLinks" : [ "https://twitter.com/pixivfanbox", ], "userId" : "74349833", }, }, { "#url" : "https://saki9184.fanbox.cc/posts/7754760", "#comment" : "missing plan for exact 'feeRequired' value (#5759)", "#category": ("", "fanbox", "post"), "#class" : fanbox.FanboxPostExtractor, "#options" : {"metadata": "plan"}, "feeRequired": 300, "plan" : { "creatorId": "saki9184", "fee" : 350, "id" : "414274", "title" : "涼宮ハルヒの憂鬱", }, }, { "#url" : "https://mochirong.fanbox.cc/posts/3746116", "#comment" : "imageMap file order (#2718)", "#category": ("", "fanbox", "post"), "#class" : fanbox.FanboxPostExtractor, "#sha1_url": "c92ddd06f2efc4a5fe30ec67e21544f79a5c4062", }, { "#url" : "https://fanbox.cc/", "#category": ("", "fanbox", "home"), "#class" : fanbox.FanboxHomeExtractor, "#auth" : True, "#range" : "1-10", "#count" : 10, }, { "#url" : "https://fanbox.cc/home/supporting", "#category": ("", "fanbox", "supporting"), "#class" : fanbox.FanboxSupportingExtractor, "#auth" : True, "#count" : 0, }, { "#url" : "https://www.pixiv.net/fanbox/creator/52336352", "#category": ("", "fanbox", "redirect"), "#class" : fanbox.FanboxRedirectExtractor, "#pattern" : fanbox.FanboxCreatorExtractor.pattern, }, )