@hackage / github-data

Access to the GitHub API, v3.

Version Deprecated package0.18

About

Metadata

  • Last updated , by MatthewFarkasDyck
  • License BSD-3-Clause
  • Categories Network Development
  • Maintained by: M Farkas-Dyck <strake888@gmail.com>

  • Lottery factor: 0

Links

Installation

This package has been deprecated

Tested Compilers

  1. 8.0.2
  2. 7.10.3

Package Flags

Use the -f option with cabal commands to enable flags

    aeson-compat (on by default)

    Whether to use aeson-compat or aeson-extra

Readme

Fork of github, with data types only

The GitHub API provides programmatic access to the full GitHub Web site, from Issues to Gists to repos down to the underlying git data like references and trees. This library wraps all of that, exposing a basic but Haskell-friendly set of functions and data structures.

For supported endpoints see GitHub module.

import qualified GitHub as GH

main :: IO ()
main = do
    possibleUser <- GH.executeRequest' $ GH.userInfoR "phadej"
    print possibleUser

For more of an overview please see the README: https://github.com/phadej/github/blob/master/README.md