-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Adds a new `analytics.etl` sub-package and moves the transformation code in `analytics.datasets.issues` to `analytics.etl.github` - Updates the `export_sprint_data()` and `export_roadmap_data()` to include `project_owner` and `project_number` fields - Updates the `export_github_data()` entry point to accept a config file instead of separate command line options for the sprint board owner, project number, sprint field, etc. - Allows users to specify multiple sprint project boards in the config file that will be loaded and combined in the `GitHubProjectETL` class - Updates docs to reference update entrypoint for GitHub export
- Loading branch information
Showing
17 changed files
with
944 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"roadmap_project": { | ||
"owner": "HHS", | ||
"project_number": 12, | ||
"quad_field": "Quad", | ||
"pillar_field": "Pillar" | ||
}, | ||
"sprint_projects": [ | ||
{ | ||
"owner": "HHS", | ||
"project_number": 13, | ||
"sprint_field": "Sprint", | ||
"points_field": "Story Points" | ||
}, | ||
{ | ||
"owner": "HHS", | ||
"project_number": 17, | ||
"sprint_field": "Sprint", | ||
"points_field": "Points" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Run extract, transform, and load (ETL) pipelines to generate datasets.""" |
Oops, something went wrong.