Skip to main content

Democritus functions for working with utility functions.

Project description

Democritus Utility

PyPI CI Lint codecov The Democritus Project uses semver version 2.0.0 The Democritus Project uses ruff to format and lint code License: LGPL v3

Democritus functions[1] for working with utility functions.

[1] Democritus functions are simple, effective, modular, well-tested, and well-documented Python functions.

We use d8s (pronounced "dee-eights") as an abbreviation for democritus (you can read more about this here).

Installation

pip install d8s-utility

Usage

You import the library like:

from d8s_utility import *

Once imported, you can use any of the functions listed below.

Functions

  • def copy_first_arg(func):
        """Decorator to make a copy of the first argument and pass into the func."""
    
  • def has_more_than_one_item(thing: Any) -> bool:
        """Return whether or not the given thing has a length of at least one."""
    
  • def has_one_or_more_items(thing: Any) -> bool:
        """Return whether or not the given thing has a length of at least one."""
    
  • def has_one_item(thing: Any) -> bool:
        """Return whether or not the given thing has a length of at least one."""
    
  • def request_or_read(path):
        """If the given path is a URL, request the URL and return the content; if the path exists read the file.
    
    Otherwise, just return the string and assume it is the input itself."""
    
  • def request_or_read_first_arg(func):
        """If the first arg is a url - request the URL. If it is a file path, try to read the file.
    
    If it is neither a URL nor file path, return the content of the first arg."""
    
  • def is_sorted(iterable, *, descending: bool = False) -> bool:
        """Return whether or not the iterable is sorted."""
    
  • def first_unsorted_value(iterable, *, descending: bool = False) -> Any:
        """Return the first unsorted value in the iterable."""
    
  • def last_unsorted_value(iterable, *, descending: bool = False) -> Any:
        """Return the last unsorted value in the iterable."""
    
  • def unsorted_values(iterable, *, descending: bool = False) -> Iterable[Any]:
        """."""
    
  • def sorted_values(iterable, *, descending: bool = False) -> Iterable[Any]:
        """."""
    
  • def ignore_errors(function, *args, **kwargs):
        """."""
    
  • def zip_if_same_length(*iterables, debug_failure: bool = False):
        """Zip the given iterables if they are the same length.
    
    If they are not the same length, raise an assertion error."""
    
  • def unique_items(iterable_a: Any, iterable_b: Any) -> Dict[str, Set[Any]]:
        """Find the values unique to iterable_a and iterable_b (relative to one another)."""
    
  • def prettify(thing: Any, *args):
        """."""
    
  • def pretty_print(thing: Any, *args):
        """."""
    
  • def subprocess_run(command, input_=None):
        """Run the given command as if it were run in a command line."""
    
  • def stringify_first_arg(func):
        """Decorator to convert the first argument to a string."""
    
  • def retry_if_no_result(wait_seconds=10):
        """Decorator to call the given function and recall it if it returns nothing."""
    
  • def map_first_arg(func):
        """If the first argument is a list or tuple, iterate through each item in the list and send it to the function."""
    
  • def repeat_concurrently(n: int = 10):
        """Repeat the decorated function concurrently n times."""
    
  • def validate_keyword_arg_value(
        keyword: str, valid_keyword_values: Iterable[Any], fail_if_keyword_not_found: bool = True
    ):
        """Validate that the value for the given keyword is in the list of valid_keyword_values."""
    
  • def validate_arg_value(arg_index: StrOrNumberType, valid_values: Iterable[Any]):
        """Validate that the value of the argument at the given arg_index is in the list of valid_values."""
    
  • def wait_and_retry_on_failure(wait_seconds=10):
        """Try to call the given function.
    
    If there is an exception thrown by the function, wait for wait_seconds and try again."""
    

Development

👋  If you want to get involved in this project, we have some short, helpful guides below:

If you have any questions or there is anything we did not cover, please raise an issue and we'll be happy to help.

Credits

This package was created with Cookiecutter and Floyd Hightower's Python project template.

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

d8s_utility-0.9.0.tar.gz (119.8 kB view details)

Uploaded Source

Built Distribution

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

d8s_utility-0.9.0-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

Details for the file d8s_utility-0.9.0.tar.gz.

File metadata

  • Download URL: d8s_utility-0.9.0.tar.gz
  • Upload date:
  • Size: 119.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for d8s_utility-0.9.0.tar.gz
Algorithm Hash digest
SHA256 9de5433512bf3d78d9b1c6a1323cffbb7dc445e321b83c1ce4d9f4996868128c
MD5 1fc76610856f2ef0804d956e197f71f0
BLAKE2b-256 99ae5e9f953437b1506f151cd329d8204a5e55135c448b3904fb714f03318040

See more details on using hashes here.

Provenance

The following attestation bundles were made for d8s_utility-0.9.0.tar.gz:

Publisher: release-please.yml on democritus-project/d8s-utility

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file d8s_utility-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: d8s_utility-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for d8s_utility-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d06032623158248f198fc41e962ad5895591f45e2158a51fdc468e013adea57d
MD5 e1d58c500ddb0830792bffe6841237fc
BLAKE2b-256 7dd1cc3a29aba2d00f4be8310afb7114c10e4d8b53196c1f526dd0441a3e4319

See more details on using hashes here.

Provenance

The following attestation bundles were made for d8s_utility-0.9.0-py3-none-any.whl:

Publisher: release-please.yml on democritus-project/d8s-utility

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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