aboutsummaryrefslogtreecommitdiffhomepage
path: root/tap_google_sheets
Commit message (Collapse)AuthorAgeFilesLines
* cleanup: remove useless use of if conditionuse-google-api-clientPaul B2020-11-231-19/+19
|
* feat: use the official Google API python libraryPaul B2020-11-215-188/+152
| | | | | | | | | | | | | | | | | These changes will make use of the official `google-api-python-client` library instead of relying on manual HTTP requests. Therer are two main advantages of these changes: - the Tap doesn't need to worry about the Google API interaction details as its hidden away by the Google official lib. - We can use the authentication helpers from the lib to ease the credentials management for the user. In that way the current PR implements two auth mean: installed OAuth client authentication or Service Accounts authentication. The only downside of this change is that it breaks the current `config.json` parameters for existing users.
* return an empty list when values is missing (#17)Kyle Allan2020-07-151-1/+1
|
* v.1.0.3 Fix slashes and discovery errors (#15)v1.0.3Jeff Huth2020-04-292-12/+30
| | | Fix issues: slashes `/` in sheet name 404 error; Discovery malformed sheet error when 2nd row final column value(s) are `NULL`.
* Skip malformed sheets (#13)cosimon2020-04-171-168/+171
| | | | | | | * Skip malformed sheets * Move the try except block up a level for readability sake * Remove debug code
* Emit state during incremental sync where bookmark not exceeded (#11)v1.0.1Scott Coleman2020-03-191-0/+2
|
* v.0.0.4 Logic to skip empty sheets (#4)v0.0.4Jeff Huth2020-02-242-285/+294
| | | | | | | | | | | | | | | | | | * v.0.0.2 schema and sync changes Change number json schema to anyOf with multipleOf; skip empty rows; move write_bookmark to end of sync.py * v.0.0.3 Sync activate version and error handling Update README.md documentation. Improved logging and handling of errors and warnings. Better null handling in Discovery and Sync. Fix issues with activate version messages. * v.0.0.4 Skip empty worksheets Add logic to skip empty worksheets in Discovery and Sync mode. * schema.py fix number datatype issue Nomber datatypes are being created as strings in targets. The JSON schema order needs to be adjusted so that order is null, number, string.
* v.0.0.3 Sync error handling, activate version, documentation (#2)v0.0.3Jeff Huth2020-01-092-29/+116
| | | | | | | | | | * v.0.0.2 schema and sync changes Change number json schema to anyOf with multipleOf; skip empty rows; move write_bookmark to end of sync.py * v.0.0.3 Sync activate version and error handling Update README.md documentation. Improved logging and handling of errors and warnings. Better null handling in Discovery and Sync. Fix issues with activate version messages.
* v.0.0.2 schema and sync changes (#1)v0.0.2Jeff Huth2019-12-043-99/+160
| | | Change number json schema to anyOf with multipleOf; skip empty rows; move write_bookmark to end of sync.py
* pylint and testingv0.0.1Jeff Huth2019-11-155-67/+75
| | | | pylint and testing
* client.py rate limit, sync.py changesJeff Huth2019-11-154-91/+275
| | | | client.py rate limit, fix json schemas, sync.py many changes
* Remove transform importJeff Huth2019-11-131-1/+0
| | | | Remove transform import
* Update streams.py and READMEJeff Huth2019-11-131-1/+2
| | | | Update streams.py and README
* Initial commitJeff Huth2019-11-1310-0/+1090
Discovery mode works. Still working on normal sync.