Source code for bioregistry.collection_api

# -*- coding: utf-8 -*-

"""API for collections."""

from typing import Optional

from .resource_manager import manager
from .schema import Collection, Context

__all__ = [
    "get_collection",
    "get_context",
]


[docs]def get_collection(identifier: str) -> Optional[Collection]: """Get the collection entry for the given identifier.""" return manager.collections.get(identifier)
[docs]def get_context(identifier: str) -> Optional[Context]: """Get the context for the given identifier.""" return manager.get_context(identifier)