-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
lambdasoup.opam
40 lines (31 loc) · 1.3 KB
/
lambdasoup.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
opam-version: "2.0"
synopsis: "Easy functional HTML scraping and manipulation with CSS selectors"
license: "MIT"
homepage: "https://github.com/aantron/lambdasoup"
doc: "https://aantron.github.io/lambdasoup"
bug-reports: "https://github.com/aantron/lambdasoup/issues"
authors: "Anton Bachin <[email protected]>"
maintainer: "Anton Bachin <[email protected]>"
dev-repo: "git+https://github.com/aantron/lambdasoup.git"
depends: [
"camlp-streams" {>= "5.0.1"}
"dune" {>= "2.7.0"}
"markup" {>= "1.0.0"}
"ocaml" {>= "4.03.0"}
"bisect_ppx" {dev & >= "2.5.0"}
"ounit2" {with-test}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
description: """
Lambda Soup is an HTML scraping library inspired by Python's Beautiful Soup. It
provides lazy traversals from HTML nodes to their parents, children, siblings,
etc., and to nodes matching CSS selectors. The traversals can be manipulated
using standard functional combinators such as fold, filter, and map.
The DOM tree is mutable. You can use Lambda Soup for automatic HTML rewriting in
scripts. Lambda Soup rewrites its own ocamldoc page this way.
A major goal of Lambda Soup is to be easy to use, including in interactive
sessions, and to have a minimal learning curve. It is a very simple library.
"""