Skip to main content

hydra-utils

test test coverage

Wrapper for (hydra-core to add flexible configuration treatment.

Requirement

  • Python 3.13, 3.12, 3.11, 3.10

Installation

pip install hydra-utils

Usage

@hydra_utils.hydra_wrapper(
    app_name='my_app',
    app_version='0.1.0',
    app_file=__file__,
    config_path='conf',
    config_name='config',
    verbose=1,
)
def main(conf: dict[Any, Any]) -> None: ...


if __name__ == '__main__':
    main()
  • app_name and app_version are used to log information of current version.
    • It is useful if app_version is set to __version__ of the app.
  • app_file is used to check the file place's git status to log the git commit hash and diff from the last commit.
  • The argument which the main function takes is dict[Any, Any] instead of DictConfig.
  • Configuration file can be passed by the first argument or conf_file=... at the command line, which will be merged to the configuration file specified by conf_path and conf_name.
  • Configuration file can have include keyword which has the list of configuration files to include.
    • Included files are merged to the main configuration file.
    • It is resolved at the place of include. If the main file has other configurations after the include, they will overwrite the included configurations.
  • n_jobs is fixed to the number of CPUs.
    • It is used to set the number of jobs for parallel processing.
    • If n_jobs is set to 0 or 1, it is set to 1.
    • If n_jobs is set to -1, it is set to the number of logical cores.
    • If n_jobs is set to None, it is set to the number of physical cores.
    • If n_jobs is set to a negative number, it is set to the number of logical cores + 1 + n_jobs, i.e. -1 is the same as the number of logical cores.

It is recommended to define hydra.job.name in your default configuration file (<conf_pth>/<conf_name>.yaml):

hydra:
  job:
    name: my_custom_job_name

Otherwise the job name is utils as hydra detect the file where hydra.main is executed.

There is also wrapper function for to_absolute_path.

from hydra_utils import to_absolute_path
  • It returns empty string if the input is empty.
  • It returns the input as is if the input includes : (e.g., http://, s3://, ...).

Based on rcmdnk/python-template, v0.1.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hydra_utils-0.4.1.tar.gz (126.0 kB view details)

Uploaded Source

Built Distribution

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

hydra_utils-0.4.1-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file hydra_utils-0.4.1.tar.gz.

File metadata

  • Download URL: hydra_utils-0.4.1.tar.gz
  • Upload date:
  • Size: 126.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for hydra_utils-0.4.1.tar.gz
Algorithm Hash digest
SHA256 94a25ce35c1143a4e905326b4aa4831ffaf451ab9b868c677ea469ebe162f9e5
MD5 71662e67f51b9b6ecffe431374097450
BLAKE2b-256 1f02c1794789be42901518ad36507e7c291467c040b4574e2f6d27b092a38c44

See more details on using hashes here.

File details

Details for the file hydra_utils-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: hydra_utils-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for hydra_utils-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 097a542f94851b25eafbec2769f78eb759980537ddbeed7e0a5085809718fcf4
MD5 9fbd5e2e22a8b7ed5508896687d094b2
BLAKE2b-256 d36f772993ef7d2c51e60ea8ee3233ff30758c8fd73739adda9c5760305c902a

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.4.1 This release

2 files

0.4.0

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page