Utilities

Utilities for construe

construe.utils.resolve_exclude(exclude=None, include=None, all=None)[source]

Given an exclusion list and an inclusion list, merge them to produce a definitive exclusion list such that if there are any inclusions, then everything not in the inclusion list from all is added to the exclusion list. If an item is both in the exclusion list and the inclusion list it is excluded.

Return type:

Set[str]

construe.utils.humanize_duration(duration)[source]

Represent a duration as a human readable string. If an int or a float are passed then it is assumed to be in seconds.

Return type:

str

construe.utils.dirsize(path)[source]

Return the size utilized by the contents of a directory specified by path in bytes.

Return type:

int