python-google-sheets 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- {python_google_sheets-0.1.1/python_google_sheets.egg-info → python_google_sheets-0.1.2}/PKG-INFO +1 -1
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/google_sheets.py +6 -1
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/pyproject.toml +1 -1
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2/python_google_sheets.egg-info}/PKG-INFO +1 -1
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/LICENSE +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/README.md +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/__init__.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/api_request.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/__init__.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/conditional_format_rule.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/dimension.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/general_models.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/merge_cells.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/spreadsheet.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/update_cells.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/spreadsheet_requests/update_sheet_properties.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/styles.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/google_sheets/utils.py +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/python_google_sheets.egg-info/SOURCES.txt +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/python_google_sheets.egg-info/dependency_links.txt +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/python_google_sheets.egg-info/requires.txt +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/python_google_sheets.egg-info/top_level.txt +0 -0
- {python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/setup.cfg +0 -0
|
@@ -152,7 +152,12 @@ class GoogleSheets:
|
|
|
152
152
|
ranges = [f'{sheet_name}!{range_}' for range_ in ranges]
|
|
153
153
|
|
|
154
154
|
try:
|
|
155
|
-
response = service.spreadsheets().values().batchGet(
|
|
155
|
+
response = service.spreadsheets().values().batchGet(
|
|
156
|
+
spreadsheetId=spreadsheet_id,
|
|
157
|
+
ranges=ranges,
|
|
158
|
+
valueRenderOption='UNFORMATTED_VALUE',
|
|
159
|
+
dateTimeRenderOption='FORMATTED_STRING'
|
|
160
|
+
).execute(num_retries=5)
|
|
156
161
|
except HttpError as e:
|
|
157
162
|
raise e
|
|
158
163
|
else:
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
name = "python-google-sheets"
|
|
7
7
|
description = "The most efficient Python wrapper for Google Sheets API"
|
|
8
8
|
authors = [{ name = "Timofey Egorov", email = "timegorr@gmail.com" }]
|
|
9
|
-
version = "0.1.
|
|
9
|
+
version = "0.1.2"
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
requires-python = ">=3.11"
|
|
12
12
|
classifiers = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/python_google_sheets.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python_google_sheets-0.1.1 → python_google_sheets-0.1.2}/python_google_sheets.egg-info/requires.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|