this repo has no description
1opam-version: "2.0"
2maintainer: "Yann Hamdaoui <yann.hamdaoui@gmail.com>"
3authors: "Yann Hamdaoui <yann.hamdaoui@gmail.com>"
4homepage: "https://github.com/yannham/mechaml"
5synopsis: "A functional web scraping library"
6description: """
7Mechaml is a functional web scraping library that allows to :
8 - Fetch web content
9 - Analyze, fill and submit HTML forms
10 - Handle cookies, headers and redirections
11"""
12bug-reports: "https://github.com/yannham/mechaml/issues"
13license: "LGPL-3.0-only"
14dev-repo: "git+https://github.com/yannham/mechaml.git"
15doc: "https://yannham.github.io/mechaml/"
16tags: ["web" "scraping" "mechanize" "http" "client"]
17build: [
18 ["dune" "build" "-p" name "-j" jobs]
19 ["dune" "build" "@doc" "-p" name ] {with-doc}
20 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
21]
22depends: [
23 "dune" {>= "1.8.0"}
24 "ocaml-syntax-shims" {build}
25 "cohttp" {>= "0.21.0" & < "3.0.0"}
26 "cohttp-lwt"
27 "cohttp-lwt-unix"
28 "lwt"
29 "uri"
30 "lambdasoup" {< "0.7.0"}
31 "alcotest" {with-test & >= "0.8.0" & < "1.4.0"}
32 "ocaml" {>= "4.03.0"}
33]
34url {
35 src:
36 "https://github.com/yannham/mechaml/releases/download/1.2.0/mechaml-1.2.0.tbz"
37 checksum: [
38 "sha256=dcf23595edacbcec1946affb3817b791f3edc176bd4bad2f6b5d74965043d6bd"
39 "sha512=a0c2ed7dee79a44bb4ee5eb82500754b6cc0a3ca1ac40b3a66217e868d889ba9ecce9df85ce7ce95d958372ac8aedb5fd5523c0e3b6c15adcdc43f241f0ec5db"
40 ]
41}