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" {>= "1.0.0"} 18 "ocaml" {>= "4.02.0" & < "5.0"} 19 20 "bisect_ppx" {dev & >= "2.0.0"} 21 "ounit2" {with-test} 22] 23 24build: [ 25 ["dune" "build" "-p" name "-j" jobs] 26 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 27] 28 29description: """ 30Lambda Soup is an HTML scraping library inspired by Python's Beautiful Soup. It 31provides lazy traversals from HTML nodes to their parents, children, siblings, 32etc., and to nodes matching CSS selectors. The traversals can be manipulated 33using standard functional combinators such as fold, filter, and map. 34 35The DOM tree is mutable. You can use Lambda Soup for automatic HTML rewriting in 36scripts. Lambda Soup rewrites its own ocamldoc page this way. 37 38A major goal of Lambda Soup is to be easy to use, including in interactive 39sessions, and to have a minimal learning curve. It is a very simple library. 40""" 41 42url { 43 src: "https://github.com/aantron/lambdasoup/archive/0.7.2.tar.gz" 44 checksum: [ 45 "sha256=10884459bffa3777173943b4458b4b6dddcec4a5f6c13341fb6e93faed6a43c2" 46 "md5=53267dc41b68c885a483ba317536a4f4" 47 ] 48}