I got several strings like :
BZh91AY&SYA\xaf\x82\r\x00\x00\x01\x01\x80\x02\...
After googling a whlke, found that those seems to be Python bz2 encoded strings, since "BZh91AY" appears to be a bz2 standard header.
Now I need to decode such strings. I've tried some components (SharpCompress and SharpZipLib) to attempt the decoding, but failed miserably.
Can someone point me towards a viable solution that doesn't involve python coding (I don't want to create a python's bz2 wrapper with IronPython)?
Thanks.