A simple terminal I/O utility with spinner animation
Project description
Consolio
Consolio is a Python library that provides an elegant way to display progress updates, warnings, errors, and other status messages in the console with color-coded indicators and spinners. Ideal for CLI applications that require step-by-step feedback to users.
Table of Contents
Installation
Consolio does not require any dependencies outside of Python's standard library. To use it just install it using pip install consolio.
Features
- Color-coded messages for different statuses: Success, Error, Warning, and more.
- Progress spinners in various styles (
dots,braille,default). - Inline spinners for seamless progress tracking within a single line.
- Thread-safe output for smooth and consistent console display.
Usage
Basic Initialization
To get started, initialize Consolio with a desired spinner type. You can choose from dots, braille, or default.
from consolio import Consolio
console = Consolio(spinner_type='dots') # Initialize with dots spinner
Status Message Types
Consolio supports multiple status messages, each with a unique color and symbol:
- Info:
[!]Blue - Marks the start of a process - Work(Step):
[-]Cyan - Intermediate step in a process - Warning:
[!]Yellow - Displays warnings - Error:
[x]Red - Displays errors - Complete:
[v]Green - Indicates completion of a step or process
Use the print method to print messages with a specific status, indentation level, and replacement option:
console.print(indent=0, status="inf", text="Starting process")
console.print(indent=1, status="wip", text="Executing step 1")
console.print(indent=1, status="wrn", text="Warning: Check your input")
console.print(indent=1, status="err", text="Error: Process failed")
console.print(indent=0, status="cmp", text="Process complete")
Spinners
You can start a spinner to indicate an ongoing process using the start_animate method, then stop it using stop_animate.
console.start_animate(indent=1)
# Perform a time-consuming task here
time.sleep(3) # Simulating task duration
console.stop_animate()
Use the inline_spinner=True option to display the spinner on the same line as the last message:
console.print(1, "stp", "Calculating size")
console.start_animate(inline_spinner=True)
time.sleep(2)
console.stop_animate()
Customization
The Consolio library supports a few customization options:
- Spinner Type: Set
spinner_typetodots,braille, ordefault. - Indentation Level: Control indentation level in messages for organized output.
- Inline Spinner: Use
inline_spinner=Trueto keep spinners on the same line as a message. - Replacement Mode: Set
replace=Trueinsprintto overwrite the previous message line.
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 consolio-0.1.12.tar.gz.
File metadata
- Download URL: consolio-0.1.12.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90ba966172806444fd7b1dee4ab53970753edf4851cbaf3c4cb16c91d38377c1
|
|
| MD5 |
9ec6195955195c14df3a80113b80df0d
|
|
| BLAKE2b-256 |
191860df6677aa1d29181605cefcef54503bc7852a9c383021c64e81a5c5a69f
|
File details
Details for the file consolio-0.1.12-py3-none-any.whl.
File metadata
- Download URL: consolio-0.1.12-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70befcc3508782d075b69b782a909eb80bef980fd6216f502fd904df899d85fe
|
|
| MD5 |
de80bb0d1d35274dad2a7ffb8822c323
|
|
| BLAKE2b-256 |
285f286230d2c1f842857332f00ed40d5d3bad56167675ce42f70ee7cdb7fb24
|