FuGangqiang / pychoice

An utility adds code readability to your application or API, Code is documentation!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pychoice

An utility adds code readability to your application and/or API, Code is documentation!

Install

pip install pychoice

Example

from pychoice import Choice

Status = Choice(
    (0, 'item0'),
    (1, 'item1'),
    (2, 'item2')
)

assert Status('item0') == 0
assert Status('item0', 'item1') == [0, 1]

assert Status[0] == 'item0'
assert Status[0, 1] == ['item0', 'item1']
assert Status[...] == ['item0', 'item1', 'item2']

assert Status.exclude('item0') == [1, 2]
assert Status.pairs('item0', 'item2') == [(0, 'item0'), (2, 'item2')]

About

An utility adds code readability to your application or API, Code is documentation!

License:MIT License


Languages

Language:Python 100.0%