google-env 0.4.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

googleenv 0.4.0

Google Env
A simple utility which pulls development-time values from a Google spreadsheet. This
allows you to share dev secrets in a semi-secure way.
Usage


You need an Oauth credentials JSON file. One person needs to register an
Oauth app in the Google Console and then download the credentials JSON file.
Place this file in $HOME/google_env_creds.json.


Now create a .env file in your code project. Reference the spreadsheet
which contains your secrets at the top of the file:


.env:
# GOOGLE_ENV: https://docs.google.com/spreadsheets/d/17fcDBp5tez9JFtRwucDW5-wq3jgmzq8s-oWcnUljyR0!Sheet1

Note that the sheet name should be after the '!' at the end.


Install the google_env package:
pip install google_env


Now run the google_env script directory containing your .env file
$ google_env


The first time you run it you will be sent through the Google Oauth flow in the browser.
Your access key to the spreadsheet will then be cached in a local file in
~/.google_env_token.
Now the contents of your spreadsheet are downloaded and inserted into the .env
file. Your spreadsheet should have 2 columns, the key and the value, with no header.
So if your sheet looks like this:




A
B




1
key1
mysecretkey1


2
AWS_ACCESS
foobar




Then the resulting .env file will be rewritten as:
# GOOGLE_ENV: https://docs.google.com/spreadsheets/d/17fcDBp5tez9JFtRwucDW5-wq3jgmzq8s-oWcnUljyR0
key1=mysecretkey1
AWS_ACCESS=foobar
# END_GOOGLE_ENV

Note that you should leave the closing comment line. This will allow you to
re-run google_env any time to update keys from the spreadsheet.
If you need to override any values, simply add a second assignment for that
key lower down in your .env file.
Doing other things with Google Sheets
This package can be used to easily retrieve information from any Google Sheet.
> import google_env
> for row in google_env.read_sheet(sheet_id, sheet_range):
# row will be an array of column values for each row in the sheet
print(row)

Where sheet_id is like 1mhs7mW7dBK_lhNYB4hZFwdF1QXWSEzl6ITsY50DGx9M and
sheet_range is a Sheets range like <name>!<range spec> like
Sheet1!A1:G20.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.