misc - Django-Components" > misc - Django-Components" >
Skip to content

misc ¤

Functions:

  • gen_id –

    Generate a unique ID that can be associated with a Node

  • get_import_path –

    Get the full import path for a class or a function, e.g. "path.to.MyClass"

gen_id ¤

gen_id() -> str

Generate a unique ID that can be associated with a Node

Source code in src/django_components/util/misc.py
def gen_id() -> str:
    """Generate a unique ID that can be associated with a Node"""
    # Alphabet is only alphanumeric. Compared to the default alphabet used by nanoid,
    # we've omitted `-` and `_`.
    # With this alphabet, at 6 chars, the chance of collision is 1 in 3.3M.
    # See https://zelark.github.io/nano-id-cc/
    return generate(
        "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
        size=6,
    )

get_import_path ¤

get_import_path(cls_or_fn: Type[Any]) -> str

Get the full import path for a class or a function, e.g. "path.to.MyClass"

Source code in src/django_components/util/misc.py
def get_import_path(cls_or_fn: Type[Any]) -> str:
    """
    Get the full import path for a class or a function, e.g. `"path.to.MyClass"`
    """
    module = cls_or_fn.__module__
    if module == "builtins":
        return cls_or_fn.__qualname__  # avoid outputs like 'builtins.str'
    return module + "." + cls_or_fn.__qualname__