Skip to content

Instantly share code, notes, and snippets.

@nikushi
Created August 23, 2013 01:22
Show Gist options
  • Save nikushi/6314612 to your computer and use it in GitHub Desktop.
Save nikushi/6314612 to your computer and use it in GitHub Desktop.
use warnings;
use strict;
use Encode qw/from_to _utf8_off/;
use Net::Google::Spreadsheets;
my $user='id';
my $pass='pass';
my $service = Net::Google::Spreadsheets->new(
username => $user,
password => $pass
);
my $assets_sheet = $service->spreadsheet(
{
key => 'キー'
}
);
my $worksheet = $assets_sheet->worksheet(
{
title => "シート名",
}
);
my @row = $worksheet->rows;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment