mirror of
https://github.com/google/brotli.git
synced 2026-09-22 06:35:52 +00:00
golang support #41
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hnsl on GitHub (Sep 28, 2015).
It would be nice to have some wrapper or native implementation for golang.
@gyf19 commented on GitHub (Sep 29, 2015):
+1
@fxfactorial commented on GitHub (Sep 29, 2015):
You could always write one, the code is not that bad and you can take inspiration from the their python bindings, or my OCaml bindings, https://github.com/fxfactorial/ocaml-brotli/blob/master/src/brotli_stubs.c#L41 and there was a Lua binding available as well.
@maximecaron commented on GitHub (Oct 1, 2015):
+1
@beauhoyt commented on GitHub (Oct 24, 2015):
+1
@kothar commented on GitHub (Oct 25, 2015):
I've implemented a very limited binding for the BrotliCompressBlock and BrotliDecompressBlock functions. Stream bindings shouldn't be hard, but not sure when I will get to them, so I'd welcome anyone else's contributions in that area.
https://github.com/kothar/brotli-go
@dsnet commented on GitHub (Oct 28, 2015):
And here's another Go Brotli package: https://github.com/dsnet/compress
This is written in pure Go, but only implements the decoder for the time being.
@gyf19 commented on GitHub (Oct 31, 2015):
Cool
@anurag commented on GitHub (Apr 28, 2019):
https://github.com/andybalholm/brotli is a pure Go encoder and decoder.