def bookkeeping_upstreams_ecosystem_package(**kwargs):
    """Retrieve list of monitored upstreams for given ecosystem and package."""
    result = handlers.BookKeeping().retrieve_bookkeeping_upstreams(**kwargs)
    return result
def bookkeeping_upstreams_all(**kwargs):
    """Retrieve list of monitored upstreams."""
    result = handlers.BookKeeping().retrieve_bookkeeping_upstreams(**kwargs)
    return result
def bookkeeping_epv(ecosystem, package, version):
    """Retrieve BookKeeping data for the given ecosystem, package, and version."""
    result = handlers.BookKeeping().retrieve_bookkeeping_for_epv(
        ecosystem, package, version)
    return result
def bookkeeping_ecosystem_package(ecosystem, package):
    """Retrieve BookKeeping data for given Package and Ecosystem."""
    result = handlers.BookKeeping().retrieve_bookkeeping_for_ecosystem_package(
        ecosystem, package)
    return result
def bookkeeping_ecosystem(ecosystem):
    """Retrieve BookKeeping data for given Ecosystem."""
    result = handlers.BookKeeping().retrieve_bookkeeping_for_ecosystem(
        ecosystem)
    return result
def bookkeeping_all():
    """Retrieve BookKeeping data for all Ecosystems."""
    result = handlers.BookKeeping().retrieve_bookkeeping_all()
    return result