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

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for ruru-0.3.7.tar.gz
Algorithm Hash digest
SHA256 dfed7031ce028b7bb64e18d63e163b119bd5f28e81668e9378e64e1b355e77f6
MD5 edbbcf108548ad3188e6f80e23788439
BLAKE2b-256 bf4b71dfc7eeb7516a965e6fc6011f6a58a48ad8e6805c87418c2c162a5e4612

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ruru-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 67cee430814a52902d95e4d88b721d1ae2112edc5bfb0c9c11fe6ecb99d644da
MD5 221152902115fd388331e1ca90fdd8a0
BLAKE2b-256 2988668ffa40b6c781c084ceb716c0daf499ba39ad34d93d9d924cce67db37c7

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