Added a few comments
This commit is contained in:
parent
f1f460bf0a
commit
cfd6a92c35
@ -3,18 +3,20 @@ import logging
|
|||||||
import requests
|
import requests
|
||||||
import wx
|
import wx
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
from requests.auth import HTTPBasicAuth
|
|
||||||
import config
|
import config
|
||||||
|
from requests.auth import HTTPBasicAuth
|
||||||
from update.utils import seconds_to_string
|
from update.utils import seconds_to_string
|
||||||
from .import base
|
from .import base
|
||||||
|
|
||||||
log = logging.getLogger("services.vk")
|
log = logging.getLogger("services.vk")
|
||||||
|
|
||||||
|
### toDo: hide secrets
|
||||||
url = "https://musicdl.manuelcortez.net"
|
url = "https://musicdl.manuelcortez.net"
|
||||||
application_name = "music_dl"
|
application_name = "music_dl"
|
||||||
access_token = "e2237f17af545a4ba0bf6cb0b1a662e6"
|
access_token = "e2237f17af545a4ba0bf6cb0b1a662e6"
|
||||||
|
|
||||||
class interface(base.baseInterface):
|
class interface(base.baseInterface):
|
||||||
|
""" Class downloader for VK audios. """
|
||||||
name = "vk"
|
name = "vk"
|
||||||
enabled = config.app["services"]["vk"].get("enabled")
|
enabled = config.app["services"]["vk"].get("enabled")
|
||||||
|
|
||||||
@ -32,6 +34,7 @@ class interface(base.baseInterface):
|
|||||||
self.get_auth()
|
self.get_auth()
|
||||||
|
|
||||||
def get_file_format(self):
|
def get_file_format(self):
|
||||||
|
# Only mp3 audio is supported in VK so return it without further checks.
|
||||||
return "mp3"
|
return "mp3"
|
||||||
|
|
||||||
def transcoder_enabled(self):
|
def transcoder_enabled(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user