Created
August 23, 2013 01:22
-
-
Save nikushi/6314612 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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