Skip to content

dkdc-io/home

Repository files navigation

dkdc-home

GitHub Release crates.io PyPI CI License: MIT

Home library.

Install

cargo add dkdc-home
uv add dkdc-home

Usage

Rust

let home = dkdc_home::home();
println!("{}", home.display());

Override with the DKDC_HOME environment variable:

DKDC_HOME=/custom/path cargo run

Python

import dkdc_home

home = dkdc_home.home()
print(home)