File tree Expand file tree Collapse file tree 15 files changed +250
-0
lines changed Expand file tree Collapse file tree 15 files changed +250
-0
lines changed Original file line number Diff line number Diff line change
1
+ Firestore
2
+ =========
3
+
4
+ .. automodule :: google.cloud.firestore
5
+ :members:
6
+ :show-inheritance:
7
+
8
+ Firestore Client
9
+ ~~~~~~~~~~~~~~~~
10
+ .. automodule :: google.cloud.firestore.client
11
+ :members:
12
+ :show-inheritance:
Original file line number Diff line number Diff line change 23
23
datastore-batches
24
24
datastore-helpers
25
25
26
+ .. toctree ::
27
+ :maxdepth: 0
28
+ :hidden:
29
+ :caption: Firestore
30
+
31
+ firestore
32
+
26
33
.. toctree ::
27
34
:maxdepth: 0
28
35
:hidden:
Original file line number Diff line number Diff line change
1
+ [run]
2
+ branch = True
3
+
4
+ [report]
5
+ fail_under = 100
6
+ show_missing = True
7
+ exclude_lines =
8
+ # Re-enable the standard pragma
9
+ pragma: NO COVER
10
+ # Ignore debug-only repr
11
+ def __repr__
Original file line number Diff line number Diff line change
1
+ include README.rst
2
+ graft google
3
+ graft unit_tests
4
+ global-exclude *.pyc
Original file line number Diff line number Diff line change
1
+ Google Cloud Firestore SDK
2
+ ==========================
Original file line number Diff line number Diff line change
1
+ # Copyright 2016 Google Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ try :
16
+ import pkg_resources
17
+ pkg_resources .declare_namespace (__name__ )
18
+ except ImportError :
19
+ import pkgutil
20
+ __path__ = pkgutil .extend_path (__path__ , __name__ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2016 Google Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ try :
16
+ import pkg_resources
17
+ pkg_resources .declare_namespace (__name__ )
18
+ except ImportError :
19
+ import pkgutil
20
+ __path__ = pkgutil .extend_path (__path__ , __name__ )
Original file line number Diff line number Diff line change
1
+ # Copyright 2016 Google Inc. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ """Firestore database API public classes."""
16
+
17
+ from google .cloud .firestore .client import Client
Original file line number Diff line number Diff line change
1
+ # Copyright 2016 Google Inc. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ """Firestore database SDK Client."""
16
+
17
+
18
+ class Client (object ):
19
+ """Firestore Client.
20
+
21
+ :type project: str
22
+ :param project: (optional) Project containing the Firestore database.
23
+ """
24
+
25
+ def __init__ (self , project = None ):
26
+ raise NotImplementedError ()
Original file line number Diff line number Diff line change
1
+ [bdist_wheel]
2
+ universal = 1
You can’t perform that action at this time.
0 commit comments