xz

Bindings to the xz (lzma) compression library xz lzma lzma2 bind crystal-bindings compression-library
0.1.2 released
naqvis/xz.cr
13
Ali Naqvi

Crystal XZ

Crystal bindings to the XZ (lzma) compression library.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      xz:
        github: naqvis/xz.cr
    
  2. Run shards install

Usage

require "xz"

XZ shard provides both Compress::XZ::Reader and Compress::XZ::Writer.

Example: decompress an xz file

require "xz"

string = File.open("file.xz") do |file|
   Compress::XZ::Reader.open(file) do |xz|
     xz.gets_to_end
   end
end
pp string

Example: compress to xz compression format

require "xz"

File.write("file.txt", "abcd")

File.open("./file.txt", "r") do |input_file|
  File.open("./file.xz", "w") do |output_file|
    Compress::XZ::Writer.open(output_file) do |xz|
      IO.copy(input_file, xz)
    end
  end
end

Contributing

  1. Fork it (https://github.com/naqvis/xz.cr/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

xz:
  github: naqvis/xz.cr
  version: ~> 0.1.2
License MIT
Crystal 0.35.0

Authors

Dependencies 0

Development Dependencies 0

Dependents 0

Last synced .
search fire star recently