MCPcopy
hub / github.com/burnash/gspread / spreadsheets_get

Method spreadsheets_get

gspread/http_client.py:271–275  ·  view source on GitHub ↗

A method stub that directly calls `spreadsheets.get `_.

(self, id: str, params: Optional[ParamsType] = None)

Source from the content-addressed store, hash-verified

269 return r.json()
270
271 def spreadsheets_get(self, id: str, params: Optional[ParamsType] = None) -> Any:
272 """A method stub that directly calls `spreadsheets.get <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get>`_."""
273 url = SPREADSHEET_URL % id
274 r = self.request("get", url, params=params)
275 return r.json()
276
277 def spreadsheets_sheets_copy_to(
278 self, id: str, sheet_id: int, destination_spreadsheet_id: str

Callers 3

_spreadsheets_getMethod · 0.80
get_notesMethod · 0.80
get_noteMethod · 0.80

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected