Skip to main content
Use the following method to submit a label row / annotation task for review by specifying the <label_hash>.
project.submit_label_row_for_review("<label_hash>")
While the get_label_row() method provides static information about the labels at a point in time, the get_label_logs() method gives you an actions log that was created in the UI to create all the current labels. Those actions include for example adding, editing, and deleting labels. See our documentation on label logs for more information on how to view label logs. Use the following example to print a single label log:

# print first log
logs = project.get_label_logs(data_hash="7d452929-9d2a-4aac-9010-4aa1dc8d4806")
for log in logs:
    print(log)
    break