smartsheet-python-sdk 3.2.0__py2.py3-none-any.whl → 3.4.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,163 @@
1
+ # pylint: disable=C0111,R0902,R0913
2
+ # Smartsheet Python SDK.
3
+ #
4
+ # Copyright 2018 Smartsheet.com, Inc.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License"): you may
7
+ # not use this file except in compliance with the License. You may obtain
8
+ # a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15
+ # License for the specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ import logging
19
+ from . import fresh_operation
20
+ from .models.enums import ShareScope
21
+
22
+
23
+ class Sharing:
24
+ """Class for handling Sharing operations."""
25
+
26
+ def __init__(self, smartsheet_obj):
27
+ """Init Sharing with base Smartsheet object."""
28
+ self._base = smartsheet_obj
29
+ self._log = logging.getLogger(__name__)
30
+
31
+ def list_asset_shares(self, asset_type, asset_id, max_items=None, last_key=None,
32
+ sharing_include: ShareScope = None):
33
+ """Get the list of all Users and Groups to whom the specified asset is
34
+ shared, and their access level.
35
+
36
+ Args:
37
+ asset_type (AssetType): Type of asset (sheet, report, sight, workspace, etc.)
38
+ asset_id (int): Asset ID
39
+ max_items (int): The maximum number of items to
40
+ return in the response.
41
+ last_key (str): The token from a previous request that will allow this one
42
+ to pick up where the previous one left off.
43
+ sharing_include (ShareScope): Scope of share to include in response
44
+
45
+ Returns:
46
+ IndexResult
47
+ """
48
+ _op = fresh_operation('list_asset_shares')
49
+ _op['method'] = 'GET'
50
+ _op['path'] = '/shares'
51
+ _op['query_params']['assetType'] = asset_type
52
+ _op['query_params']['assetId'] = asset_id
53
+ _op['query_params']['maxItems'] = max_items
54
+ _op['query_params']['lastKey'] = last_key
55
+ _op['query_params']['sharingInclude'] = sharing_include.name if sharing_include else None
56
+
57
+ expected = ['IndexResult', 'Share']
58
+
59
+ prepped_request = self._base.prepare_request(_op)
60
+ response = self._base.request(prepped_request, expected, _op)
61
+
62
+ return response
63
+
64
+ def get_asset_share(self, asset_type, asset_id, share_id):
65
+ """Get a specific share for the specified asset.
66
+
67
+ Args:
68
+ asset_type (AssetType): Type of asset (sheet, report, sight, workspace, etc.)
69
+ asset_id (int): Asset ID
70
+ share_id (str): Share ID
71
+
72
+ Returns:
73
+ Share
74
+ """
75
+ _op = fresh_operation('get_asset_share')
76
+ _op['method'] = 'GET'
77
+ _op['path'] = f'/shares/{share_id}'
78
+ _op['query_params']['assetType'] = asset_type
79
+ _op['query_params']['assetId'] = asset_id
80
+
81
+ expected = 'Share'
82
+ prepped_request = self._base.prepare_request(_op)
83
+ response = self._base.request(prepped_request, expected, _op)
84
+
85
+ return response
86
+
87
+ def share_asset(self, share_obj, asset_type, asset_id, send_email=None):
88
+ """Share an asset with the specified Users and Groups.
89
+
90
+ Args:
91
+ share_obj (Share or list[Share]): Share object or list of Share objects.
92
+ asset_type (AssetType): Type of asset (sheet, report, sight, workspace, etc.)
93
+ asset_id (int): Asset ID
94
+ send_email (bool): Either true or false to
95
+ indicate whether or not to notify the user by email. Default
96
+ is false.
97
+
98
+ Returns:
99
+ Result
100
+ """
101
+ _op = fresh_operation('share_asset')
102
+ _op['method'] = 'POST'
103
+ _op['path'] = '/shares'
104
+ _op['query_params']['assetType'] = asset_type
105
+ _op['query_params']['assetId'] = asset_id
106
+ _op['query_params']['sendEmail'] = send_email
107
+ _op['json'] = share_obj
108
+
109
+ expected = ['Result', 'Share']
110
+
111
+ prepped_request = self._base.prepare_request(_op)
112
+ response = self._base.request(prepped_request, expected, _op)
113
+
114
+ return response
115
+
116
+ def update_asset_share(self, share_obj, asset_type, asset_id, share_id):
117
+ """Update the access level of a User or Group for the specified asset.
118
+
119
+ Args:
120
+ share_obj (Share): Share object.
121
+ asset_type (AssetType): Type of asset (sheet, report, sight, workspace, etc.)
122
+ asset_id (int): Asset ID
123
+ share_id (str): Share ID
124
+
125
+ Returns:
126
+ Result
127
+ """
128
+ _op = fresh_operation('update_share')
129
+ _op['method'] = 'PATCH'
130
+ _op['path'] = f'/shares/{share_id}'
131
+ _op['query_params']['assetType'] = asset_type
132
+ _op['query_params']['assetId'] = asset_id
133
+ _op['json'] = share_obj
134
+
135
+ expected = ['Result', 'Share']
136
+
137
+ prepped_request = self._base.prepare_request(_op)
138
+ response = self._base.request(prepped_request, expected, _op)
139
+
140
+ return response
141
+
142
+ def delete_asset_share(self, asset_type, asset_id, share_id):
143
+ """Delete the specified Share.
144
+
145
+ Args:
146
+ asset_type (AssetType): Type of asset (sheet, report, sight, workspace, etc.)
147
+ asset_id (int): Asset ID
148
+ share_id (str): Share ID
149
+
150
+ Returns:
151
+ Result
152
+ """
153
+ _op = fresh_operation('delete_share')
154
+ _op['method'] = 'DELETE'
155
+ _op['path'] = f'/shares/{share_id}'
156
+ _op['query_params']['assetType'] = asset_type
157
+ _op['query_params']['assetId'] = asset_id
158
+
159
+ expected = ['Result', None]
160
+ prepped_request = self._base.prepare_request(_op)
161
+ response = self._base.request(prepped_request, expected, _op)
162
+
163
+ return response
@@ -19,6 +19,7 @@ from __future__ import absolute_import
19
19
 
