Skip to main content

Awesome CLI input and output functions for Python 3.x scripts.

Project description

cli-fragments

Pylint

Awesome terminal input and output functions for python scripts.

jigsaw

Icon by by Pop Vectors - Flaticon

Why this name?

I like to consider the command-line interface as if it were a graphical interface. In the development of graphical interfaces, 'components' are usually used to facilitate maintainability and design consistency. In my opinion, the word 'fragments' is a correct synonym to describe the same approach, but for command-line interfaces.

Fragments

  • error: a red message having [✕] as prefix
  • success: a green message having [✓] as prefix
  • warning: a yellow message having [!] as prefix
  • text: a standard text in terminal having the proper padding
  • debug: a default color message having [#] as prefix
  • notice: a blue message having [~] as prefix
  • ask: a qustion to the user having [?] as prefix. The input value can be optionally validated passing a validator callback

Screenshot

image

Usage

First of all, you have to install the library using pip.

pip install cli-fragments

Then import the library in your script and use it as follows.

from cli_fragments import CliFragments

# Custom validators function.
# They must accept an str parameter and must raise ValueError on validation failure.
def validator_function(value: str):
    if value == "wrong":
        raise ValueError

# Instantiate the main class
io = CliFragments()

# Use the output methods as shown
io.debug("This is a debug message.")
io.notice("This is a notice message.")
io.warning("This is a warning message.")
io.error("This is an error message.")
io.success("This is a success message.")
io.text("This is padded raw text message.")

# The default and the validator parameters are optional in the ask method.
# You can pass None to avoid using them.
io.ask("This is a user question.", None, None)

# This is a validated ask method call having a default value.
io.ask("This is a user question.", "default", validator_function)

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

cli_fragments-1.2.0.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

cli_fragments-1.2.0-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file cli_fragments-1.2.0.tar.gz.

File metadata

  • Download URL: cli_fragments-1.2.0.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for cli_fragments-1.2.0.tar.gz
Algorithm Hash digest
SHA256 cbce69173e3a58885dbb0d398d636e5e73d3ef2a6e62e121c549d536551126b8
MD5 e8c72b955433fc0f5f05fad2441755db
BLAKE2b-256 347acb8746366276c078a88a3c226b3a4c18e00ae7e409d04b1bfb1b34267b66

See more details on using hashes here.

File details

Details for the file cli_fragments-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cli_fragments-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2b3ff23f9631def40c568f11f1fdf43f6dd27a27e4435d225a411ee0d6502795
MD5 85491430caf5a6913f2d71629f4e61bd
BLAKE2b-256 31f12919afa366a87aa6251dcd32595ccaad762d1b65909d5532d1a96782179a

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