this repo has no description
1opam-version: "2.0"
2maintainer: "Anton Bachin <antonbachin@yahoo.com>"
3authors: "Anton Bachin <antonbachin@yahoo.com>"
4homepage: "https://github.com/aantron/lambda-soup"
5bug-reports: "https://github.com/aantron/lambda-soup/issues"
6dev-repo: "git+https://github.com/aantron/lambda-soup.git"
7license: "BSD-3-Clause"
8build: [
9 [make "build"]
10]
11install: [make "ocamlfind-install"]
12remove: ["ocamlfind" "remove" "lambdasoup"]
13depends: [
14 "ocaml" {< "5.0"}
15 "ocamlfind" {build}
16 "ocamlbuild" {build}
17]
18synopsis: "Easy functional HTML scraping and manipulation with CSS selectors"
19description: """
20Lambda Soup is an HTML scraping library inspired by Python's Beautiful Soup. It
21provides lazy traversals from HTML nodes to their parents, children, siblings,
22etc., and to nodes matching CSS selectors. The traversals can be manipulated
23using standard functional combinators such as fold, filter, and map.
24
25The DOM tree is mutable. You can use Lambda Soup for automatic HTML rewriting in
26scripts. Lambda Soup rewrites its own ocamldoc page this way.
27
28A major goal of Lambda Soup is to be easy to use, including in interactive
29sessions, and to have a minimal learning curve. It is a very simple library."""
30flags: light-uninstall
31url {
32 src: "https://github.com/aantron/lambda-soup/archive/0.5.tar.gz"
33 checksum: [
34 "sha256=0bab1205a013196403ce5508f76edf9e5da3eccb5090f81fa9b5cdb6273fdac3"
35 "md5=4d87811a1c17fc7e2eedf8b659e4ebd1"
36 ]
37}