funkwlmpv/src/utils.py

23 lines
643 B
Python
Raw Normal View History

from src.fw_api import s
from urllib.parse import unquote
def get_remote_file_name(url):
'''This function return filename by content-disposition header'''
r = s.head(url)
content_dispos = r.headers.get('content-disposition')
if content_dispos.startswith('attachment; filename*=UTF-8\'\''):
return unquote(content_dispos.split('attachment; filename*=UTF-8\'\'')[-1])
def download_track(url, name=None):
r = s.get(url)
if not name:
name = get_remote_file_name(url)
if not name:
name = url.split(r'/')[-1]
with open(name, 'wb') as f:
f.write(r.content)
2022-11-06 00:56:09 +00:00
return name