| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 676d115 commit a84b74e
20 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1864,7 +1864,7 @@ | |||
| 1864 | 1864 | "currentVersion": "0.1.25", | |
| 1865 | 1865 | "generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC", | |
| 1866 | 1866 | "releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC", | |
| 1867 | - "lastGeneratedCommit": "97a83d76a09a7f6dcab43675c87bdfeb5bcf1cb5", | ||
| 1867 | + "lastGeneratedCommit": "6942862f40d7a65b8e65ec491605d90d48458eaa", | ||
| 1868 | 1868 | "apiPaths": [ | |
| 1869 | 1869 | "google/maps/places/v1" | |
| 1870 | 1870 | ], | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,9 +1,9 @@ | |||
| 1 | - Python Client for Places API | ||
| 2 | - ============================ | ||
| 1 | + Python Client for Places API (New) | ||
| 2 | + ================================== | ||
| 3 | 3 | ||
| 4 | 4 | |preview| |pypi| |versions| | |
| 5 | 5 | ||
| 6 | - `Places API`_: The Places API allows developers to access a variety of search and retrieval endpoints for a Place. | ||
| 6 | + `Places API (New)`_: The Places API allows developers to access a variety of search and retrieval endpoints for a Place. | ||
| 7 | 7 | ||
| 8 | 8 | - `Client Library Documentation`_ | |
| 9 | 9 | - `Product Documentation`_ | |
@@ -14,8 +14,8 @@ Python Client for Places API | |||
| 14 | 14 | :target: https://pypi.org/project/google-maps-places/ | |
| 15 | 15 | .. |versions| image:: https://img.shields.io/pypi/pyversions/google-maps-places.svg | |
| 16 | 16 | :target: https://pypi.org/project/google-maps-places/ | |
| 17 | - .. _Places API: https://developers.google.com/maps/documentation/places/web-service/ | ||
| 18 | - .. _Client Library Documentation: https://googleapis.dev/python/places/latest | ||
| 17 | + .. _Places API (New): https://developers.google.com/maps/documentation/places/web-service/ | ||
| 18 | + .. _Client Library Documentation: https://cloud.google.com/python/docs/reference/places/latest | ||
| 19 | 19 | .. _Product Documentation: https://developers.google.com/maps/documentation/places/web-service/ | |
| 20 | 20 | ||
| 21 | 21 | Quick Start | |
@@ -25,12 +25,12 @@ In order to use this library, you first need to go through the following steps: | |||
| 25 | 25 | ||
| 26 | 26 | 1. `Select or create a Cloud Platform project.`_ | |
| 27 | 27 | 2. `Enable billing for your project.`_ | |
| 28 | - 3. `Enable the Places API.`_ | ||
| 28 | + 3. `Enable the Places API (New).`_ | ||
| 29 | 29 | 4. `Set up Authentication.`_ | |
| 30 | 30 | ||
| 31 | 31 | .. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project | |
| 32 | 32 | .. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project | |
| 33 | - .. _Enable the Places API.: https://developers.google.com/maps/documentation/places/web-service/ | ||
| 33 | + .. _Enable the Places API (New).: https://developers.google.com/maps/documentation/places/web-service/ | ||
| 34 | 34 | .. _Set up Authentication.: https://googleapis.dev/python/google-api-core/latest/auth.html | |
| 35 | 35 | ||
| 36 | 36 | Installation | |
@@ -97,14 +97,14 @@ Windows | |||
| 97 | 97 | Next Steps | |
| 98 | 98 | ~~~~~~~~~~ | |
| 99 | 99 | ||
| 100 | - - Read the `Client Library Documentation`_ for Places API | ||
| 100 | + - Read the `Client Library Documentation`_ for Places API (New) | ||
| 101 | 101 | to see other available methods on the client. | |
| 102 | - - Read the `Places API Product documentation`_ to learn | ||
| 102 | + - Read the `Places API (New) Product documentation`_ to learn | ||
| 103 | 103 | more about the product and see How-to Guides. | |
| 104 | 104 | - View this `README`_ to see the full list of Cloud | |
| 105 | 105 | APIs that we cover. | |
| 106 | 106 | ||
| 107 | - .. _Places API Product documentation: https://developers.google.com/maps/documentation/places/web-service/ | ||
| 107 | + .. _Places API (New) Product documentation: https://developers.google.com/maps/documentation/places/web-service/ | ||
| 108 | 108 | .. _README: https://github.com/googleapis/google-cloud-python/blob/main/README.rst | |
| 109 | 109 | ||
| 110 | 110 | Logging | |
@@ -161,9 +161,9 @@ Code-Based Examples | |||
| 161 | 161 | .. code-block:: python | |
| 162 | 162 | ||
| 163 | 163 | import logging | |
| 164 | - | ||
| 164 | + | ||
| 165 | 165 | from google.cloud import library_v1 | |
| 166 | - | ||
| 166 | + | ||
| 167 | 167 | base_logger = logging.getLogger("google") | |
| 168 | 168 | base_logger.addHandler(logging.StreamHandler()) | |
| 169 | 169 | base_logger.setLevel(logging.DEBUG) | |
@@ -173,9 +173,9 @@ Code-Based Examples | |||
| 173 | 173 | .. code-block:: python | |
| 174 | 174 | ||
| 175 | 175 | import logging | |
| 176 | - | ||
| 176 | + | ||
| 177 | 177 | from google.cloud import library_v1 | |
| 178 | - | ||
| 178 | + | ||
| 179 | 179 | base_logger = logging.getLogger("google.cloud.library_v1") | |
| 180 | 180 | base_logger.addHandler(logging.StreamHandler()) | |
| 181 | 181 | base_logger.setLevel(logging.DEBUG) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments