ezgzipversion

# ezgzip - Simple gzip (de)compression library

ezgzip is a simple interface focused on string -> string zlib and gzip (de)compression.

Documentation is available here.

An example illustrating how to gzip compress and then decompress a string:

open Rresult

let () =
  let original = "Hello world" in
  let compressed = Ezgzip.compress original in
  let decompressed = R.get_ok (Ezgzip.decompress compressed) in
  assert (original = decompressed)

This library currently uses the zlib bindings provided by camlzip. The gzip header/footer code is based on the upstream specification.

AuthorHezekiah M. Carty <hez@0ok.org>
LicenseMIT
Published
Homepagehttps://github.com/hcarty/ezgzip
Issue Trackerhttps://github.com/hcarty/ezgzip/issues
MaintainerHezekiah M. Carty <hez@0ok.org>
Dependencies
Source [http] https://github.com/hcarty/ezgzip/archive/v0.2.0.tar.gz
md5=22057f2528e282a1af961b36f61d5271
Edithttps://github.com/ocaml/opam-repository/tree/master/packages/ezgzip/ezgzip.0.2.0/opam
Required by