├── .gitignore ├── LICENSE ├── README.md ├── doc └── img │ ├── pbicmd-fabric-capacities.png │ ├── pbicmd-v0.6.0-help.png │ ├── pbicmd-v0.7.0-help.png │ ├── pbicmd-v0.8.0-help.png │ ├── pbicmd-v0.8.0-semdoc.png │ ├── pbicmd-v0.9.0-help.png │ └── pbicmd-v0.9.1-help.png ├── installer ├── icon.ico └── run-pyinstaller.bat ├── requirements.txt └── src ├── _version.py ├── commands ├── __init__.py ├── dax.py ├── daxdif.py ├── delta.py ├── fabric.py ├── fabric_etl.py ├── fabric_lakehouse.py ├── fabric_warehouse.py ├── semdoc.py ├── todelta.py └── toparquet.py ├── generate_exe_version_info.py ├── pbicmd.py └── utils ├── __init__.py ├── azure_api.py ├── dataframe_utils.py ├── dax_utils.py ├── fabric_api.py ├── powerbi_api.py └── tom.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/README.md -------------------------------------------------------------------------------- /doc/img/pbicmd-fabric-capacities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/doc/img/pbicmd-fabric-capacities.png -------------------------------------------------------------------------------- /doc/img/pbicmd-v0.6.0-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/doc/img/pbicmd-v0.6.0-help.png -------------------------------------------------------------------------------- /doc/img/pbicmd-v0.7.0-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/doc/img/pbicmd-v0.7.0-help.png -------------------------------------------------------------------------------- /doc/img/pbicmd-v0.8.0-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/doc/img/pbicmd-v0.8.0-help.png -------------------------------------------------------------------------------- /doc/img/pbicmd-v0.8.0-semdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/doc/img/pbicmd-v0.8.0-semdoc.png -------------------------------------------------------------------------------- /doc/img/pbicmd-v0.9.0-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/doc/img/pbicmd-v0.9.0-help.png -------------------------------------------------------------------------------- /doc/img/pbicmd-v0.9.1-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/doc/img/pbicmd-v0.9.1-help.png -------------------------------------------------------------------------------- /installer/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/installer/icon.ico -------------------------------------------------------------------------------- /installer/run-pyinstaller.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/installer/run-pyinstaller.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/_version.py -------------------------------------------------------------------------------- /src/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/commands/dax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/dax.py -------------------------------------------------------------------------------- /src/commands/daxdif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/daxdif.py -------------------------------------------------------------------------------- /src/commands/delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/delta.py -------------------------------------------------------------------------------- /src/commands/fabric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/fabric.py -------------------------------------------------------------------------------- /src/commands/fabric_etl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/fabric_etl.py -------------------------------------------------------------------------------- /src/commands/fabric_lakehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/fabric_lakehouse.py -------------------------------------------------------------------------------- /src/commands/fabric_warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/fabric_warehouse.py -------------------------------------------------------------------------------- /src/commands/semdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/semdoc.py -------------------------------------------------------------------------------- /src/commands/todelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/todelta.py -------------------------------------------------------------------------------- /src/commands/toparquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/commands/toparquet.py -------------------------------------------------------------------------------- /src/generate_exe_version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/generate_exe_version_info.py -------------------------------------------------------------------------------- /src/pbicmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/pbicmd.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/azure_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/utils/azure_api.py -------------------------------------------------------------------------------- /src/utils/dataframe_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/utils/dataframe_utils.py -------------------------------------------------------------------------------- /src/utils/dax_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/utils/dax_utils.py -------------------------------------------------------------------------------- /src/utils/fabric_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/utils/fabric_api.py -------------------------------------------------------------------------------- /src/utils/powerbi_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/utils/powerbi_api.py -------------------------------------------------------------------------------- /src/utils/tom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataxbi/pbicmd/HEAD/src/utils/tom.py --------------------------------------------------------------------------------