Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fx-kirin/pickling_decorator
pickle inputs and outputs of a function.
https://github.com/fx-kirin/pickling_decorator
Last synced: about 1 month ago
JSON representation
pickle inputs and outputs of a function.
- Host: GitHub
- URL: https://github.com/fx-kirin/pickling_decorator
- Owner: fx-kirin
- License: mit
- Created: 2020-10-15T07:39:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-02T04:37:12.000Z (about 4 years ago)
- Last Synced: 2024-11-14T11:49:54.971Z (2 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pickling_decorator
[![Latest PyPI version](https://img.shields.io/pypi/v/package_name.svg)](https://pypi.python.org/pypi/pickling_decorator)
pickle inputs and outputs of a function.
## Usage
```python
from pickling_decorator import pickling
class TestClass:
@pickling_decorator.pickling()
def foo(self):
print("something")def test_func():
t = TestClass()
t.foo()
```## Installation
### Requirements
## Compatibility
## Licence
## Authors
# pickling_decorator was written by [fx-kirin]([email protected]).