Releases: staftermath/pysuite
Releases · staftermath/pysuite
Release 0.4.0
New
- Added Google Cloud Service authentication support.
- Google Vision and Storage support
Release 0.3.1
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
andsleep
when instantiating. - All methods with
parent_ids
parameters now acceptparent_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
andsleep
when instantiating. - Added
fill_row
parameter indownload
andread_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
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
Fix:
- Fixed a bug causing library not being able to install via distribution.
Release 0.2.0
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
New
- Authentication class
- Drive class for Google drive api
- Sheet class for Google Spreadsheet api
- user manual