All Versions
49
Latest Version
Avg Release Cycle
70 days
Latest Release
209 days ago

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 to Worksheet.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 and Worksheet.get_addr_int in favour of utils.a1_to_rowcol and utils.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 to Worksheet.
    • 🚚 Moved docs to Read The Docs.
    • ➕ Added the numeric_value attribute to Cell.
    • ➕ Added title property to Spreadsheet.
    • 👌 Support for exporting worksheets.
    • Added row selection for keys in Worksheet.get_all_records.
  • 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.