• Stars
    star
    267
  • Rank 148,011 (Top 4 %)
  • Language
    Go
  • License
    zlib License
  • Created over 8 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Go bindings for unarr (decompression library for RAR, TAR, ZIP and 7z archives)

go-unarr

Build Status GoDoc Go Report Card

Golang bindings for the unarr library from sumatrapdf.

unarr is a decompression library and CLI for RAR, TAR, ZIP and 7z archives.

GoDoc

See https://pkg.go.dev/github.com/gen2brain/go-unarr

Install CLI

go install github.com/gen2brain/go-unarr/cmd/unarr@latest

Example

unarr ./example.7z ./example/

Build

For one-off builds:

go build -o ./unarr ./cmd/unarr/*.go

For multi-platform cross-compile builds:

goreleaser --snapshot --skip-publish --rm-dist

Library Examples

Install Library

go get -v github.com/gen2brain/go-unarr

Open archive

a, err := unarr.NewArchive("test.7z")
if err != nil {
    panic(err)
}
defer a.Close()

Read first entry from archive

err := a.Entry()
if err != nil {
    panic(err)
}

data, err := a.ReadAll()
if err != nil {
    panic(err)
}

List contents of archive

list, err := a.List()
if err != nil {
    panic(err)
}

Read known filename from archive

err := a.EntryFor("filename.txt")
if err != nil {
    panic(err)
}

data, err := a.ReadAll()
if err != nil {
    panic(err)
}

Read first 8 bytes of the entry

err := a.Entry()
if err != nil {
    panic(err)
}

data := make([]byte, 8)

n, err := a.Read(data)
if err != nil {
    panic(err)
}

Read all entries from archive

for {
    err := a.Entry()
    if err != nil {
        if err == io.EOF {
            break
        } else {
            panic(err)
        }
    }

    data, err := a.ReadAll()
    if err != nil {
        panic(err)
    }
}

Extract contents of archive to destination path

_, err := a.Extract("/tmp/path")
if err != nil {
    panic(err)
}

More Repositories

1

beeep

Go cross-platform library for sending desktop notifications, alerts and beeps
Go
1,321
star
2

raylib-go

Go bindings for raylib, a simple and easy-to-use library to enjoy videogames programming.
C
1,246
star
3

cam2ip

Turn any webcam into an IP camera
Go
812
star
4

url2img

HTTP server with API for capturing screenshots of websites
Go
530
star
5

dlgs

Go cross-platform library for displaying dialogs and input boxes
Go
377
star
6

go-fitz

Golang wrapper for the MuPDF Fitz library
C
339
star
7

malgo

Mini audio library
C
256
star
8

iup-go

Cross-platform UI library with native controls
Go
250
star
9

goiv

Small and simple image viewer written in pure Go.
Go
201
star
10

x264-go

Go bindings for x264
Go
194
star
11

cbconvert

CBconvert is a Comic Book converter
Go
155
star
12

shm

System V shared memory functions in pure Go.
Go
122
star
13

mpeg

MPEG-1 Video decoder, MP2 Audio decoder and MPEG-PS Demuxer in pure Go
Go
113
star
14

bukanir

Bukanir streams movies and TV shows from bittorrent magnet links
Java
85
star
15

aac-go

Go bindings for vo-aacenc
Go
54
star
16

gsmgo

GSMGo is SMS HTTP server with REST API
Go
50
star
17

keepalived_exporter

Keepalived Prometheus Exporter
Go
41
star
18

go-sdl2-android-example

Go-SDL2 example running on Android
Java
32
star
19

vov

VoV is a high score game for Android
Go
30
star
20

volti

Volti is GTK+ application for controlling audio volume from system tray/notification area
Python
28
star
21

pyhtmleditor

PyQt WYSIWYG HTML Editor
Python
26
star
22

acra-go

Backend for Application Crash Reports for Android (ACRA)
Go
24
star
23

go-mpv

Go bindings for libmpv
Go
21
star
24

flite-go

Go bindings for Flite (festival-lite)
Go
14
star
25

jpegxl

JPEG XL image encoder/decoder
Go
11
star
26

crtaci

"Crtaći" searches YouTube, DailyMotion and Vimeo for good old cartoons
Go
10
star
27

vidextr

Simple video extractor for YouTube, DailyMotion and Vimeo in Go.
Go
10
star
28

comic-utils

Comic book archive utils
Python
6
star
29

oss

oss provides access to OSS (Open Sound System) audio interface
Go
6
star
30

svg

SVG icon decoder
Go
6
star
31

avif

AVIF image encoder/decoder
Go
5
star
32

jxl

Go decoder for JPEG XL image format
C
4
star
33

framebuffer

Fork of removed repo github.com/jteeuwen/framebuffer
Go
4
star
34

mpeg-examples

Examples for mpeg library
Go
4
star
35

go-smpeg2

Golang bindings for the smpeg2 - SDL2 MPEG Player Library
Go
4
star
36

jpegli

Go encoder/decoder for JPEG based on jpegli
Go
3
star
37

prang

A violent point-and-shoot game for android
C
2
star
38

bgradio

Qt/libVLC online radio streaming player that runs in system tray
Python
2
star
39

heic

HEIC image decoder
Go
2
star
40

webp

WebP image encoder/decoder
Go
2
star
41

vim

My Vim config
Vim Script
1
star
42

base64

Fork of goost.org/encoding/base64
Go
1
star
43

umtsmon

Qt4 port of umtsmon
C++
1
star
44

libtorrent-go

SWIG Go bindings for libtorrent-rasterbar
C++
1
star