python-snappy icon indicating copy to clipboard operation
python-snappy copied to clipboard

Python bindings for the snappy google library

Results 35 python-snappy issues
Sort by recently updated
recently updated
newest added

Hi, I intended to use [snapista](https://github.com/snap-contrib/snapista) which is using snappy: $ grep -R 'from snappy' src/snapista/graph.py:from snappy import GPF src/snapista/operatorparams.py:from snappy import GPF src/snapista/operator.py:from snappy import GPF, jpy but unfortunately...

Fixes #143 @seperman , I don't believe the vast majority of people use anything other that `compress()` and `decompress()` (for which you may as well use cramjam directly).

Hello, Snappy Python can't guess the format for its own compressed output: ```py import io import snappy from snappy import snappy_formats values = b"What is going on?\n" def snappy_compress_file_obj(in_file, out_file):...

This adds type hints to the library, so tools such as mypy will be able to check usage (and won't complain about missing types when importing it). Tested with Python...

Hello, Seems like patch versions were used for backward incompatible changes. Example: I have the following function that works fine in 0.7.2: ``` def snappy_decompress_stream(in_file, out_file): decompress_func, read_chunk = snappy_formats.get_decompress_function(snappy_formats.DEFAULT_FORMAT,...