Last updated:
0 purchases
pickleblosc 0.1.2
pickle-blosc
Read and write Pickle files using Blosc compression.
Install
From terminal, enter
pip install pickle-blosc
Usage
>>> from pickle_blosc import pickle, unpickle
>>>
>>> class A(object):
>>> def __init__(self, value):
>>> self.value = value
>>>
>>> pickle(A(10), "filename.pkl")
>>> a = unpickle("filename.pkl")
>>> print(a.value)
10
Running the tests
After installation, you can test it
python -c "import pickle_blosc; pickle_blosc.test()"
as long as you have pytest.
Authors
Danilo Horta - https://github.com/Horta
License
This project is licensed under the MIT License - see the
LICENSE file for details
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.