Google Spreadsheet scripts for Coinbase and USD/BTC and USD/other currencies.
If you found this useful, donate XMR!: 44WvZj9zRXqgq3jHpemt8dLt29aDRQqdiK6ivxoCf3e65cdXbzBnHJyc2CdGWeGr36f5MBkqQBb61hus34nUVae4ND2PKx4
Made with love from Chile
| import Darwin | |
| enum Signal: Int32 { | |
| case HUP = 1 | |
| case INT = 2 | |
| case QUIT = 3 | |
| case ABRT = 6 | |
| case KILL = 9 | |
| case ALRM = 14 | |
| case TERM = 15 |
| function getJSON(aUrl,sheetname) { | |
| //var sheetname = "test"; | |
| //var aUrl = "http://pipes.yahoo.com/pipes/pipe.run?_id=286bbb1d8d30f65b54173b3b752fa4d9&_render=json"; | |
| var response = UrlFetchApp.fetch(aUrl); // get feed | |
| var dataAll = JSON.parse(response.getContentText()); // | |
| var data = dataAll.value.items; | |
| for (i in data){ | |
| data[i].pubDate = new Date(data[i].pubDate); | |
| data[i].start = data[i].pubDate; | |
| } |
| """ | |
| Distributor ID: Ubuntu | |
| Description: Ubuntu 10.04 LTS | |
| Release: 10.04 | |
| Codename: lucid | |
| Author: Adelein Rodriguez, adeleinr@gmail.com | |
| Note: This is an adaptation from a fabric script presented here: | |
| http://morethanseven.net/2009/07/27/fabric-django-git-apache-mod_wsgi-virtualenv-and-p.html | |
| Summary: This script: |