├── .github ├── FUNDING.yml └── workflows │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── .scripts └── make_venv.py ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── powerbi ├── apps.py ├── auth.py ├── available_features.py ├── capacities.py ├── client.py ├── dashboards.py ├── dataflow_storage_account.py ├── dataflows.py ├── datasets.py ├── enums.py ├── gateways.py ├── groups.py ├── import.py ├── imports.py ├── pipelines.py ├── push_datasets.py ├── reports.py ├── session.py ├── template_apps.py ├── users.py └── utils.py ├── requirements.txt ├── samples ├── use_available_features.py ├── use_capacities.py ├── use_client.py ├── use_dashboards_service.py ├── use_dataflow_storage.py ├── use_dataflows.py ├── use_datasets.py ├── use_groups_service.py ├── use_imports.py ├── use_pipelines.py ├── use_push_datasets.py ├── use_reports_service.py ├── use_template_apps_service.py ├── use_users_service.py └── use_utils.py ├── setup.py └── tests └── test_client.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/make_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/.scripts/make_venv.py -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/README.md -------------------------------------------------------------------------------- /powerbi/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/apps.py -------------------------------------------------------------------------------- /powerbi/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/auth.py -------------------------------------------------------------------------------- /powerbi/available_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/available_features.py -------------------------------------------------------------------------------- /powerbi/capacities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/capacities.py -------------------------------------------------------------------------------- /powerbi/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/client.py -------------------------------------------------------------------------------- /powerbi/dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/dashboards.py -------------------------------------------------------------------------------- /powerbi/dataflow_storage_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/dataflow_storage_account.py -------------------------------------------------------------------------------- /powerbi/dataflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/dataflows.py -------------------------------------------------------------------------------- /powerbi/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/datasets.py -------------------------------------------------------------------------------- /powerbi/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/enums.py -------------------------------------------------------------------------------- /powerbi/gateways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/gateways.py -------------------------------------------------------------------------------- /powerbi/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/groups.py -------------------------------------------------------------------------------- /powerbi/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/import.py -------------------------------------------------------------------------------- /powerbi/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/imports.py -------------------------------------------------------------------------------- /powerbi/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/pipelines.py -------------------------------------------------------------------------------- /powerbi/push_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/push_datasets.py -------------------------------------------------------------------------------- /powerbi/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/reports.py -------------------------------------------------------------------------------- /powerbi/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/session.py -------------------------------------------------------------------------------- /powerbi/template_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/template_apps.py -------------------------------------------------------------------------------- /powerbi/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/users.py -------------------------------------------------------------------------------- /powerbi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/powerbi/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/use_available_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_available_features.py -------------------------------------------------------------------------------- /samples/use_capacities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_capacities.py -------------------------------------------------------------------------------- /samples/use_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_client.py -------------------------------------------------------------------------------- /samples/use_dashboards_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_dashboards_service.py -------------------------------------------------------------------------------- /samples/use_dataflow_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_dataflow_storage.py -------------------------------------------------------------------------------- /samples/use_dataflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_dataflows.py -------------------------------------------------------------------------------- /samples/use_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_datasets.py -------------------------------------------------------------------------------- /samples/use_groups_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_groups_service.py -------------------------------------------------------------------------------- /samples/use_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_imports.py -------------------------------------------------------------------------------- /samples/use_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_pipelines.py -------------------------------------------------------------------------------- /samples/use_push_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_push_datasets.py -------------------------------------------------------------------------------- /samples/use_reports_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_reports_service.py -------------------------------------------------------------------------------- /samples/use_template_apps_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_template_apps_service.py -------------------------------------------------------------------------------- /samples/use_users_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_users_service.py -------------------------------------------------------------------------------- /samples/use_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/samples/use_utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/areed1192/power-bi-python-api/HEAD/tests/test_client.py --------------------------------------------------------------------------------