Net::Google::Sheets

API access to Google Sheets

Net::Google::Sheets

Simple API access to Google Sheets, using OAuth2::Client::Google

Install

zef install Net::Google::Sheets 

Follow the HOW-TO to make a client_id.json in your script dir (eg. /bin for /bin/synopsis)

Synopsis

#!/usr/bin/env raku
use Net::Google::Sheets;

my $session = Session.new;

my %sheets = $session.sheets;
my $id = %sheets<AWS_EC2_Sizes_test>;

# get values from Sheet1
my $sheet1 = Sheet.new(:$session, :$id, range => 'Sheet1');
my @vals = $sheet1.values;
dd @vals;

# put values into Sheet2
my $sheet2 = Sheet.new(:$session, :$id, range => 'Sheet2');
$sheet2.values: @vals;

# clear Sheet2
$sheet2.clear;

Copyright

copyright(c) 2023-2024 Henley Cloud Consulting Ltd.

Net::Google::Sheets v0.0.4

API access to Google Sheets

Authors

  • librasteve

License

Artistic-2.0

Dependencies

OAuth2::Client::GoogleJSON::FastHTTP::UserAgentURI::Encode

Test Dependencies

Provides

  • Net::Google::Sheets

Documentation

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.

Built with Podlite — the markup and publishing tools behind this site.