servant-github: Bindings to GitHub API using servant.

[ bsd3, library, program, web ] [ Propose Tags ]

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

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.6
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:53:55Z
Distributions
Executables servant-github-example
Downloads 3863 total (17 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-12-15 [all 1 reports]