google-sheets: Library for interacting with Google Sheets API

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Warnings:


[Skip to Readme]

Properties

Versions 0.1.0.0
Change log CHANGELOG.md
Dependencies aeson (>=2.2.0 && <2.3), base (>=4.16.0 && <4.19), bytestring (>=0.11.4 && <0.12), req (>=3.13.1 && <3.14), scientific (>=0.3.7 && <0.4), text (>=2.0.2 && <2.1), vector (>=0.13.0 && <0.14) [details]
License MIT
Copyright Olli Kortelahti
Author Olli Kortelahti
Maintainer ollikortelahti@gmail.com
Category Web
Uploaded by OlliKortelahti at 2023-09-21T13:12:53Z

Modules

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for google-sheets-0.1.0.0

[back to package description]

Haskell Google Sheets

A Haskell library for interacting with the Google Sheets API.

Usage example


import Web.Google.Sheets

main :: IO ()
main = do
    let token = "..."
        range = RangeWithSheetName (Just (FullRange 0 0 2 0)) sheetName
        spreadsheetId = "..."
    value :: Either String [[Text]] <- runReq defaultHttpConfig (getValues token Nothing spreadsheetId range defaultGetValueParams)
    print value

Todo