This commit is contained in:
msramalho
2022-06-17 19:38:15 +02:00
parent e7e732248e
commit 8efaf5cf60
2 changed files with 12 additions and 5 deletions

View File

@@ -1,5 +1,10 @@
import os, pytest, datetime
import datetime
import os
import pytest
from vk_url_scraper import VkScraper
from .util import assert_equal_lists
vks = None

View File

@@ -1,8 +1,10 @@
import re, requests
import vk_api # used to get api_token after authentication
from typing import List
from datetime import datetime
import re
from collections import defaultdict
from datetime import datetime
from typing import List
import requests
import vk_api # used to get api_token after authentication
class VkScraper: