From 3a2482baae7d422519777e6c8075df9e2c2837cc Mon Sep 17 00:00:00 2001 From: gangov Date: Thu, 29 Jan 2026 12:17:03 +0200 Subject: [PATCH] adds Cells to Smartsheet --- CHANGELOG.md | 4 ++++ smartsheet/smartsheet.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index eca43aa..c814494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [x.x.x] - Unreleased +### Added + +- Add `Cells` class to `Smartsheet` class for IDE autocomplete support. Now auto-complete like `smart.Cells.get_cell_history()` and `smart.Cells.add_image_to_cell()` will work. + ## [3.7.1] - 2025-12-12 ### Fixed diff --git a/smartsheet/smartsheet.py b/smartsheet/smartsheet.py index 6719afc..1f91656 100644 --- a/smartsheet/smartsheet.py +++ b/smartsheet/smartsheet.py @@ -38,6 +38,7 @@ from .util import is_multipart, serialize from .attachments import Attachments +from .cells import Cells from .contacts import Contacts from .discussions import Discussions from .events import Events @@ -119,6 +120,7 @@ class Smartsheet: """Use this to make requests to the Smartsheet API.""" Attachments: Attachments + Cells: Cells Contacts: Contacts Discussions: Discussions Events: Events