servant-github: Bindings to GitHub API using servant.

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]

This package provides a servant-client based client for accessing the GitHub API v3.

The github client is provided through the Network.GitHub.GitHub monad, which provides support for managing the user-agent (a requirement for github), an authentication token, and, pagination support when the resulting value is a list.

import System.Environment
import Data.String
import Network.GitHub

main = do
   token <- fmap fromString <$> lookupEnv "GITHUB_TOKEN"
   result <- runGitHub userOrganisations token
   case result of
       Left e  ->  print e
       Right orgs -> mapM_ print orgs

Properties

Versions 0.1.0.0, 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.6
Change log None available
Dependencies aeson, base (>=4.7 && <5), either, http-link-header, servant, servant-client, servant-github, text, transformers [details]
License BSD-3-Clause
Copyright 2015 Finlay Thompson
Author Finlay Thompson
Maintainer finlay.thompson@gmail.com
Category Web
Home page http://github.com/finlay/servant-github#readme
Source repo head: git clone https://github.com/finlay/servant-github
Uploaded by finlay at 2015-12-15T02:52:53Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees