Skip to main content

Lightweight terminal utilities

Project description

tooly

Lightweight terminal utilities for Python developers.

Installation

pip install tooly-dev

Usage

import tooly
import time
from datetime import datetime
import requests

colors = tooly.ColorSystem() #? recommended
wait_time = 2
skip_userinput = False

print(colors.info("Welcome to Tooly!")) #* Color example

tooly.typewrite(colors.info("Example text"), delay=0.05) #* Typewrite example

with tooly.measure("Example measure"):
    #? Do something
    time.sleep(wait_time)

with tooly.spinner("Example spinner", done_msg="Exaple spinner done"):
    #? Do something
    time.sleep(wait_time)

#* Highlight example
text = "Some interesting text with keywords"
print(colors.highlight(text, ["keywords", "text"], "yellow")) #? text, keywords, color

#* Indent example
#? You can use indent for file tree for example
print(colors.indent("Example folder/", 0))
print(colors.indent("Example python file", 1))
print(colors.indent("Example readme file", 1))
print(colors.indent("Example subfolder/", 1))
print(colors.indent("howtodoerrors.txt", 2))
print(colors.indent("Example file", 0))

#* Diff feature examples

# word mode sql example
sql_before = "SELECT id, name FROM users WHERE active = 1"
sql_after  = "SELECT id, email FROM users WHERE active = 1 LIMIT 100"
print(tooly.diff_highlight(sql_before, sql_after, tooly.DiffMode.WORD))

# char mode url example
url_before = "https://api.example.com/v1/users/42"
url_after  = "https://api.example.com/v2/users/42/profile"
print(tooly.diff_highlight(url_before, url_after, tooly.DiffMode.CHAR))

# line mode config example
cfg_before = """
host = localhost
port = 5432
debug = true
workers = 2
"""
cfg_after = """
host = example.com
port = 5432
debug = false
workers = 8
timeout = 30
"""
print(tooly.diff_highlight(cfg_before, cfg_after, tooly.DiffMode.LINE, context_lines=1))

#* Validator example
"""
Methods:
    str.isalpha() - only letters
    str.isdigit() - only dights
    str.isnumeric() - only dights (including unicode)
    str.isalnum() - digits and letters
    str.islower() - only lower case
    str.isupper() - only upper case
    str.istitle() - every word starts with a capital
    str.startswith(prefix) - starts with a prefix
    str.endswith(suffix) - ends with a suffix
    str.isprintable() - only printable characters
    str.isascii() -  only ASCII characters
"""
if not skip_userinput:
    tooly.userinput("Enter your name: ", validator=lambda name: name.isalpha(), error_msg="Invalid name. Try again.")
    tooly.userinput("Enter your age: ", validator=lambda name: name.isdigit(), error_msg="Invalid age. Try again.")

#* Recorder example
with tooly.recorder("example_session.log"):
    print("Recorder example...")
    name = tooly.userinput("Enter your name: ", validator=lambda name: name.isalpha(), error_msg="Invalid name. Try again.")
    print(f"Hello, {name}!")

#* Clear console example
print("Console will be cleared")
input("Press Enter to continue...")
tooly.cls()

#* On platform example
result = tooly.on_platform(
    windows=lambda: "Windows",
    linux=lambda: "Linux",
    macos=lambda: "macOS",
    android=lambda: "Android",
    ios=lambda: "iOS",
    default=lambda: "Unknown"
)
print(f"Current platform: {result}")
input("Press Enter to continue...")

#* Menu example
choice = tooly.menu(
    ["Start server", "Stop server", "Exit"],
    title="Example menu"
)
print(f"You chose: {choice}")

#* Confirm example
if tooly.confirm("Are you sure?"):
    print("Confirmed")
else:
    print("Canceled")
input("Press Enter to continue...")

#* Watch example
def show_time():
    return f"Текущее время: {datetime.now().strftime("%H:%M:%S")}"

tooly.watch(show_time, interval=1)

#* Notify example
tooly.notify("Example", "Example text")

#* Log example
tooly.log.set_file("example.log")
tooly.log.success("Example success log message")
tooly.log.debug("Example debug log message")
tooly.log.error("Example error log message")
tooly.log.warn("Example warning log message")
tooly.log.info("Example info log message")

#* Retry example
@tooly.retry(attempts=4, delay=0.5, backoff=2.0)
def fetch():
    requests.get("https://httpbin.org/status/500").raise_for_status() #? This will fail with 500 status code, triggering retries

try:
    fetch()
except requests.exceptions.HTTPError as e:
    tooly.log.error("Giving up:", e)

#* Countdown example
tooly.countdown(5) #? very simple to use, don't you?

#* Sparkline example
data = [1, 5, 3, 8, 2]
print(tooly.sparkline(data))

#* Calendar example
# data format: {"YYYY-MM-DD": count}  -  0 = no activity, 1–4+ = intensity levels

#? Using with data example
#? data = {"2026-03-17": 5, "2026-03-16": 3, "2026-03-15": 1, "2026-03-14": 2, "2026-03-13": 7, "2026-03-12": 0, "2026-03-11": 6}
#? tooly.calendar(data=data, title="Commits", color_mode="green", show_legend=True, show_stats=True)

tooly.calendar(title="Commits", color_mode="green", show_legend=True, show_stats=True)

#* Progress example
items = range(100) # for example

# 1. automatic iteration
for item in tooly.progress(items, label="Processing"):
    time.sleep(0.03)

# 2. manual update with iterable
with tooly.progress(items, label="Processing") as pbar:
    for item in items:
        time.sleep(0.03)
        pbar.update() # or pbar.set(i)

# 3. manual update with total
with tooly.progress(total=100, label="Processing") as pbar:
    for i in range(100):
        time.sleep(0.03)
        pbar.update() # or pbar.set(i)

#* Banner example
tooly.banner("Tooly", style="block", color="blue", align="center", width=50)

License

MIT

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

tooly_dev-1.4.0.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tooly_dev-1.4.0-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

Details for the file tooly_dev-1.4.0.tar.gz.

File metadata

  • Download URL: tooly_dev-1.4.0.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for tooly_dev-1.4.0.tar.gz
Algorithm Hash digest
SHA256 2b4978afb457d8344e55c3225c70f1a8fa8ec4a1c2c5e577d08b034011fd7925
MD5 35fd7c7299aeb10c6a57184a54187a8d
BLAKE2b-256 5ceb91ab7ffd9fe4fbdbadd1372ea201f60b6ca9000cb62f2a6ebffeb1b4278f

See more details on using hashes here.

File details

Details for the file tooly_dev-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: tooly_dev-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for tooly_dev-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 879307807f0d1f7b77137bb0e330b86e39957773fad63837ed9aeea08ab18ce7
MD5 ef917c26fbcad4d7fa3eedb9475aba29
BLAKE2b-256 20a1a9136973c946f82ead26b49c76f94079fc99bb3331dcdd982574457241a6

See more details on using hashes here.

Supported by

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