Skip to content

OpenSourceOrg/haskell-opensource

Repository files navigation

haskell-opensourceapi

haskell-opensource is an API Wrapper that allows you to query the Open Source License API with Haskell.

Example

import Network.Protocol.OpenSource.License (licenseById, olName)
import Control.Monad.Trans.Except (runExceptT)

main = do
    gpl <- runExceptT $ licenseById "LGPL-3.0"
    putStrLn $ case gpl of
        Right license -> show $ olName license
        Left  error   -> "Error during license request!" ++ show error

Installing

cabal install opensource

About

Haskell API Bindings to the Open Source License API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •