aboutsummaryrefslogtreecommitdiffhomepage
path: root/tap_google_sheets/streams.py
Commit message (Collapse)AuthorAgeFilesLines
* feat: use the official Google API python libraryPaul B2020-11-211-15/+13
| | | | | | | | | | | | | | | | | 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.
* v.0.0.2 schema and sync changes (#1)v0.0.2Jeff Huth2019-12-041-1/+9
| | | 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-151-4/+3
| | | | pylint and testing
* Update streams.py and READMEJeff Huth2019-11-131-1/+2
| | | | Update streams.py and README
* Initial commitJeff Huth2019-11-131-0/+66
Discovery mode works. Still working on normal sync.