Library for decorating strings in CLI apps.
Project description
Output Decorator v0.1.1
⚠️ Disclaimer
By using this software, you agree to the full disclaimer terms.
Summary: Software provided "AS IS" without warranty. You assume all risks.
Full legal disclaimer: See DISCLAIMER.md
📌 Overview
Output Decorator is a lightweight Python library designed to enhance CLI application output with professional text decoration. It automatically adapts to your terminal width and provides simple methods for creating visually appealing formatted output.
✨ Features
- 🖥️ Terminal-aware – Automatically detects and uses your terminal width
- 🎨 Flexible decoration – Customize border symbols for any style
- 📝 Frame formatting – Create framed text blocks with different top/bottom borders
- 🔧 Simple API – Clean, intuitive interface with minimal learning curve
- ⚡ Lightweight – No external dependencies beyond Python standard library
📦 Installation
pip install outputdecorator
🚀 Quick Start
from output_decorator import StringDecorator
# Center text with automatic terminal width
StringDecorator.string_decorate(text='Python', symbol='*', print_flag=True)
# Output: ************************************ Python ***********************************
# Get decorated string without printing
decorated = StringDecorator.string_decorate(text='Python', symbol='*', print_flag=False)
print(decorated) # Same output as above
# Create framed text with different border styles
frame = StringDecorator.framed_decorate(
text='Python',
top_symbol='*',
bottom_symbol='-'
)
print(frame)
"""
******
Python
------
"""
📚 API Reference
StringDecorator.string_decorate(text='', symbol='*', print_flag=True)
Creates a centered line of text padded with the specified symbol to fill the terminal width.
Parameters:
text(str) – The text to decorate (default: empty string)symbol(str) – Character used for padding (default: '*')print_flag(bool) – If True, prints directly; if False, returns the string (default: True)
Returns: str or None – Decorated string if print_flag=False, otherwise None
StringDecorator.framed_decorate(text='', top_symbol='-', bottom_symbol='-')
Creates a framed text block with separate top and bottom borders.
Parameters:
text(str) – The text to frame (default: empty string)top_symbol(str) – Character for the top border (default: '-')bottom_symbol(str) – Character for the bottom border (default: '-')
Returns: str – Formatted string with top border, text, and bottom border
StringDecorator.term_width()
Returns the current terminal width in columns.
Returns: int – Terminal width
💡 Use Cases
- CLI tools – Create visually distinct section headers
- Logging – Highlight important log entries
- Reports – Format console output for better readability
- Installers/Setup scripts – Create professional-looking progress indicators
- Development tools – Debug output with clear visual separation
🔍 Examples
Creating a banner
StringDecorator.string_decorate(text='WELCOME', symbol='=')
# =================================== WELCOME ====================================
Empty line separator
StringDecorator.string_decorate(symbol='-')
# --------------------------------------------------------------------------------
Different frame styles
# Warning box
print(StringDecorator.framed_decorate('⚠️ WARNING ⚠️', top_symbol='!', bottom_symbol='!'))
# Success message
print(StringDecorator.framed_decorate('✓ Success!', top_symbol='=', bottom_symbol='='))
🤝 Contributing
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
📄 License
This project is licensed under the terms specified in the repository. See the LICENSE file for details.
📞 Support
- Documentation: Check this README
- Issues: GitHub Issues
- PyPI: Package Page
Made with ❤️ for the Python CLI community
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file outputdecorator-0.1.1.tar.gz.
File metadata
- Download URL: outputdecorator-0.1.1.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e394f2cbd608330e106db7b0f0e64dc6116e83f1587b9d94bbd9762693bc7a1b
|
|
| MD5 |
96e60349740d343e49fc05b655f2df9c
|
|
| BLAKE2b-256 |
5d06c226a21b0d683edec7d3336f3d59f0bc29b2cfea67d1fd00830c82d6a502
|
File details
Details for the file outputdecorator-0.1.1-py3-none-any.whl.
File metadata
- Download URL: outputdecorator-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d8382b1a1d5ed6f6f0956a3fdabb27e0cce8df76e23285687bea340398c8c8b
|
|
| MD5 |
76704477f5614395b0e099b2b699224b
|
|
| BLAKE2b-256 |
b19635a96e00bcb3c7e535adb2f891f2338b76233d046d615e8faa6b0386a3a4
|