bpyutils: A Collection of Python Utilities

0.5.8 · active · verified Mon Apr 13

bpyutils by Achilles Rasquinha is a collection of various common Python utilities designed to assist with general programming tasks. The current version is 0.5.8. Its release cadence is irregular, typically driven by the addition or refinement of utility functions rather than a fixed schedule.

Warnings

Install

Imports

Quickstart

This quickstart demonstrates importing and using a couple of common utility functions from `bpyutils.util.system` and `bpyutils.util.datetime` to get the current operating system and a timestamp.

from bpyutils.util.system import get_os
from bpyutils.util.datetime import get_timestamp

print(f"Operating System: {get_os()}")
print(f"Current Timestamp: {get_timestamp()}")

view raw JSON →