Skip to content

Commit

Permalink
fix streaming with slow python method
Browse files Browse the repository at this point in the history
(this isn't really used by anyone, but it shouldn't be left broken)
  • Loading branch information
martindurant committed Feb 28, 2024
1 parent 0862b62 commit bd61888
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 579 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
"""

packages = ['snappy']
install_requires = ['cramjam>=2.6.0', 'crc32c']
setup_requires = ['cramjam>=2.6.0', 'crc32c']
install_requires = ["cramjam"]
setup_requires = ['cramjam>=2.6.0', 'google-crc32c']

setup(
name='python-snappy',
version=version,
author='Andres Moreira',
author_email='[email protected]',
url='http://github.com/andrix/python-snappy',
url='http://github.com/intake/python-snappy',
description='Python library for the snappy compression library from Google',
long_description=long_description,
keywords='snappy, compression, google',
Expand Down
5 changes: 0 additions & 5 deletions src/snappy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,4 @@
isValidCompressed,
)

from .hadoop_snappy import (
stream_compress as hadoop_stream_compress,
stream_decompress as hadoop_stream_decompress,
)

__version__ = '0.7.0'
216 changes: 0 additions & 216 deletions src/snappy/hadoop_snappy.py

This file was deleted.

Loading

0 comments on commit bd61888

Please sign in to comment.