Separate setup() and module_setup().

This commit is contained in:
erinhmclark
2025-02-10 18:07:47 +00:00
parent 2c3d1f591f
commit e97ccf8a73
14 changed files with 18 additions and 18 deletions

View File

@@ -12,7 +12,7 @@ class VkExtractor(Extractor):
Currently only works for /wall posts
"""
def module_setup(self) -> None:
def setup(self) -> None:
self.vks = VkScraper(self.username, self.password, session_file=self.session_file)
def download(self, item: Metadata) -> Metadata: