Metadata-Version: 2.1
Name: palett
Version: 0.0.18
Summary: pretty text for command line
Home-page: https://github.com/pydget/texting.git
License: MIT
Keywords: pretty,ansi,ansi-color,rgb,hsl,hue,saturation,lightness,hex,dye,colorant,pigment,list,array,vector,matrix,1d-list,2d-list,entry,entries,key-value,key-value pair
Author: Hoyeung Wong
Author-email: hoyeungw@outlook.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aryth (>=0.0.10)
Requires-Dist: crostab (>=0.0.6)
Requires-Dist: intype (>=0.0.2)
Requires-Dist: ject (>=0.0.1)
Requires-Dist: pyspare (>=0.0.8)
Requires-Dist: veho (>=0.0.7)
Project-URL: Repository, https://github.com/pydget/texting.git
Description-Content-Type: text/markdown

## palett
##### pretty text for command line

### Usage
```python

from palett.fluo.fluo_vector import fluo_vector
from palett.presets import FRESH, PLANET

vectorCollection = [
    [],
    ['Xx', 'Yy', 'Zz', 'e', 'd', 'c', '-', '1', 2, 3],
    [1, 1, 2, 3, 5, []],
    ['a', 'b', 'c', 'd', 'e'],
    ['beijing', 'shanghai', 'wuhan', 'xiamen', 'changsha']
]


def test():
    COMMA_SPACE = ', '
    for vec in vectorCollection:
        fluoed = fluo_vector(vec, (FRESH, PLANET))
        print(f'[{COMMA_SPACE.join(fluoed)}]')


test()
```
