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 "markup" {>= "0.7"} 18] 19synopsis: "Easy functional HTML scraping and manipulation with CSS selectors" 20description: """ 21Lambda Soup is an HTML scraping library inspired by Python's Beautiful Soup. It 22provides lazy traversals from HTML nodes to their parents, children, siblings, 23etc., and to nodes matching CSS selectors. The traversals can be manipulated 24using standard functional combinators such as fold, filter, and map. 25 26The DOM tree is mutable. You can use Lambda Soup for automatic HTML rewriting in 27scripts. Lambda Soup rewrites its own ocamldoc page this way. 28 29A major goal of Lambda Soup is to be easy to use, including in interactive 30sessions, and to have a minimal learning curve. It is a very simple library.""" 31flags: light-uninstall 32url { 33 src: "https://github.com/aantron/lambda-soup/archive/0.6.tar.gz" 34 checksum: [ 35 "sha256=32692d1f9b0674793aac7c6d04d56897f9f26f87294e08a93ebf19a15c671d50" 36 "md5=963757668dae20f4ab1d90c3dcd99753" 37 ] 38}