-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(ingest): add powerbi plugin #1
Conversation
metadata-ingestion/setup.py
Outdated
@@ -91,6 +91,9 @@ def get_long_description(): | |||
"cryptography==3.4.8" | |||
} | |||
|
|||
powerbi_common = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this separate powerbi_common
dictionary ? I don't see it being used anywhere except powerbi plugin. If you foresee that the same dependencies would be present for any other plugins, we can keep it. (probably name it microsoft_common in that case?)
# First convert tiles to charts | ||
ds_mcps, chart_mcps = self.to_datahub_chart(dashboard.tiles) | ||
# Lets convert dashboard to datahub dashboard | ||
dashboard_mcps = self.__to_datahub_dashboard(dashboard, chart_mcps) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we follow some naming convention ? e.g. self.to_datahub_chart
and self.__to_datahub_dashboard
should follow similar naming convention if they have same privacy level(leading underscores).
@@ -0,0 +1,173 @@ | |||
[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this file being used ?
Please add documentation for the powerbi source. |
Oss salesforce connector
Checklist