def from_views()

in generator/explores/client_counts_explore.py [0:0]


    def from_views(views: List[View]) -> Iterator[ClientCountsExplore]:
        """
        If possible, generate a Client Counts explore for this namespace.

        Client counts explores are only created for client_counts views.
        """
        for view in views:
            if view.name == "client_counts":
                yield ClientCountsExplore(
                    view.name,
                    {
                        "base_view": "client_counts",
                        "extended_view": "baseline_clients_daily_table",
                    },
                )