|
import itertools |
|
import shutil |
|
|
|
from facefusion import metadata |
|
from facefusion.types import Commands |
|
|
|
|
|
def run(commands : Commands) -> Commands: |
|
user_agent = metadata.get('name') + '/' + metadata.get('version') |
|
|
|
return [ shutil.which('curl'), '--user-agent', user_agent, '--insecure', '--location', '--silent' ] + commands |
|
|
|
|
|
def chain(*commands : Commands) -> Commands: |
|
return list(itertools.chain(*commands)) |
|
|
|
|
|
def head(url : str) -> Commands: |
|
return [ '-I', url ] |
|
|
|
|
|
def download(url : str, download_file_path : str) -> Commands: |
|
return [ '--create-dirs', '--continue-at', '-', '--output', download_file_path, url ] |
|
|
|
|
|
def set_timeout(timeout : int) -> Commands: |
|
return [ '--connect-timeout', str(timeout) ] |
|
|