Request limit maxed by hanging export?

Thank you! Here is the filled out sample:

API_KEY = None
labelbox.__version__ == '3.66.0'
PROJECT_ID = 'cls8wukhr05di07z736nc0vir' # although it happens with others too
client = labelbox.Client(api_key=API_KEY, enable_experimental=True)
projects = label_box_client.get_projects()
project = # we iterate and run the below code in a function for each project, if it is in a different list of project names. As of now we are testing with just project.name = 'ttd_2023_sample'

# Set the export params to include/exclude certain fields.
export_params= {
            "attachments": True,
            "metadata_fields": True,
            "data_row_details": True,
            "project_details": True,
            "label_details": True,
            "performance_details": True,
            "interpolated_frames": False,
}

# Note: Filters follow AND logic, so typically using one filter is sufficient.
filters= {}

export_task = project.export_v2(params=export_params, filters=filters)

export_task.wait_till_done()

if export_task.errors:
    logger.warning(export_task.errors)

export_json = export_task.result
if isinstance(export_json, dict):
    return [export_json]
logger.debug(f"Exported {len(export_json)} labels for project {project.name}.")
return export_json

Also for your reference I tried running it again and it is still hanging indefinitely.