Full-javascript parser for Python's pickle format.
It currently supports most opcodes for:
- protocol 0
- protocol 1
- protocol 2
npm install jpickle
Here is a basic example for parsing a pickled string:
var jpickle = require('jpickle');
jpickle.loads('U\x0bhello worldq\x01.');
To run the tests, install Mocha then run:
mocha