Looking to use FastLZ in Python, or something similar. Tried Google and didn’t find anything. Wondering if there is another algorithm with similar performance available in Python?
Looking to use FastLZ in Python, or something similar. Tried Google and didn’t find
Share
What about using
ctypesto call directly intofastlz.so(or.dllas the case may be)? It seems to have only 3 entry points, so wrapping them inctypesshould not be hard. Yes, SWIG or a custom C API wrapper should be almost as trivial, butctypeslets you start experimenting right now even if you don’t have a compiler (as long as you can get a working DLL/so of FastLZ for your platform)… hard to beat!-)