this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/aantron/lambda-soup"
3doc: "http://aantron.github.io/lambda-soup"
4bug-reports: "https://github.com/aantron/lambda-soup/issues"
5license: "BSD-3-Clause"
6
7authors: "Anton Bachin <antonbachin@yahoo.com>"
8maintainer: "Anton Bachin <antonbachin@yahoo.com>"
9dev-repo: "git+https://github.com/aantron/lambda-soup.git"
10depends: [
11 "ocaml" {< "5.0"}
12 "jbuilder" {>= "1.0+beta10"}
13 "markup" {>= "0.7.1"}
14 "ounit" {with-test}
15]
16build: [
17 ["jbuilder" "build" "-p" name "-j" jobs]
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."""
31url {
32 src: "https://github.com/aantron/lambda-soup/archive/0.6.2.tar.gz"
33 checksum: [
34 "sha256=af607ba7bd01d17a1b26aca1bfad3aeefad5e2bead4aa8d4f053842e15ffbee3"
35 "md5=d8c446b0e1a5e0f21f4327674712b6bc"
36 ]
37}