How can I access the latency for each record? #1560
Unanswered
lorenzobalzani
asked this question in
Q&A
Replies: 1 comment
-
To access the latency for each record, including the last one, you can iterate over the # Iterate over all records
for record in recording.records:
# Retrieve latency value
latency_value = record.latency # Assuming 'latency' is an attribute of the record
print("Latency:", latency_value)
# For the last record specifically
last_record = recording.records[-1]
last_latency_value = last_record.latency
print("Last Record Latency:", last_latency_value) This assumes that the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As of now, I can retrieve the last feedback, but I'd like to retrieve also the latency value for the last record. How can I achieve that?
Beta Was this translation helpful? Give feedback.
All reactions