Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/memowe/hsku
Haskell library, cli and service for haiku detection
https://github.com/memowe/hsku
cli haiku haskell webservice
Last synced: about 1 month ago
JSON representation
Haskell library, cli and service for haiku detection
- Host: GitHub
- URL: https://github.com/memowe/hsku
- Owner: memowe
- License: mit
- Created: 2024-08-23T12:41:35.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-23T13:05:03.000Z (3 months ago)
- Last Synced: 2024-09-30T09:03:07.674Z (about 2 months ago)
- Topics: cli, haiku, haskell, webservice
- Language: Haskell
- Homepage: https://mirko.westermeier.de/hsku
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# hsku - Haskell Haiku detection (German)
## Build and test
You need a [modern GHC (>= 9) and cabal][ghcup].
```
$ cabal build all
$ cabal test
```[ghcup]: https://www.haskell.org/ghcup/
## Library usage example
```
$ cabal repl
λ :m + HsKu.Load Data.Maybe
λ langs <- loadLanguages
λ (lang, haiku) = fromJust $ parseHaiku langs "Decken auf dem Gras, eine Nacht lang ohne Haus - reich nur durch den Mond."
λ name lang
"Deutsch"
λ haiku
("Decken auf dem Gras,","eine Nacht lang ohne Haus -","reich nur durch den Mond.")
```## Web service
```
$ cabal run hsku-webservice
```
Haiku parsing with JSON results:
```
$ curl http://localhost:8080/haiku?input=42
{"result":null}
$ curl --get \
--data-urlencode "input=Decken auf dem Gras, eine Nacht lang ohne Haus - reich nur durch den Mond" \
http://localhost:8080/haiku
{"result":["Decken auf dem Gras,","eine Nacht lang ohne Haus -","reich nur durch den Mond"]}
```## Simple JSON CLI
```
$ cabal run hsku-cli
42
{"result":null}
$ cabal run hsku-cli
Decken auf dem Gras, eine Nacht lang ohne Haus - reich nur durch den Mond.
{"result":["Decken auf dem Gras,","eine Nacht lang ohne Haus -","reich nur durch den Mond."]}
```## Author and license
(c) 2024 Mirko Westermeier
Licensed under the MIT license (see [LICENSE][license]) for details.
[license]: LICENSE