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.1.tar.gz (187.4 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.1-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for ruru-0.3.1.tar.gz
Algorithm Hash digest
SHA256 dc5bd4ec1c263ab15c4e5581be1ab61308a5ca720ed35aa2cc3cc9dff9f74b75
MD5 6076d317803de42571dd09bb4f3f43a3
BLAKE2b-256 f741ecd6ae1ad3e011add53cd5220fe9fcf43df973e9c895b22c21e0686ef691

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ruru-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ec75a28e9881afaa7b535334388cca6e3636eb96a365fc5b0fa8548ee9217e75
MD5 a029a522a8ce5071d3f43cc96f5bc78f
BLAKE2b-256 e098d7561771735dfef43265de9185c34e17fda77e2a4b94c6e6202c5443f2eb

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