Popularity
6.9
Growing
Activity
0.0
Stable
5
9
4

Monthly Downloads: 13
Programming language: Haskell
License: MIT License
Tags: Network    
Latest version: v0.1.1.0

opensource alternatives and similar packages

Based on the "Networking" category.
Alternatively, view opensource alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of opensource or a related project?

Add another 'Networking' Package

README

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


*Note that all licence references and agreements mentioned in the opensource README section above are relevant to that project's source code only.