Skip to main content

A collection of Python utilities ported from the R ecosystem.

Project description

ruru

ruru

PyPI Version uv Ruff usethis

A collection of Python utilities ported from the R ecosystem.

Features

base module

The ruru.base module provides core utilities:

  • match_arg: A Python equivalent of R's match.arg function for verifying function arguments against a set of valid options. Recommended usage:
from ruru.base import match_arg

user_choice = "apple"
available_choices = ["Apple", "Banana", "Cherry"]

# Normalize user input before passing it to match_arg.
# Which transformation to use depends on the style of available_choices:
#   - .title() if choices look like "Apple"
#   - .upper() if choices look like "APPLE"
#   - .lower() if choices look like "apple"

user_choice = match_arg(user_choice.title(), available_choices)
  • pmatch: A Python equivalent of R's pmatch function for finding partial substring matches against a set of reference strings.

Inspired by the R base package.

config module

The ruru.config module gives an easy way to manage of configuration settings in Python applications via YAML files.

Recommended usage:

from importlib.resources import files
from ruru import config

config_path = files("<mypkg>.cli").joinpath("config.yml") 
config_dict = config.get(file = config_path)

Inspired by the R config package.

cli module

The ruru.cli module provides utilities for enhanced command-line interface output, including colored text, formatted headings, alert messages, and bullet-point lists.

Recommended usage:

from ruru import cli
cli.h1("Heading")
cli.alert("This is an alert message")

Inspired by the R cli package.

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

ruru-0.3.3.tar.gz (190.7 kB view details)

Uploaded Source

Built Distribution

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

ruru-0.3.3-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file ruru-0.3.3.tar.gz.

File metadata

  • Download URL: ruru-0.3.3.tar.gz
  • Upload date:
  • Size: 190.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.8.3

File hashes

Hashes for ruru-0.3.3.tar.gz
Algorithm Hash digest
SHA256 11d6a990fe90f3704e07cf56fcd796ca8f76b7d7d228503e252173c47ffe2c69
MD5 e0ae29efbdfcc75f897c9edbec449b2b
BLAKE2b-256 e6042cc6a107b07a760b2cc7fabe58accb7eb7d51e04e07b62300f76f0beb44b

See more details on using hashes here.

File details

Details for the file ruru-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: ruru-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.8.3

File hashes

Hashes for ruru-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 112c749dfdecb99278549fd8a208c279b7c142693bf34949998106e656171aa9
MD5 1035cc761ea56407be569253b7f2a445
BLAKE2b-256 3389e65a42856ef855f9ed1f8db21043aeb45862102c53453a5bbb76cd70284e

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