mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
merge #6328: [vk] add 'offset' option
This commit is contained in:
commit
9751b716ef
@ -4698,6 +4698,16 @@ Description
|
||||
or `cookies <extractor.*.cookies_>`__
|
||||
|
||||
|
||||
extractor.vk.offset
|
||||
-------------------
|
||||
Type
|
||||
``integer``
|
||||
Default
|
||||
``0``
|
||||
Description
|
||||
Custom ``offset`` starting value when paginating over image results.
|
||||
|
||||
|
||||
extractor.vsco.include
|
||||
----------------------
|
||||
Type
|
||||
|
@ -24,6 +24,13 @@ class VkExtractor(Extractor):
|
||||
root = "https://vk.com"
|
||||
request_interval = (0.5, 1.5)
|
||||
|
||||
def _init(self):
|
||||
self.offset = text.parse_int(self.config("offset"))
|
||||
|
||||
def skip(self, num):
|
||||
self.offset += num
|
||||
return num
|
||||
|
||||
def items(self):
|
||||
sub = re.compile(r"/imp[fg]/").sub
|
||||
sizes = "wzyxrqpo"
|
||||
@ -75,7 +82,7 @@ class VkExtractor(Extractor):
|
||||
"al" : "1",
|
||||
"direction": "1",
|
||||
"list" : photos_id,
|
||||
"offset" : 0,
|
||||
"offset" : self.offset,
|
||||
}
|
||||
|
||||
while True:
|
||||
|
Loading…
Reference in New Issue
Block a user