A package for handling pickle binary files
Project description
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file py_hPickle-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: py_hPickle-1.0.0-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b0d862d913d2b5c9b34642cb0c328909e8dd5224aa06e67ca8dae85b15a2c24 |
|
MD5 | 8391595bcd13475e5711dc249447cbaa |
|
BLAKE2b-256 | 00af55646ea5355e5ca76e68245f65a31487a3145c2651bcf93433795083c0bc |