Exemplo n.º 1
0
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
Exemplo n.º 2
0
def bookkeeping_upstreams_all(**kwargs):
    """Retrieve list of monitored upstreams."""
    result = handlers.BookKeeping().retrieve_bookkeeping_upstreams(**kwargs)
    return result
Exemplo n.º 3
0
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
Exemplo n.º 4
0
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
Exemplo n.º 5
0
def bookkeeping_ecosystem(ecosystem):
    """Retrieve BookKeeping data for given Ecosystem."""
    result = handlers.BookKeeping().retrieve_bookkeeping_for_ecosystem(
        ecosystem)
    return result
Exemplo n.º 6
0
def bookkeeping_all():
    """Retrieve BookKeeping data for all Ecosystems."""
    result = handlers.BookKeeping().retrieve_bookkeeping_all()
    return result