Metadata-Version: 2.1
Name: alyssum
Version: 0.0.6
Summary: A small helper package for personal needs
Home-page: https://github.com/eaybek/alyssum
Author: Erdem Aybek
Author-email: eaybek@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: termcolor

# Alyssum

this package contains my personal helpers if you want to use below the usage examples

```python
from alyssum.seperators import Title

title = Title(label='Default Text', length=80, color='yellow')
title.configure(label='Default Text', length=80,color='blue')

title.write() # writes "Default Text"
title.write("any title") # writes "any title"

title.configure(color=blue).write("any title") # can be usable
```



label length can not be greater than (length - 2)  
color can be 'grey', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan' or 'white'  
length must be greater than 1 and smaller than 81 



