Understand gspread model entities
masterThe gspread library uses three primary model entities to represent spreadsheet data:
- Spreadsheet: Represents a Google Spreadsheet file.
- Worksheet: Represents an individual sheet within a spreadsheet.
- Cell: Represents an individual cell within a worksheet.
Important: Do not attempt to instantiate these classes directly. Instead, obtain instances of these models by calling methods on existing objects (e.g., opening a spreadsheet returns a Spreadsheet object, and accessing a sheet within that spreadsheet returns a Worksheet object).