21 lines
452 B
Python
21 lines
452 B
Python
from functools import wraps
|
|
from urllib.parse import urlsplit, urlunsplit, parse_qs, urlencode
|
|
import threading
|
|
import youtube_dl
|
|
|
|
class Namespace(object): pass
|
|
|
|
def seconds_to_timestamp(s):
|
|
return "%i:%.2i" % (s//60, s%60)
|
|
|
|
# decorator:
|
|
def call_as_thread(func): # This will discard any return value!
|
|
@wraps(func)
|
|
def new_func(*args, **kwargs):
|
|
threading.Thread(
|
|
target = func,
|
|
args = args,
|
|
kwargs = kwargs
|
|
).start()
|
|
return new_func
|