Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 309 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 309 Bytes

Husky

An Advanced serializing library for python, like pickle, but can dump more, for example, functions.

Install

$ pip install Husky

Usage

def foo():
    return bar()
    
def bar():
    return "ok"

bytes = dumps(foo)
f = loads(bytes)

f()