Skip to content

Commit bd61888

Browse files
committed
fix streaming with slow python method
(this isn't really used by anyone, but it shouldn't be left broken)
1 parent 0862b62 commit bd61888

8 files changed

Lines changed: 53 additions & 579 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@
3939
"""
4040

4141
packages = ['snappy']
42-
install_requires = ['cramjam>=2.6.0', 'crc32c']
43-
setup_requires = ['cramjam>=2.6.0', 'crc32c']
42+
install_requires = ["cramjam"]
43+
setup_requires = ['cramjam>=2.6.0', 'google-crc32c']
4444

4545
setup(
4646
name='python-snappy',
4747
version=version,
4848
author='Andres Moreira',
4949
author_email='andres@andresmoreira.com',
50-
url='http://github.com/andrix/python-snappy',
50+
url='http://github.com/intake/python-snappy',
5151
description='Python library for the snappy compression library from Google',
5252
long_description=long_description,
5353
keywords='snappy, compression, google',

src/snappy/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,4 @@
1212
isValidCompressed,
1313
)
1414

15-
from .hadoop_snappy import (
16-
stream_compress as hadoop_stream_compress,
17-
stream_decompress as hadoop_stream_decompress,
18-
)
19-
2015
__version__ = '0.7.0'

src/snappy/hadoop_snappy.py

Lines changed: 0 additions & 216 deletions
This file was deleted.

0 commit comments

Comments
 (0)