Skip to content

Releases: staftermath/pysuite

Release 0.4.0

06 Nov 17:56
Compare
Choose a tag to compare

New

  • Added Google Cloud Service authentication support.
  • Google Vision and Storage support

Release 0.3.1

15 Oct 03:02
Compare
Choose a tag to compare

New

GMail

  • You can now utilize GMail class to write gmail using Google API. This class does not use standard SMTP protocol.

Changed

Drive

  • Many method can now retry upon quota exceeded error if you pass max_try and sleep when instantiating.
  • All methods with parent_ids parameters now accept parent_id instead. This change is due to Google Drive API change on 2020-09-30 in which a object can no longer be assigned to multiple parent folders.

Sheet

  • Many method can now retry upon quota exceeded error if you pass max_try and sleep when instantiating.
  • Added fill_row parameter in download and read_sheet method. If True, these method will attempt to fill in empty trailing cells. This change is to provide a robust way to get around the Google Spreadsheet API behavior where trailing emtpy cells are discarded. Prior to this change, if the requested sheet range has trailing empty cells, read_sheet will fail.

Release 0.3.0

05 Sep 16:00
Compare
Choose a tag to compare

New

Drive

  • list now can filter by name and list recursively
  • added copy method

Sheet

  • added create_spreadsheet
  • added create_sheet, delete_sheet and rename_sheet

Test

  • improved some test to reduce concurrent test conflict

Release 0.2.1

30 Aug 04:37
Compare
Choose a tag to compare

Fix:

  • Fixed a bug causing library not being able to install via distribution.

Release 0.2.0

30 Aug 04:09
Compare
Choose a tag to compare

Changed:

  • now token is stored as json file instead of pickles
  • you can authorize mutiple services in Authentication class. However, different list of services need to save to different tokens.
  • improved ways to get service client to be more intuitive.

Fixed

  • Fixed test path issue

Release 0.1.0

27 Aug 02:24
Compare
Choose a tag to compare

New

  • Authentication class
  • Drive class for Google drive api
  • Sheet class for Google Spreadsheet api
  • user manual