DataPitcher send SQL result data to your Google Spreadsheet.
Add this line to your application's Gemfile:
gem 'data_pitcher'
Download and install by running:
$ bundle install
Initialize with:
$ bundle exec rails generate data_pitcher:install
This adds the following files which are used for configuration:
- config/data_pitcher.yml
- config/initializer/data_pitcher.rb
Check the comments in each file for more information.
DataPicther use a service account for accessing Google Spreadsheet. Service account can only access documents explicitly shared (or created) with the service account. It means that your program can only access documents that can be accessed with your service account.
To use a service account, follow these steps:
- Go to the credentials page in the Google Developer Console.
- Create a new project, or select an exisiting project.
- Click "Create credentials" -> "Service account".
- Click "Create" and download the keys a JSON file.
- Activate the Drive API for your project in the Google API Console.
- Rename your JSON file to "service_account.json", and put to "[RAILS_ROOT]/config/service_account.json"
Optionally, you can change the path, and the file name. When you change these items, please change the following code so as not to forget.
# config/initializer/data_pitcher.rb
DataPitcher.configure do |config|
config.google_service_account_json_path = Rails.root.join('config', 'service_account.json')
end
DataPicther sends SQL results to the specified spreadsheet. To do this, you need to set the key of the destination spreadsheet and the path to the SQL file.
For example:
- Spreadsheet URL:
https://docs.google.com/spreadsheets/d/1QlOBVmsEau8EupE5Kj7AqoHLQTjInoq0GpwPkW7_WdU/edit#gid=0
- SQL file path:
[RAILS_ROOT]/lib/sqls/conversion_rates.sql
# config/data_pitcher.yml
data_pitcher:
- spreadsheet_key: 1QlOBVmsEau8EupE5Kj7AqoHLQTjInoq0GpwPkW7_WdU
worksheet_title: Sheet2 # Optional. Using the first worksheet if omitted
sql_path: <%= Rails.root.join('lib', 'sqls', 'conversion_rates.sql') %>
To send multiple SQLs to multiple spreadsheets, add them to the array in the YAML file.
The easiest way is to set the following Rake task to cron. This task executes all the commands defined in the YAML file.
$ bundle exec rake data_pitcher:export:run
Or, you can manually execute sending data programmatically as follows:
DataPitcher::Spreadsheet.new('<SPREADSHEET KEY>').replace_worksheet_with_query('<SQL QUERY STRING>') # When using the first worksheet
DataPitcher::Spreadsheet.new('<SPREADSHEET KEY>', '<WORKSHEET TITLE>').replace_worksheet_with_query('<SQL QUERY STRING>')
By executing the following command, you can check whether the definition of YAML file is correct without actually sending data.
$ bundle exec rake data_pitcher:export:dry_run
Contribution directions go here.
The gem is available as open source under the terms of the MIT License.