首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Python > lzjb压缩算法的Python绑定。

lzjb压缩算法的Python绑定。

  • 资源大小:4.61 MB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: python Compression lzjb

资 源 简 介

Python binding for LZJB compression algorithm (http://en.wikipedia.org/wiki/LZJB). Getting Started Install The simplest way is to download compiled binaries and copy .pyd (for windows) or .so (for linux) to your python site-packages. You can compile by yourself using our project files (Visual Studio for Windows, Eclipse project or makefile for Linux). Example ``` import string import PyLZJB s = string.letters * 50000 c = PyLZJB.compress(s) print "len(s): %ld, len(c): %ld" % (len(s), len(c)) d = PyLZJB.decompress(c) print d == s ```
VIP VIP
0.174881s