Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ mdim/explorer model #4035

Draft
wants to merge 22 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 0 additions & 47 deletions etl/collections/base.py

This file was deleted.

1 change: 1 addition & 0 deletions etl/collections/common.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Common tooling for MDIMs/Explorers."""
11 changes: 11 additions & 0 deletions etl/collections/explorers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from typing import Optional

from etl.config import OWIDEnv
from etl.helpers import PathFinder


def upsert_explorer(
config: dict, paths: PathFinder, explorer_name: Optional[str] = None, owid_env: Optional[OWIDEnv] = None
) -> None:
"""TODO: Replicate `etl.collections.multidim.upsert_mdim_data_page`."""
pass
Loading