I am new to python and firestore. But I have some experince on Firebase. I go through the Firestore doc for python. I dont know how to find if task completes successfully or completes with some error. Normally other languages have completion block.
For example I want to know if write completed with success or error for following code:
resp = doc_ref.set({
u'first': u'Alan',
u'last': u'Lovelace',
u'born': 1915
})