Skip to main content

A simple terminal I/O utility with spinner animation

Project description

Consolio

PyPI - Version PyPI - Python Version GitHub License PyPI - Wheel

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_type to dots, braille, or default.
  • Indentation Level: Control indentation level in messages for organized output.
  • Inline Spinner: Use inline_spinner=True to keep spinners on the same line as a message.
  • Replacement Mode: Set replace=True in sprint to overwrite the previous message line.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

consolio-0.1.0.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

consolio-0.1.0-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file consolio-0.1.0.tar.gz.

File metadata

  • Download URL: consolio-0.1.0.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for consolio-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2b5c37f08ce7caa85e18fc098b5373cadaa3852a14c72e64f90cc5666ad3f849
MD5 f066dfc22d3938e9d9e994b3962e21c1
BLAKE2b-256 a3c21aa9107a6218ae2df6ce707d05e8a5a68e79776f88c3b5c29041f6bb46cb

See more details on using hashes here.

File details

Details for the file consolio-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: consolio-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for consolio-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5ab0eb761867b1e2466df119982a1b0c663043dd9ed5846170147e04fc1d81ab
MD5 bc1e3baea62e17e232cb1f485c1aff1b
BLAKE2b-256 1e9a0e9d1a85eb7762964f4c1c43f6eafed7dbab219dc7abc2806c243b911c7d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page