mirror of
https://github.com/soimort/you-get.git
synced 2025-02-11 12:42:29 +03:00
15 lines
414 B
Python
15 lines
414 B
Python
#!/usr/bin/env python
|
|
__all__ = ['ixigua_download']
|
|
|
|
from .toutiao import download as toutiao_download
|
|
from .toutiao import download_playlist as toutiao_download_playlist
|
|
|
|
|
|
def ixigua_download(url, output_dir='.', merge=True, info_only=False, **kwargs):
|
|
return toutiao_download(url.replace('ixigua', '365yg'))
|
|
|
|
|
|
site_info = "ixigua.com"
|
|
download = ixigua_download
|
|
download_playlist = toutiao_download_playlist
|