Created
July 21, 2020 02:15
-
-
Save deldersveld/fbf7955bb51b23d677c4643c14d95940 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
print('Power BI Desktop Connection') | |
print(str(sys.argv[1])) | |
print(str(sys.argv[2])) | |
print('') | |
conn = "Provider=MSOLAP;Data Source=" + str(sys.argv[1]) + ";Initial Catalog='';" | |
print(conn) | |
input() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment