Contents:
API Documentation:
import abc from enum import Enum [docs] class IRandom[V: Enum](abc.ABC): [docs] @abc.abstractmethod def get_random_value(self, *args, **kwargs) -> V: pass