Changelog History
Page 4
-
v0.5.0 Changes
December 12, 2016- โ Added method to create blank spreadsheets #253
- โ Added method to clear worksheets #156
- โ Added method to delete a row in a worksheet #337
- ๐ Changed
Worksheet.range
method to accept integers as coordinates #142 - Added
default_blank
parameter toWorksheet.get_all_records
#423 - ๐ Use xml.etree.cElementTree when available to reduce memory usage #348
- Fixed losing input_value data from following cells in
Worksheet.insert_row
#338 - Deprecated
Worksheet.get_int_addr
andWorksheet.get_addr_int
in favour ofutils.a1_to_rowcol
andutils.rowcol_to_a1
respectively
-
v0.4.1 Changes
July 17, 2016- ๐ Fix exception format to support Python 2.6
-
v0.4.0 Changes
June 30, 2016๐ Use request session's connection pool in HTTPSession
โ Removed deprecated ClientLogin
-
v0.3.0 Changes
December 15, 2015๐ Use Python requests instead of the native HTTPConnection object
Optimized row_values and col_values
Optimized row_values and col_values Removed the _fetch_cells call for each method. This eliminates the adverse effect on runtime for large worksheets.
Fixes #285, #190, #179, and #113
- Optimized row_values and col_values Removed the _fetch_cells call for each method. This eliminates the adverse effect on runtime for large worksheets.
Fixes #285, #190, #179, and #113
Altered insert_row semantics to utilize range This avoids issuing one API request per cell to retrieve the Cell objects after the insertion row. This provides a significant speed-up for insertions at the beginning of large sheets.
โ Added mock tests for Travis (MockSpreadsheetTest)
๐ Fixed XML header issue with Python 3
๐ Fixed Worksheet.export function and associated test
โ Added spreadsheet feed helper
โ Add CellNotFound to module exports Fixes #88
๐ Fixed utf8 encoding error caused by duplicate XML declarations
๐ Fixed AttributeError when URLError caught by HTTPError catch block Fixes #257
Added iter method to Spreadsheet class
๐ Fixed export test
โ Switched tests to oauth
-
v0.2.5 Changes
April 22, 2015- ๐ Deprecation warning for ClientLogin #210
- Redirect github pages to ReadTheDocs
- ๐ Bugfixes
-
v0.2.4 Changes
April 17, 2015- Output error response #219 #170 #194.
- โ Added instructions on how to get oAuth credentials to docs.
-
v0.2.3 Changes
March 11, 2015- ๐ Fixed issue with
Spreadsheet.del_worksheet
. - Automatically refresh OAuth2 token when it has expired.
- โ Added an
insert_row
method toWorksheet
. - ๐ Moved docs to Read The Docs.
- โ Added the
numeric_value
attribute toCell
. - โ Added title property to
Spreadsheet
. - ๐ Support for exporting worksheets.
- Added row selection for keys in
Worksheet.get_all_records
.
- ๐ Fixed issue with
-
v0.2.2 Changes
August 26, 2014- ๐ Fixed version not available for read-only spreadsheets bug
-
v0.2.1 Changes
May 10, 2014- โ Added OAuth2 support
- ๐ Fixed regression bug #130. Not every POST needs If-Match header
-
v0.2.0 Changes
May 09, 2014- ๐ New Google Sheets support.
- Fixed get_all_values() on empty worksheet.
- Bugfix in get_int_addr().
- ๐ Changed the HTTP connectivity from urllib to httlib for persistent http connections.