├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── pbipy ├── __init__.py ├── __version__.py ├── _utils.py ├── admin.py ├── apps.py ├── dashboards.py ├── dataflows.py ├── datasets.py ├── embedtokens.py ├── gateways.py ├── groups.py ├── imports.py ├── powerbi.py ├── reports.py ├── resources.py └── settings.py ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── fixtures ├── __init__.py ├── powerbi.py └── response_bodies.py ├── test_admin.py ├── test_apps.py ├── test_dashboards.py ├── test_dataflows.py ├── test_datasets.py ├── test_gateways.py ├── test_groups.py ├── test_powerbi.py ├── test_reports.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/README.md -------------------------------------------------------------------------------- /pbipy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/__init__.py -------------------------------------------------------------------------------- /pbipy/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/__version__.py -------------------------------------------------------------------------------- /pbipy/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/_utils.py -------------------------------------------------------------------------------- /pbipy/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/admin.py -------------------------------------------------------------------------------- /pbipy/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/apps.py -------------------------------------------------------------------------------- /pbipy/dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/dashboards.py -------------------------------------------------------------------------------- /pbipy/dataflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/dataflows.py -------------------------------------------------------------------------------- /pbipy/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/datasets.py -------------------------------------------------------------------------------- /pbipy/embedtokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/embedtokens.py -------------------------------------------------------------------------------- /pbipy/gateways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/gateways.py -------------------------------------------------------------------------------- /pbipy/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/groups.py -------------------------------------------------------------------------------- /pbipy/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/imports.py -------------------------------------------------------------------------------- /pbipy/powerbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/powerbi.py -------------------------------------------------------------------------------- /pbipy/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/reports.py -------------------------------------------------------------------------------- /pbipy/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/resources.py -------------------------------------------------------------------------------- /pbipy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/pbipy/settings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | from .fixtures import * -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/fixtures/__init__.py -------------------------------------------------------------------------------- /tests/fixtures/powerbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/fixtures/powerbi.py -------------------------------------------------------------------------------- /tests/fixtures/response_bodies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/fixtures/response_bodies.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_apps.py -------------------------------------------------------------------------------- /tests/test_dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_dashboards.py -------------------------------------------------------------------------------- /tests/test_dataflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_dataflows.py -------------------------------------------------------------------------------- /tests/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_datasets.py -------------------------------------------------------------------------------- /tests/test_gateways.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_gateways.py -------------------------------------------------------------------------------- /tests/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_groups.py -------------------------------------------------------------------------------- /tests/test_powerbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_powerbi.py -------------------------------------------------------------------------------- /tests/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_reports.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvillazon/pbipy/HEAD/tests/test_utils.py --------------------------------------------------------------------------------