No project description provided
Project description
packed
Installation
pip3 install packed
Usage
from packed import packable
@packable # 1) register class
class EqualMatcher:
def __init__(self, expected):
self._expected = expected
def match(self, actual):
return actual == self._expected
def __packed__(self): # 2) pick fields
return {"expected": self._expected}
client
from packed import pack
matcher = EqualMatcher("banana")
packed = pack(matcher)
# -> send «packed» over network
server
from packed import unpack
# <- recieve «packed» as binary
matcher = unpack(packed)
assert matcher.match("banana") is True
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
packed-0.2.0.tar.gz
(7.2 kB
view hashes)
Built Distribution
packed-0.2.0-py3-none-any.whl
(8.0 kB
view hashes)