PS: I was doing it synchronously by using the following in my cloud function:
name = "projects/project1/locations/us-central1/functions/test3"
body = {
'data': '{ "message": "Function Invoked Successfully"}'
}
result = self.google_api_service.projects().locations().functions().call(name=name, body=body).execute()
#google_api_service has it's own functions
print(result)
Help me out to do it asynchronously! Also please do not suggest Pub/Sub. Is there any other workaround in python?