Skip to content
Snippets Groups Projects
__init__.py 335 B
from . import __about__
from . import hash  # pylint: disable=W0622
from .random import random


__all__ = ["hash", "random"] + __about__.__all__


# - Meta Information -
# This is pretty ugly
for attr in __about__.__all__:
    if hasattr(__about__, attr):
        globals()[attr] = getattr(__about__, attr)
# - End Meta Information -