# Sweep
[](https://hex.pm/packages/sweep)
[](https://builds.sr.ht/~nomorepanic/sweep/commits/main/test-current.yaml?)
Easy cli parser for easy mix commands
## Usage
Sweep takes a raw string or a mix task arguments list:
```elixir
input = "hello --slug world" || ["hello", "--slug", "world"]
Sweep.parse(input, ["name"], [slug: :string])
```