mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
Python cffi bindings #290
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 @jameshilliard on GitHub (Aug 31, 2019).
It would be handy to have pure c cffi python bindings that don't require c++ for use on both embedded systems that don't build a c++ toolchain and for pypy which performs best using cffi instead of cpython extensions. The unmaintained brotlipy fork has cffi bindings that could be adapted for this project as a build option.
@eustas commented on GitHub (Sep 9, 2019):
Will take a look, thanks!
@eustas commented on GitHub (Sep 9, 2019):
So, the use-case is to use brotli library if it is already installed?
@jameshilliard commented on GitHub (Sep 9, 2019):
Not really, it's mostly so that a c++ toolchain isn't required and so that there's an optimized version for use with pypy.
See here:
@sethmlarson commented on GitHub (Nov 17, 2020):
I'd like to mention that
brotlipyis maintained and will be migrating to the namebrotlicffito avoid name collisions in thebrotliPython namespace. This issue can likely be closed.