8000 GitHub - wildart/GZip.jl: A Julia interface for gzip functions in zlib
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

wildart/GZip.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Julia 100.0%
0