Metadata-Version: 2.4
Name: pickle_com
Version: 0.1.0
Summary: A drop-in pickle replacement compatible with legacy numpy attributes and inspect.getargspec.
Author-email: Yu Sun <yusunhit@gmail.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy

# pickle_com

A drop-in replacement for Python's pickle module, automatically patching legacy numpy attributes and inspect.getargspec for compatibility with old pickle files.

## Usage

```python
import pickle_com as pickle
data = pickle.load(open('file.pkl', 'rb'))
