mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
[vk] initial support for albums (#474)
This commit is contained in:
parent
0e601de67b
commit
62cfee4d28
@ -685,6 +685,12 @@ Consider all sites to be NSFW unless otherwise known.
|
|||||||
<td>individual Images</td>
|
<td>individual Images</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>VK</td>
|
||||||
|
<td>https://vk.com/</td>
|
||||||
|
<td>Albums</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>VSCO</td>
|
<td>VSCO</td>
|
||||||
<td>https://vsco.co/</td>
|
<td>https://vsco.co/</td>
|
||||||
|
@ -115,6 +115,7 @@ modules = [
|
|||||||
"twitter",
|
"twitter",
|
||||||
"unsplash",
|
"unsplash",
|
||||||
"vanillarock",
|
"vanillarock",
|
||||||
|
"vk",
|
||||||
"vsco",
|
"vsco",
|
||||||
"wallhaven",
|
"wallhaven",
|
||||||
"warosu",
|
"warosu",
|
||||||
|
55
gallery_dl/extractor/vk.py
Normal file
55
gallery_dl/extractor/vk.py
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright 2021 Mike Fährmann
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
"""Extractors for https://vk.com/"""
|
||||||
|
|
||||||
|
from .common import GalleryExtractor
|
||||||
|
from .. import text
|
||||||
|
import re
|
||||||
|
|
||||||
|
|
||||||
|
class VkAlbumExtractor(GalleryExtractor):
|
||||||
|
"""Extractor for vkontakte albums"""
|
||||||
|
category = "vk"
|
||||||
|
subcategory = "album"
|
||||||
|
directory_fmt = ("{category}", "{album_id}")
|
||||||
|
filename_fmt = "{id}.{extension}"
|
||||||
|
archive_fmt = "{id}"
|
||||||
|
root = "https://vk.com/"
|
||||||
|
pattern = r"(?:https://)?(?:www\.|m\.)?vk\.com/(?:albums|id)(\d+)"
|
||||||
|
test = (
|
||||||
|
("https://vk.com/id398982326", {
|
||||||
|
"pattern": r"https://sun\d+-\d+\.userapi\.com/c\d+/v\d+"
|
||||||
|
r"/[0-9a-f]+/[\w-]+\.jpg",
|
||||||
|
"count": ">= 35",
|
||||||
|
}),
|
||||||
|
("https://m.vk.com/albums398982326"),
|
||||||
|
("https://www.vk.com/id398982326"),
|
||||||
|
)
|
||||||
|
|
||||||
|
def __init__(self, match):
|
||||||
|
self.album_id = match.group(1)
|
||||||
|
url = "{}/albums{}".format(self.root, self.album_id)
|
||||||
|
GalleryExtractor.__init__(self, match, url)
|
||||||
|
|
||||||
|
def metadata(self, page):
|
||||||
|
return {
|
||||||
|
"album_id": self.album_id,
|
||||||
|
}
|
||||||
|
|
||||||
|
def images(self, page):
|
||||||
|
results = []
|
||||||
|
sub = re.compile(r"/imp[fg]/").sub
|
||||||
|
needle = 'data-id="{}_'.format(self.album_id)
|
||||||
|
|
||||||
|
for photo in text.extract_iter(page, needle, '?'):
|
||||||
|
photo_id = photo.partition('"')[0]
|
||||||
|
url = sub("/", photo.rpartition("(")[2])
|
||||||
|
results.append((url, {"id": photo_id}))
|
||||||
|
|
||||||
|
return results
|
@ -100,6 +100,7 @@ CATEGORY_MAP = {
|
|||||||
"tumblrgallery" : "TumblrGallery",
|
"tumblrgallery" : "TumblrGallery",
|
||||||
"vanillarock" : "もえぴりあ",
|
"vanillarock" : "もえぴりあ",
|
||||||
"vidyart" : "/v/idyart",
|
"vidyart" : "/v/idyart",
|
||||||
|
"vk" : "VK",
|
||||||
"vsco" : "VSCO",
|
"vsco" : "VSCO",
|
||||||
"webtoons" : "Webtoon",
|
"webtoons" : "Webtoon",
|
||||||
"wikiart" : "WikiArt.org",
|
"wikiart" : "WikiArt.org",
|
||||||
|
Loading…
Reference in New Issue
Block a user