20
20
  # import enums into enum package
21
21
  from .access_level import AccessLevel
22
+ from .asset_type import AssetType
22
23
  from .attachment_parent_type import AttachmentParentType
23
24
  from .attachment_sub_type import AttachmentSubType
24
25
  from .attachment_type import AttachmentType
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+ class AssetType(str, Enum):
4
+ """Defines the asset types supported by the Sharing API."""
5
+ SHEET = 'sheet'
6
+ REPORT = 'report'
7
+ SIGHT = 'sight'
8
+ WORKSPACE = 'workspace'
9
+ COLLECTION = 'collection'
10
+ FILE = 'file'
@@ -49,7 +49,7 @@ OBJECT_VALUE = {
49
49
  ]
50
50
  }
51
51
 
52
- _typeToName = {
52
+ _TYPE_TO_NAME = {
53
53
  DATE: "DATE",
54
54
  DATETIME: "DATETIME",
55
55
  ABSTRACT_DATETIME: "ABSTRACT_DATETIME",
@@ -60,7 +60,7 @@ _typeToName = {
60
60
  MULTI_PICKLIST: "MULTI_PICKLIST",
61
61
  }
62
62
 
63
- _nameToType = {
63
+ _NAME_TO_TYPE = {
64
64
  "DATE": DATE,
65
65
  "DATETIME": DATETIME,
66
66
  "ABSTRACT_DATETIME": ABSTRACT_DATETIME,
@@ -73,7 +73,7 @@ _nameToType = {
73
73
 
74
74
 
75
75
  def enum_object_value_type(object_type=None):
76
- return _nameToType.get(object_type)
76
+ return _NAME_TO_TYPE.get(object_type)
77
77
 
78
78
 
79
79
  class ObjectValue:
@@ -96,7 +96,7 @@ class ObjectValue:
96
96
  @object_type.setter
97
97
  def object_type(self, value):
98
98
  if isinstance(value, six.string_types):
99
- self._object_type = _nameToType.get(value)
99
+ self._object_type = _NAME_TO_TYPE.get(value)
100
100
  else:
101
101
  self._object_type = value
102
102
 
@@ -117,7 +117,7 @@ class ObjectValue:
117
117
  elif serialized is not None:
118
118
  retval[camel_case] = serialized
119
119
 
120
- retval["objectType"] = _typeToName.get(self._object_type)
120
+ retval["objectType"] = _TYPE_TO_NAME.get(self._object_type)
121
121
  return retval
122
122
 
123
123
  def to_dict(self):
smartsheet/sheets.py CHANGED
@@ -30,7 +30,6 @@ from .models.summary_field import SummaryField
30
30
  from .types import TypedList
31
31
  from .util import deprecated
32
32
 
33
-
34
33
  class Sheets:
35
34
 
36
35
  """Class for handling Sheets operations."""
@@ -310,6 +309,7 @@ class Sheets:
310
309
 
311
310
  return response
312
311
 
312
+ @deprecated
313
313
  def delete_share(self, sheet_id, share_id):
314
314
  """Delete the specified Share.
315
315
 
@@ -319,6 +319,9 @@ class Sheets:
319
319
 
320
320
  Returns:
321
321
  Result
322
+
323
+ Deprecated:
324
+ Use sharing.delete_share instead with assetType=AssetType.SHEET
322
325
  """
323
326
  _op = fresh_operation("delete_share")
324
327
  _op["method"] = "DELETE"
@@ -470,6 +473,7 @@ class Sheets:
470
473
 
471
474
  return response
472
475
 
476
+ @deprecated
473
477
  def get_share(self, sheet_id, share_id):
474
478
  """Get the specified Share.
475
479
 
@@ -479,6 +483,9 @@ class Sheets:
479
483
 
480
484
  Returns:
481
485
  Share
486
+
487
+ Deprecated:
488
+ Use sharing.get_asset_share instead with assetType=AssetType.SHEET
482
489
  """
483
490
  _op = fresh_operation("get_share")
484
491
  _op["method"] = "GET"
@@ -991,6 +998,7 @@ class Sheets:
991
998
 
992
999
  return response
993
1000
 
1001
+ @deprecated
994
1002
  def share_sheet(self, sheet_id, share_obj, send_email=None):
995
1003
  """Share the specified Sheet.
996
1004
 
@@ -1006,6 +1014,9 @@ class Sheets:
1006
1014
 
1007
1015
  Returns:
1008
1016
  Result
1017
+
1018
+ Deprecated:
1019
+ Use sharing.share_asset instead with assetType=AssetType.SHEET
1009
1020
  """
1010
1021
  _op = fresh_operation("share_sheet")
1011
1022
  _op["method"] = "POST"
@@ -1120,6 +1131,7 @@ class Sheets:
1120
1131
 
1121
1132
  return response
1122
1133
 
1134
+ @deprecated
1123
1135
  def update_share(self, sheet_id, share_id, share_obj):
1124
1136
  """Update the access level of a User or Group for the specified Sheet.
1125
1137
 
@@ -1130,6 +1142,9 @@ class Sheets:
1130
1142
 
1131
1143
  Returns:
1132
1144
  Result
1145
+
1146
+ Deprecated:
1147
+ Use sharing.update_share instead with assetType=AssetType.SHEET
1133
1148
  """
1134
1149
  if not all(val is not None for val in ["sheet_id", "share_id", "share_obj"]):
1135
1150
  raise ValueError(
smartsheet/version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # file generated by setuptools_scm
2
2
  # don't change, don't track in version control
3
- __version__ = version = '3.2.0'
4
- __version_tuple__ = version_tuple = (3, 2, 0)
3
+ __version__ = version = '3.4.0'
4
+ __version_tuple__ = version_tuple = (3, 4, 0)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: smartsheet-python-sdk
3
- Version: 3.2.0
3
+ Version: 3.4.0
4
4
  Summary: Library that uses Python to connect to Smartsheet services (using API 2.0).
5
5
  Home-page: http://smartsheet-platform.github.io/api-docs/
6
6
  Author: Smartsheet
@@ -27,21 +27,33 @@ Requires-Dist: requests-toolbelt
27
27
  Requires-Dist: six>=1.9
28
28
  Requires-Dist: certifi
29
29
  Requires-Dist: python-dateutil
30
+ Provides-Extra: test
31
+ Requires-Dist: coverage; extra == "test"
32
+ Requires-Dist: coveralls; extra == "test"
33
+ Requires-Dist: pytest; extra == "test"
30
34
  Provides-Extra: develop
31
35
  Requires-Dist: coverage; extra == "develop"
32
36
  Requires-Dist: coveralls[yaml]; extra == "develop"
33
37
  Requires-Dist: pytest; extra == "develop"
34
38
  Requires-Dist: pytest-instafail; extra == "develop"
35
- Provides-Extra: test
36
- Requires-Dist: coverage; extra == "test"
37
- Requires-Dist: coveralls; extra == "test"
38
- Requires-Dist: pytest; extra == "test"
39
+ Dynamic: author
40
+ Dynamic: author-email
41
+ Dynamic: classifier
42
+ Dynamic: description
43
+ Dynamic: description-content-type
44
+ Dynamic: home-page
45
+ Dynamic: keywords
46
+ Dynamic: license
47
+ Dynamic: license-file
48
+ Dynamic: provides-extra
49
+ Dynamic: requires-dist
50
+ Dynamic: summary
39
51
 
40
52
  # Smartsheet Python SDK
41
53
 
42
54
  [![Build Status](https://github.com/smartsheet/smartsheet-python-sdk/actions/workflows/test-build.yaml/badge.svg)](https://github.com/smartsheet/smartsheet-python-sdk/actions/workflows/test-build.yaml) [![Coverage Status](https://coveralls.io/repos/github/smartsheet/smartsheet-python-sdk/badge.svg?branch=mainline)](https://coveralls.io/github/smartsheet/smartsheet-python-sdk?branch=mainline) [![PyPI version](https://badge.fury.io/py/smartsheet-python-sdk.svg)](https://badge.fury.io/py/smartsheet-python-sdk)
43
55
 
44
- A library for connecting to the [Smartsheet API](https://smartsheet.redoc.ly) from Python applications.
56
+ A library for connecting to the [Smartsheet API](https://developers.smartsheet.com/api/smartsheet/) from Python applications.
45
57
 
46
58
  ## Requirements
47
59
 
@@ -59,7 +71,7 @@ pip install smartsheet-python-sdk
59
71
 
60
72
  To get started with the Smartsheet Python SDK:
61
73
 
62
- 1. Set **SMARTSHEET_ACCESS_TOKEN** in your environment, using your Smartsheet API key. Find out more about [Authentication and Access Tokens](https://smartsheet.redoc.ly/#section/API-Basics/Authentication-and-Access-Tokens) in the Smartsheet API Documentation. You can generate an access token in Smartsheet UI under Account > Personal Settings > API Access.
74
+ 1. Set **SMARTSHEET_ACCESS_TOKEN** in your environment, using your Smartsheet API key. Find out more about [Authentication and Access Tokens](https://developers.smartsheet.com/api/smartsheet/guides/basics/authentication) in the Smartsheet API Documentation. You can generate an access token in Smartsheet UI under Account > Personal Settings > API Access.
63
75
 
64
76
  2. Install the Smartsheet Python SDK (see the installation instructions above)
65
77
 
@@ -84,7 +96,7 @@ Use the following resources to learn more about the SDK capabilities:
84
96
 
85
97
  1. [Smartsheet Python SDK sample project](https://github.com/smartsheet-samples/python-read-write-sheet)
86
98
  2. [Python SDK documentation](https://smartsheet.github.io/smartsheet-python-sdk/)
87
- 3. [Smartsheet API Documentation](https://smartsheet.redoc.ly)
99
+ 3. [Smartsheet API Documentation](https://developers.smartsheet.com/api/smartsheet/)
88
100
 
89
101
  ## Advanced Topics
90
102
 
@@ -1,4 +1,5 @@
1
1
  smartsheet/__init__.py,sha256=h2TD_nYTxqa7lcKb_mOIa-DMQN-pYaGk1Du0U3IVMyA,1152
2
+ smartsheet/asset_shares.py,sha256=ztkh5uQOLKHT2AkjRnm_3yDRbFFUzNdBSCZbL5FhLVA,5839
2
3
  smartsheet/attachments.py,sha256=eZ1y5jS_TJSyZzzapc68ol1qhrLxCXc2sY8l8oY1Gvo,17865
3
4
  smartsheet/cells.py,sha256=1BCBps0mV9FV_nmdtsP5j7jT0avTVIfbYSAhnOqzlwM,4845
4
5
  smartsheet/contacts.py,sha256=IBV3ncoP7R7GmzQI0H1CIwq4scGk9iBC1ayyQ927YrQ,2383
@@ -16,7 +17,7 @@ smartsheet/reports.py,sha256=0B5bdQwVJHwu-V04aMSJ-Y7HaILK4rgjjMtn0--kcig,12835
16
17
  smartsheet/search.py,sha256=ffy1dkVl3GtuYgCxvuR-vwahOBWIehGv_zwzLoJMimA,3394
17
18
  smartsheet/server.py,sha256=9wySsa_y_G-VO88tEHGHp919zRVFS0kCFIhiM6crWEU,1429
18
19
  smartsheet/session.py,sha256=TQ3IgVZ64r7Dszwo8rMISFezWxuwFYshhW9QhzoA428,2125
19
- smartsheet/sheets.py,sha256=0JVg4N3u3z9ngnIeRnjo8fUejfXhcQLYmQXCyw207dk,70150
20
+ smartsheet/sheets.py,sha256=2SUhanCsRFKCsbN-oAIRMsuYnk1aSFlXKzfZhxMo7d0,70603
20
21
  smartsheet/sights.py,sha256=IZgy8CJZBJ-pQo6vNwkDSBuoLCv5RAW39kNUMMNJ-oc,11569
21
22
  smartsheet/smartsheet.py,sha256=wOBejFgIh_xQu1KuIlh9ZAsq2OxG8EIWUqtBQpmz1y4,23408
22
23
  smartsheet/templates.py,sha256=z_Tj-4jZsu3RkLNbCAZWM2W05Zbio9T_uyU33rUPxzE,2898
@@ -24,7 +25,7 @@ smartsheet/token.py,sha256=5uz-IG5adx_zr2-uepH-W8ATv0dq9aZNjYLeZNwldqI,4703
24
25
  smartsheet/types.py,sha256=aIdRJ89jwclmiZ4RH3hnZHJTFWFxgNKW3d8fghm21eM,9126
25
26
  smartsheet/users.py,sha256=1KnqKJIzJEPMNy26BQY1b9jb3dItbzglrljV1MGD5ic,15887
26
27
  smartsheet/util.py,sha256=12Y6eluecB8k4Ns-at81AEM18ND2TCKa9bF4BlNRrKM,5633
27
- smartsheet/version.py,sha256=jXprrDLc5_o9OzizdGMr92Lmhow65AreA5_ht6m6bmA,160
28
+ smartsheet/version.py,sha256=Y-KA1HKRZt06ZWs3W1pjIKcyJDHKcRbYxnmzxvbA-qQ,160
28
29
  smartsheet/webhooks.py,sha256=7F7g4Ks0GyS3QxsNWm1SFtrOr00jBisCjj7-hcToHM8,4637
29
30
  smartsheet/workspaces.py,sha256=r81xh3HfYsX--ll5pQ-h7kSSJELokYV-bSjuD0WloeU,22651
30
31
  smartsheet/models/__init__.py,sha256=4P6wKY8TpbV_rI5Z5c1ifxiwJEWL5bsvecVcjtUSJ9U,4754
@@ -86,7 +87,7 @@ smartsheet/models/multi_picklist_object_value.py,sha256=jDwPLZZYaFTob74r2SeJSp_4
86
87
  smartsheet/models/multi_row_email.py,sha256=LXvLY7b9KIqubaFX9uLjh4JsUHIQgPg0O_oC9EyYgu0,1594
87
88
  smartsheet/models/number_object_value.py,sha256=m4s9dsDxIl-t6jPB0_sZtCL82EHBcc8yatXjyCCDGZY,1241
88
89
  smartsheet/models/o_auth_error.py,sha256=svDzW9mqdUnRD4g0lhrr0QQVvBHPqY6C1nZj7oPw8p4,2340
89
- smartsheet/models/object_value.py,sha256=YeKhWcL_y_lsSRdXEFdc14K9HG3FHFPJvAKGypWDAtE,3444
90
+ smartsheet/models/object_value.py,sha256=_-IzfdTlBsRKY1EV_1geTYj6-iqvV1B5aG5DrEMtN_I,3454
90
91
  smartsheet/models/paginated_children_result.py,sha256=zcFUp7k8AQDbDLw-UWTZYkf6Gp8Z-v7LQWy9FPJ5ry4,2913
91
92
  smartsheet/models/predecessor.py,sha256=UjmBW_bTD7cAySPL-p5BrkcjNEQxkDizdgcr-KCuvM8,2629
92
93
  smartsheet/models/predecessor_list.py,sha256=OYfrr_P4YkdDRNU6IUGL1ZN75yWyejCNx_q7rGdzIx0,1523
@@ -147,8 +148,9 @@ smartsheet/models/widget.py,sha256=G5UKR1latGSuXqm-MCRQxn9W7IJgo2FsUWJ9heEW0RA,6
147
148
  smartsheet/models/widget_content.py,sha256=hxv3DJWO8YPe4ND-HUZ59eOVU9LAy02owU-KQVWUsDU,1525
148
149
  smartsheet/models/widget_hyperlink.py,sha256=JPjaSftHFHiFj48tfOckGWzrew_CLKmE2k9lUA_RQSk,2059
149
150
  smartsheet/models/workspace.py,sha256=_YT4i4DEK32kEyqlWixZUQSQyBiZkNtwtSmuhc98H2s,4522
150
- smartsheet/models/enums/__init__.py,sha256=i-B6OYkAIRRQZwG8JgX19ZBHwVrBXWHfrLEWMUPXpj4,2322
151
+ smartsheet/models/enums/__init__.py,sha256=qDpcuk-xU4jVTvwgD6aWz8hUM02hOZbiRNDfMLSniQM,2356
151
152
  smartsheet/models/enums/access_level.py,sha256=LvKh3Z2LrFeLm-R-dT0qOVinBsA4jEOxM02flg0LFaY,816
153
+ smartsheet/models/enums/asset_type.py,sha256=hrNXZDk_mme57f-0wO86mk_RwzNP8zkb9h7GAEZbhjQ,253
152
154
  smartsheet/models/enums/attachment_parent_type.py,sha256=EFcrHg8xpx_ZxrrGb3vkk9Ji8PD74Q8GeWhXZMquVEw,770
153
155
  smartsheet/models/enums/attachment_sub_type.py,sha256=wZEo80LynIFDFZkTHCpQx5T-G5deT9HSRBMRdvHyh7Q,826
154
156
  smartsheet/models/enums/attachment_type.py,sha256=2c7TXc22Vzwq-8BG8rvEfqOpe29njT27otogdfVidwc,869
@@ -183,9 +185,9 @@ smartsheet/models/enums/system_column_type.py,sha256=UfhNUBGD_0K1Pas7fujGEuax55O
183
185
  smartsheet/models/enums/update_request_status.py,sha256=xYF84x1dTFhJMYVi1q3G1T9u1IGN3szlR1jj5HHC0hE,777
184
186
  smartsheet/models/enums/user_status.py,sha256=SB7qRcA0dhdRimsOKHCGF3CB6fL0XuifxQEWZGNNS8Q,766
185
187
  smartsheet/models/enums/widget_type.py,sha256=VfVq59fLZsT4ks_ZBrtv52u2Cl60iAdlA6mGD_elz-k,1072
186
- smartsheet_python_sdk-3.2.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
187
- smartsheet_python_sdk-3.2.0.dist-info/METADATA,sha256=MM8LT9xqe55C482AZXjBraonFBh1ofXzLcO2QEspIuI,4693
188
- smartsheet_python_sdk-3.2.0.dist-info/NOTICE,sha256=mXr2ryVjnCjykeW0J79kFfVXQG_Z9SV4BV_QPNENW1U,420
189
- smartsheet_python_sdk-3.2.0.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
190
- smartsheet_python_sdk-3.2.0.dist-info/top_level.txt,sha256=kozWEYiKjyJmSXzd6p5ugkQ5bhoHS9V3NnvLagUfcNw,11
191
- smartsheet_python_sdk-3.2.0.dist-info/RECORD,,
188
+ smartsheet_python_sdk-3.4.0.dist-info/licenses/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
189
+ smartsheet_python_sdk-3.4.0.dist-info/licenses/NOTICE,sha256=mXr2ryVjnCjykeW0J79kFfVXQG_Z9SV4BV_QPNENW1U,420
190
+ smartsheet_python_sdk-3.4.0.dist-info/METADATA,sha256=-s9_oycQFfp_QkgimAO9s6ZgwKhC86yGPi4w_hb0tmI,4987
191
+ smartsheet_python_sdk-3.4.0.dist-info/WHEEL,sha256=AeO2BvogYWm3eGaHCvhzmUYt8ia7KfURiHzO_1atlys,109
192
+ smartsheet_python_sdk-3.4.0.dist-info/top_level.txt,sha256=kozWEYiKjyJmSXzd6p5ugkQ5bhoHS9V3NnvLagUfcNw,11
193
+ smartsheet_python_sdk-3.4.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.45.1)
2
+ Generator: setuptools (79.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any