this repo has no description
1opam-version: "2.0"
2
3synopsis: "Easy functional HTML scraping and manipulation with CSS selectors"
4
5license: "MIT"
6homepage: "https://github.com/aantron/lambdasoup"
7doc: "https://aantron.github.io/lambdasoup"
8bug-reports: "https://github.com/aantron/lambdasoup/issues"
9
10authors: "Anton Bachin <antonbachin@yahoo.com>"
11maintainer: "Anton Bachin <antonbachin@yahoo.com>"
12dev-repo: "git+https://github.com/aantron/lambdasoup.git"
13
14depends: [
15 # As a consequence of depending on Dune, Lambda Soup requires OCaml 4.02.3.
16 "dune"
17 "markup" {>= "0.7.1"}
18 "ocaml" {>= "4.02.0" & < "5.0"}
19
20 "bisect_ppx" {dev & >= "2.0.0"}
21 "ounit" {dev}
22]
23
24build: [
25 ["dune" "build" "-p" name "-j" jobs]
26]
27
28description: """
29Lambda Soup is an HTML scraping library inspired by Python's Beautiful Soup. It
30provides lazy traversals from HTML nodes to their parents, children, siblings,
31etc., and to nodes matching CSS selectors. The traversals can be manipulated
32using standard functional combinators such as fold, filter, and map.
33
34The DOM tree is mutable. You can use Lambda Soup for automatic HTML rewriting in
35scripts. Lambda Soup rewrites its own ocamldoc page this way.
36
37A major goal of Lambda Soup is to be easy to use, including in interactive
38sessions, and to have a minimal learning curve. It is a very simple library.
39"""
40
41url {
42 src: "https://github.com/aantron/lambda-soup/archive/0.6.4.tar.gz"
43 checksum: [
44 "sha256=f171a1f95c6f5771e76a78af33da3909239929100c84705bfadd04ae4a84bd4e"
45 "md5=b697aec8575bcc543558d89317e8e047"
46 ]
47}