Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyberdelia/lzo
lzo implements reading and writing of lzop format compressed files
https://github.com/cyberdelia/lzo
go lzo
Last synced: 5 days ago
JSON representation
lzo implements reading and writing of lzop format compressed files
- Host: GitHub
- URL: https://github.com/cyberdelia/lzo
- Owner: cyberdelia
- License: mit
- Created: 2013-07-06T00:40:28.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-08-08T00:13:37.000Z (over 3 years ago)
- Last Synced: 2024-06-18T16:56:10.094Z (5 months ago)
- Topics: go, lzo
- Language: Go
- Homepage: https://pkg.go.dev/github.com/cyberdelia/lzo
- Size: 3.66 MB
- Stars: 29
- Watchers: 4
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lzo
lzo implements reading and writing of lzo format compressed files for Go, following lzop format.
It uses the lzo C library underneath.## Installation
Download and install :
```
$ go get github.com/cyberdelia/lzo
```Add it to your code :
```go
import "github.com/cyberdelia/lzo"
```## Command line tool
Download and install:
```console
$ go get github.com/cyberdelia/lzo/cmd/lzop
```Compress and decompress:
```console
$ lzop testdata/pg135.txt
$ lzop -d testdata/pg135.txt.lzo
```