1.0.8 • Published 2 years ago

picklefriend v1.0.8

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

picklefriend

npm version build github sponsors

Typescript package compatible with python's pickle loads/dumps

Installation

npm i picklefriend

Usage

import { pickle } from 'picklefriend'

let myString = "my test string";
let myStringDumped = pickle.dumps(myString);
let myStringLoaded = pickle.loads(myStringDumped);

console.log(myStringLoaded);

Development

Fork the main branch, clone it and entry in the root folder

git clone git@github.com:joaopfg/picklefriend.git
cd picklefriend

Install the dependencies

npm install

Generate the dist folder

tsc

Unit tests

The unit tests are located in the test folder. If you want to create new tests, they must go inside this folder and the test script must be updated in package.json.

npm test
1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago