Fixed audio playback from URL

This commit is contained in:
Manuel Cortez 2020-05-29 10:28:10 -05:00
parent bec45c37c1
commit ed5b66d033
3 changed files with 3 additions and 5 deletions

View File

@ -1,9 +1,7 @@
from __future__ import unicode_literals
from audio_services import matches_url
import youtube_utils
import requests
from . import youtube_utils
@matches_url('https://audioboom.com')
def convert_audioboom(url):

View File

@ -1,3 +1,3 @@
from __future__ import unicode_literals
from . import shorteners
from __main__ import *
from . __main__ import *

View File

@ -1,6 +1,6 @@
from __future__ import unicode_literals
from functools import wraps
import shorteners
from . import shorteners
def service_selecter (func):