Giter VIP home page Giter VIP logo

google-spreadsheets-table's Introduction

google-spreadsheets-table

A cached Google Spreadsheets table over segmentio/google-spreadsheets.

Install

$ npm install segmentio/google-spreadsheets-table

Example

Initialize the Sheet

var Table = require('google-spreadsheets-table');

var table = Table(worksheet)
  .headerRow(1)
  .idColumn(1)
  .flushAt(ms('10s'));

Update a Cell

table.set('hearthrob', { email: '[email protected]'});
table.set('hearthrob' { name: 'Gordon Hearthrob'});
table.set('calvin4', { email: '[email protected]'});
table.set('calvin4' { name: 'Calvin French-Owen'});

Flush Updates

table.flush();

Full Example

var spreadsheets = require('google-spreadsheets');
var Table = require('google-spreadsheets-table');

spreadsheets
  .login('username', 'password')
  .key('0AvP3ixW_RotVdHdnWDZvUHhnWWhHQy0xZFViN3hUSmc')
  .open(function (err, spreadsheet) {
    var worksheets = spreadsheet.worksheets;
    var worksheet = spreadsheet.select(worksheets[0].id);
    var table = Table(worksheet);
  });

API

Table(worksheet)

Create a cached Google Spreadsheet around a worksheet.

.set(id, attrs, callback)

Set the attrs on the spreadsheet row associated with id.

.flush(callback)

Flushes the update changes to the spreadsheet.

License

WWWWWW||WWWWWW
 W W W||W W W
      ||
    ( OO )__________
     /  |           \
    /o o|    MIT     \
    \___/||_||__||_|| *
         || ||  || ||
        _||_|| _||_||
       (__|__|(__|__|

google-spreadsheets-table's People

Stargazers

Ilya Volodarsky avatar Isao Yagi avatar Gordon Wintrob avatar

Watchers

TJ Holowaychuk avatar Stephen Mathieson avatar James Cloos avatar Achille avatar Rakesh Nair avatar Niels avatar Chris Sperandio avatar Han avatar Jenn Boyce avatar Alex Noonan avatar Chris Nixon avatar

google-spreadsheets-table's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.