Download

Download models.

Including download, automatic download (the task is fully rendered, one frame is downloaded after downloading one frame), download so the un-downloaded task is recorded (the task is rendered).

class rayvision_sync.download.RayvisionDownload(api)

Bases: object

Downloader.

Download all the passed tasks by calling the cmd command.

auto_download(task_id_list=None, max_speed=None, print_log=False, sleep_time=10, download_filename_format='true', local_path=None)

Automatic download (complete one frame download).

Wait for all downloads to update undownloaded records.

Parameters:
  • task_id_list (list of int) – List of tasks ids that need to be downloaded.
  • max_speed (str, optional) – Download speed limit, The unit of ‘max_speed’ is KB/S,default value is 1048576 KB/S, means 1 GB/S.
  • print_log (bool, optional) – Print log, True: print, False: not print.
  • sleep_time (int, optional) – Sleep time between download, unit is second.
  • download_filename_format – File download local save style, “true”: tape task ID and scene name, “false” : download directly without doing processing.
  • local_path (str) – Download file locally save path, default Window system is “USERPROFILE” environment variable address splicing “renderfarm_sdk”, Linux system is “HOME” environment variable address splicing “renderfarm_sdk”.
Returns:

True is success.

Return type:

bool

auto_download_after_task_completed(task_id_list=None, max_speed=None, print_log=True, sleep_time=10, download_filename_format='true', local_path=None)

Auto download after the tasks render completed.

Parameters:
  • task_id_list (list of int) – List of tasks ids that need to be downloaded.
  • max_speed (str, optional) – Download speed limit, The unit of ‘max_speed’ is KB/S,default value is 1048576 KB/S, means 1 GB/S.
  • print_log (bool, optional) – Print log, True: print, False: not print.
  • sleep_time (int, optional) – Sleep time between download, unit is second.
  • download_filename_format – File download local save style, “true”: tape task ID and scene name, “false” : download directly without doing processing.
  • local_path (str) – Download file locally save path, default Window system is “USERPROFILE” environment variable address splicing “renderfarm_sdk”, Linux system is “HOME” environment variable address splicing “renderfarm_sdk”.
Returns:

True is success.

Return type:

bool

static check_params(task_id_list, custom_server_output_path)

Check the parameters.

Task_id_list and custom_server_output_path must have one.

download(task_id_list=None, max_speed=None, print_log=True, download_filename_format='true', local_path=None, server_path=None)

Download and update the undownloaded record.

Parameters:
  • task_id_list (list of int) – List of tasks ids that need to be downloaded.
  • max_speed (str, optional) – Download speed limit, The unit of max_speed is KB/S,default value is 1048576 KB/S, means 1 GB/S.
  • print_log (bool, optional) – Print log, True: print, False: not print.
  • download_filename_format – File download local save style, “true”: tape task ID and scene name, “false” : download directly without doing processing.
  • local_path (str) – Download file locally save path, default Window system is “USERPROFILE” environment variable address splicing “renderfarm_sdk”, Linux system is “HOME” environment variable address splicing “renderfarm_sdk”,
  • server_path (str or list) – The user customizes the file structure to be downloaded from the output server, and all file structures are downloaded by default, example: “18164087_test/l_layer”.
Returns:

True is success.

Return type:

bool