MCPcopy Index your code
hub / github.com/googleapis/google-api-python-client / ListTables

Function ListTables

samples/maps_engine/maps_engine.py:77–86  ·  view source on GitHub ↗

List the tables in a given project. Args: service: The service object built by the Google API Python client library. project_id: string, id of the GME project.

(service, project_id)

Source from the content-addressed store, hash-verified

75
76
77def ListTables(service, project_id):
78 """List the tables in a given project.
79
80 Args:
81 service: The service object built by the Google API Python client library.
82 project_id: string, id of the GME project.
83 """
84
85 tables = service.tables().list(projectId=project_id).execute()
86 logging.info(json.dumps(tables, indent=2))
87
88
89def UploadShapefile(service, project_id, shapefile_prefix):

Callers

nothing calls this directly

Calls 2

infoMethod · 0.80
executeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…