kmundnic / GZip.jl

A Julia interface for gzip functions in zlib

Home Page:https://gzipjl.readthedocs.org/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GZip.jl: A Julia interface for gzip functions in zlib

GZip GZip Build Status Coverage Status

This module provides a wrapper for the gzip related functions of zlib, a free, general-purpose, legally unencumbered, lossless data-compression library. These functions allow the reading and writing of gzip files.

Install with Pkg.add("GZip") at the Julia prompt.

Usage

Typical usage would be something like

import GZip

fh = GZip.open("infile.gz")
s = readline(fh)
...
close(fh)


...
s = "gzip is part of zlib, a free, general-purpose, " *
    "legally unencumbered, lossless data-compression library"

fh = GZip.open("outfile.gz", "w")
write(fh, s)
...
close(fh)

See the documentation for additional information.

About

A Julia interface for gzip functions in zlib

https://gzipjl.readthedocs.org/en/latest/

License:MIT License


Languages

Language:Julia 100.0%