In order to use autocompletion for python in vscode I name my functions parameters like below:
def list_collections(new_document_ref: firestore.DocumentReference, old_document_ref: firestore.DocumentReference):
A google-cloud-function when triggered comes with a event: dict and a context: google.cloud.functions_v1.context.Context
Is it possible to install the google.cloud.functions_v1 package?
Checked on the gcloudpypi page and there is no package available.
In order to use autocompletion for python in vscode I name my functions parameters like below:
A
google-cloud-functionwhen triggered comes with aevent: dictand acontext: google.cloud.functions_v1.context.ContextIs it possible to install the
google.cloud.functions_v1package?Checked on the gcloudpypi page and there is no package available.