Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #24 from myoung34/google
Browse files Browse the repository at this point in the history
Add google sheets emitter
  • Loading branch information
myoung34 authored Aug 16, 2020
2 parents 2a8ef68 + 96b6e53 commit 79f54a7
Show file tree
Hide file tree
Showing 10 changed files with 553 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ ignored-modules=bluetooth
# List of class names for which member attributes should not be checked (useful
# for classes with dynamically set attributes). This supports the use of
# qualified names.
ignored-classes=optparse.Values,thread._local,_thread._local
ignored-classes=optparse.Values,thread._local,_thread._local,Resource

# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The Tilt supports writing to a google doc which you could use with something lik
* InfluxDB
* Datadog (dogstatsd)
* SQLite
* Google Sheets (experimental/advanced)

## Usage ##

Expand All @@ -40,6 +41,13 @@ logging_level = DEBUG # defaults to INFO
# stdout example
[stdout]
[google]
# This is advanced. TODO: write up how to provide an access/refresh token
refresh_token = 11111111111111111111111111
client_id = 111111-1111.apps.googleusercontent.com
client_secret = 1111111111111111
spreadsheet_id = 1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms
# SQLite example
[sqlite]
file = /etc/tilty/tilt.sqlite
Expand Down
Loading

0 comments on commit 79f54a7

Please sign in to comment.