An open API service indexing awesome lists of open source software.

https://github.com/pothos/brotlipython

pure python brotli decoder
https://github.com/pothos/brotlipython

brotli brotli-decoder brotli-decompressor python-brotli python-brotli-decoder

Last synced: 6 months ago
JSON representation

pure python brotli decoder

Awesome Lists containing this project

README

          

super slow pure python brotli decoder, please ignore

ported from brotli-rs to a minimal python subset and now back to standard python (but unpolished) as a side project

usage:

from brotlipython import brotlidec
in = open('test.br', 'rb').read()
outbuf = []
dec = brotlidec(in, outbuf) # also returns bytes(outbuf) again

or see `./brotlipython.py --help`