Safe Haskell | None |
---|
The Github Search API, as described at http://developer.github.com/v3/search/.
- searchRepos' :: Maybe GithubAuth -> String -> IO (Either Error SearchReposResult)
- searchRepos :: String -> IO (Either Error SearchReposResult)
- module Github.Data
- data GithubAuth
Documentation
searchRepos' :: Maybe GithubAuth -> String -> IO (Either Error SearchReposResult)Source
Perform a repository search. | With authentication.
searchRepos' (Just $ GithubBasicAuth "github-username" "github-password') "q=a in%3Aname language%3Ahaskell created%3A>2013-10-01&per_page=100"
searchRepos :: String -> IO (Either Error SearchReposResult)Source
Perform a repository search. | Without authentication.
searchRepos "q=a in%3Aname language%3Ahaskell created%3A>2013-10-01&per_page=100"
module Github.Data
data GithubAuth Source
user/password for HTTP basic access authentication