You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
706 B
21 lines
706 B
"""Tab modules for the parliamentary explorer.
|
|
|
|
This package contains tab-building functions extracted from explorer.py.
|
|
Each module contains a `build_<tab>_tab()` function that implements one tab.
|
|
"""
|
|
|
|
from analysis.tabs.compass import build_compass_tab
|
|
from analysis.tabs.trajectories import build_trajectories_tab
|
|
from analysis.tabs.search import build_search_tab
|
|
from analysis.tabs.browser import build_browser_tab
|
|
from analysis.tabs.components import build_svd_components_tab
|
|
from analysis.tabs.quiz import build_mp_quiz_tab
|
|
|
|
__all__ = [
|
|
"build_compass_tab",
|
|
"build_trajectories_tab",
|
|
"build_search_tab",
|
|
"build_browser_tab",
|
|
"build_svd_components_tab",
|
|
"build_mp_quiz_tab",
|
|
]
|
|
|