Skip to content

Releases: burnash/gspread

v2.1.1

07 Apr 12:39

Choose a tag to compare

v2.1.0

06 Apr 22:28

Choose a tag to compare

v2.0.1

01 Apr 18:21

Choose a tag to compare

  • Fixed #518
  • Include v4 in setup.py
  • Fetch all spreadsheets in Spreadsheet.list_spreadsheet_files (#522 by @aiguofer)

v2.0.0

11 Mar 14:50

Choose a tag to compare

  • Ported the library to Google Sheets API v4.
    This is a transition release. The v3-related code is untouched, but v4 is used by default. It is encouraged to move to v4 since the API is faster and has more features.

    API v4 is a significant change from v3. Some methods are not backward compatible, so there's no support for this compatibility in gspread either.

    These methods and properties are not supported in v4:

    • Spreadsheet.updated
    • Worksheet.updated
    • Worksheet.export()
    • Cell.input_value

v0.6.2

20 Dec 19:38

Choose a tag to compare

  • Remove deprecated HTTPError

v0.6.1

20 Dec 18:17

Choose a tag to compare

  • Fixed error when inserting permissions #431

v0.6.0

15 Dec 02:20

Choose a tag to compare

  • Added spreadsheet sharing functionality
  • Added csv import
  • Fixed bug where list of sheets isn't cleared on refetch

#429, #386

v0.5.1

14 Dec 15:56

Choose a tag to compare

  • Fixed a missing return value in utils.a1_to_rowcol #428
  • Fixed url parsing in Client.open_by_url #427
  • Added updated property to Spreadsheet objects #426

v0.5.0

12 Dec 00:31

Choose a tag to compare

  • 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

16 Jul 22:11

Choose a tag to compare

  • Fix an exception format to support Python 2.6