├── .gitignore ├── converters.py ├── license.md ├── pbivcs.py ├── readme.md ├── requirements.txt └── samples ├── Customer Profitability Sample PBIX.pbit ├── Human Resources Sample PBIX.pbit ├── IT Spend Analysis Sample PBIX.pbit ├── Opportunity Analysis Sample PBIX.pbit ├── Procurement Analysis Sample PBIX.pbit ├── Retail Analysis Sample PBIX.pbit ├── Sales and Marketing Sample PBIX.pbit └── Supplier-Quality-Analysis-Sample-PBIX.pbit /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/.gitignore -------------------------------------------------------------------------------- /converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/converters.py -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/license.md -------------------------------------------------------------------------------- /pbivcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/pbivcs.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | lxml 2 | configargparse 3 | -------------------------------------------------------------------------------- /samples/Customer Profitability Sample PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/Customer Profitability Sample PBIX.pbit -------------------------------------------------------------------------------- /samples/Human Resources Sample PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/Human Resources Sample PBIX.pbit -------------------------------------------------------------------------------- /samples/IT Spend Analysis Sample PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/IT Spend Analysis Sample PBIX.pbit -------------------------------------------------------------------------------- /samples/Opportunity Analysis Sample PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/Opportunity Analysis Sample PBIX.pbit -------------------------------------------------------------------------------- /samples/Procurement Analysis Sample PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/Procurement Analysis Sample PBIX.pbit -------------------------------------------------------------------------------- /samples/Retail Analysis Sample PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/Retail Analysis Sample PBIX.pbit -------------------------------------------------------------------------------- /samples/Sales and Marketing Sample PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/Sales and Marketing Sample PBIX.pbit -------------------------------------------------------------------------------- /samples/Supplier-Quality-Analysis-Sample-PBIX.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaregroup/powerbi-vcs/HEAD/samples/Supplier-Quality-Analysis-Sample-PBIX.pbit --------------------------------------------------------------------------------