Tim232 / hPickle

A package for handling pickle binary files

Home Page:https://pypi.org/project/py-hPickle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hPickle

A package for handling pickle binary files

pip install py-hPickle

Example :

import hPickle

data = hPickle.load('example.bin')
print(data)
print()

data['test'] = 100
data = hPickle.save('example.bin', data)
print(data)
print()

check = hPickle.check('example.bin')
print(check)

Output :

{
    'test' : 0
}

{
    'test' : 100
}

True

About

A package for handling pickle binary files

https://pypi.org/project/py-hPickle

License:GNU General Public License v3.0


Languages

Language:Python 100.0%