aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/rule34xyz.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:16 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:16 -0500
commit5a7d8217a6edc66e3cf25ca0eee6614a10fa866c (patch)
treea941825bf5fcf706f23b49e536edb9a2b26d5b6c /gallery_dl/extractor/rule34xyz.py
parente8f1b0d968a07cba884462e10718628394d1bae5 (diff)
parenta26df18796ff4e506b16bf32fcec9336233b9e2e (diff)
Update upstream source from tag 'upstream/1.28.5'
Update to upstream version '1.28.5' with Debian dir a2e4b8ba663c03c37256ad2b059b382999e473bc
Diffstat (limited to 'gallery_dl/extractor/rule34xyz.py')
-rw-r--r--gallery_dl/extractor/rule34xyz.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/gallery_dl/extractor/rule34xyz.py b/gallery_dl/extractor/rule34xyz.py
index f1e7518..3b8d344 100644
--- a/gallery_dl/extractor/rule34xyz.py
+++ b/gallery_dl/extractor/rule34xyz.py
@@ -60,18 +60,22 @@ class Rule34xyzExtractor(BooruExtractor):
post.pop("filesPreview", None)
post.pop("tagsWithType", None)
post["date"] = text.parse_datetime(
- post["created"], "%Y-%m-%dT%H:%M:%S.%f")
+ post["created"][:19], "%Y-%m-%dT%H:%M:%S")
def _tags(self, post, _):
if post.get("tagsWithType") is None:
post.update(self._fetch_post(post["id"]))
tags = collections.defaultdict(list)
+ tagslist = []
for tag in post["tagsWithType"]:
- tags[tag["type"]].append(tag["value"])
+ value = tag["value"]
+ tagslist.append(value)
+ tags[tag["type"]].append(value)
types = self.TAG_TYPES
for type, values in tags.items():
post["tags_" + types[type]] = values
+ post["tags"] = tagslist
def _fetch_post(self, post_id):
url = "{}/api/post/{}".format(self.root, post_id)