Mayur

Results 13 comments of Mayur

Any ideas when this is will be fixed? I am also having issues with this, it seems to happen as the callback is constantly being called so the loading thinks...

I actually noticed the Earth api is down on Nasa's site, due to another api being deprecated that it relied on: https://api.nasa.gov/

Also when I try to use it within my script it fails saying: ``` snappy.UncompressError: Error while decompressing: invalid input ``` However I have a bytes like object: ``` with...

It is compressed in S3, then I download it.

> > It is compressed in S3 > > How was is created? It is fed through Firehose and then the Firehose handles the compression.

> So, this library has three decompress functions, you should try each. Otherwise, you will need to get the detail of what firehose is doing for you. This isn't a...

> Sorry, that doesn't give us much to work from. Also, don't forget `hadoop_stream_decompress`. It just means that is compresses into a specified format, with the ability to choose from:...

> Also, don't forget `hadoop_stream_decompress`. ``` with open('libs/temp.snappy', 'rb') as f: data = f.read() decom = snappy.hadoop_snappy.StreamDecompressor() un = decom.decompress(data) ``` This is the only thing that didn't throw an...

> I have tried to follow the readme and write this line from my REPL like so: > > ``` > python -m snappy -d temp.snappy temp.txt > ``` >...

> You meant stream_**de**compress ? Yes, it still doesn't work, throws me `snappy.UncompressError: stream missing snappy identifier` I tried to do what they done [here](https://github.com/andrix/python-snappy/issues/40#issuecomment-281192705) but still did not work....