https://github.com/tim232/hpickle
A package for handling pickle binary files
https://github.com/tim232/hpickle
Last synced: 6 months ago
JSON representation
A package for handling pickle binary files
- Host: GitHub
- URL: https://github.com/tim232/hpickle
- Owner: Tim232
- License: gpl-3.0
- Created: 2020-12-07T02:24:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-07T02:40:33.000Z (over 5 years ago)
- Last Synced: 2025-03-22T19:02:15.136Z (about 1 year ago)
- Language: Python
- Homepage: https://pypi.org/project/py-hPickle
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hPickle
A package for handling pickle binary files
`pip install py-hPickle`
Example :
```python
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
```