analysis/__init__.py (5 lines of code) (raw):

# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. """Download and summarize the latest analysis results for an online experiment""" from .download import latest_analysis from .log_analytics import LogAnalyticsWorkspace from .render import summarize from .results import AnalysisResults __all__ = ["latest_analysis", "LogAnalyticsWorkspace", "summarize", "AnalysisResults"]