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-or-later"
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" & < "5.0.0"}
26 "cohttp-lwt"
27 "cohttp-lwt-unix"
28 "lwt"
29 "uri"
30 "lambdasoup" {< "0.8.0"}
31 "alcotest" {with-test & >= "0.8.0"}
32 "ocaml" {>= "4.03.0"}
33]
34url {
35 src: "https://github.com/yannham/mechaml/archive/1.2.1.tar.gz"
36 checksum: [
37 "md5=5c04d389b4f167ee03fda1b85b7b8099"
38 "sha512=269eeba6a3b9e178f1c9d2e9d6569d113aeb14094485069f1958d5975d92b72b4f2c8cb6e5935f66a767cde9e955c0432539344e014abb4540389624dd4ee9c7"
39 ]
40}