We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0502423 commit 9115196Copy full SHA for 9115196
firebase_admin/firestore.py
@@ -43,11 +43,14 @@ def client(app=None):
43
app: An App instance (optional).
44
45
Returns:
46
- google.cloud.firestore.Firestore: A Firestore database client.
+ google.cloud.firestore.Firestore: A `Firestore Client`_.
47
48
Raises:
49
ValueError: If a project ID is not specified either via options, credentials or
50
environment variables, or if the specified project ID is not a valid string.
51
+
52
+ .. _Firestore Client: https://googlecloudplatform.github.io/google-cloud-python/latest\
53
+ /firestore/client.html
54
"""
55
fs_client = _utils.get_app_service(app, _FIRESTORE_ATTRIBUTE, _FirestoreClient.from_app)
56
return fs_client.get()
0 commit comments