envparse: Parse environment variables
Here's a simple example of a program that uses envparse
's parser:
module Main (main) where import Control.Monad (unless) import Env data Hello = Hello { name :: String, quiet :: Bool } hello :: IO Hello hello = Env.parse (header "envparse example") $ Hello <$> var (str <=< nonempty) "NAME" (help "Target for the greeting") <*> switch "QUIET" (help "Whether to actually print the greeting") main :: IO () main = do Hello {name, quiet} <- hello unless quiet $ putStrLn ("Hello, " ++ name ++ "!")
The NAME
environment variable is mandatory and contains the name of the person to
greet. QUIET
, on the other hand, is an optional boolean flag, false by default, that
decides whether the greeting should be silent.
If the NAME
variable is undefined in the environment then running the program will
result in the following help text:
envparse example Available environment variables: NAME Target for the greeting QUIET Whether to actually print the greeting Parsing errors: NAME is unset
[Skip to Readme]
Modules
[Index] [Quick Jump]
Downloads
- envparse-0.6.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1.0, 0.2.0, 0.2.1, 0.2.2, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.4, 0.4.1, 0.5.0, 0.5.2, 0.6.0 (info) |
---|---|
Change log | CHANGELOG.markdown |
Dependencies | base (>=4.6 && <5), containers [details] |
Tested with | ghc ==8.0.2, ghc ==8.2.2, ghc ==8.4.3 |
License | BSD-3-Clause |
Copyright | 2015 Matvey Aksenov |
Author | Matvey Aksenov |
Maintainer | matvey.aksenov@gmail.com |
Category | System |
Home page | https://supki.github.io/envparse |
Source repo | head: git clone https://github.com/supki/envparse this: git clone https://github.com/supki/envparse(tag 0.6.0) |
Uploaded | by MatveyAksenov at 2024-08-14T10:50:09Z |
Distributions | LTSHaskell:0.5.0, NixOS:0.5.0, Stackage:0.6.0 |
Reverse Dependencies | 16 direct, 33 indirect [details] |
Downloads | 9335 total (106 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2024-08-14 [all 1 reports] |