Metadata-Version: 1.1
Name: pickling_decorator
Version: 0.2.1
Summary: picke inputs and outputs of a function.
Home-page: https://github.com/fx-kirin/pickling_decorator
Author: fx-kirin
Author-email: fx.kirin@gmail.com
License: MIT
Description: 
        pickling_decorator
        ==================
        
        
        .. image:: https://img.shields.io/pypi/v/package_name.svg
           :target: https://pypi.python.org/pypi/pickling_decorator
           :alt: Latest PyPI version
        
        
        pickle inputs and outputs of a function.
        
        Usage
        -----
        
        .. code-block:: 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 <fx.kirin@gmail.com>`_.
        =======================================================================
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
