Hi,
First, thanks to everyone for helping me get Python up and running!
I am curious if anyone have experience installing Python packages. I am a user of Microsoft Azure and would like to utilize pymssql. I probably will use pandas at some point too (and possibly others). Regardless, I'm looking for an equivalent of pip install XXXXXX for .whl files. Any help on how to do this would be greatly appreciated!
George
Following is a simplified version of the code I am running:
import pymssql
server = "zmt.database.windows.net"
user = "XXXXXXXX"
password = "XXXXXXXXX"
conn = pymssql.connect(server, user, password, "zmt")
conn.autocommit(True)
cursor = conn.cursor()
cursor.execute("select * from awareness")
a_day=[]
a_low=[]
a_mid=[]
a_high=[]
for row in cursor:
a_day.append(row[0])
a_low.append(row[1])
a_mid.append(row[2])
a_high.append(row[3])
conn.close()
etc... I'll then work with these lists and others to produce some values to return and display.
Appreciate the help!
George
First, thanks to everyone for helping me get Python up and running!
I am curious if anyone have experience installing Python packages. I am a user of Microsoft Azure and would like to utilize pymssql. I probably will use pandas at some point too (and possibly others). Regardless, I'm looking for an equivalent of pip install XXXXXX for .whl files. Any help on how to do this would be greatly appreciated!
George
Following is a simplified version of the code I am running:
import pymssql
server = "zmt.database.windows.net"
user = "XXXXXXXX"
password = "XXXXXXXXX"
conn = pymssql.connect(server, user, password, "zmt")
conn.autocommit(True)
cursor = conn.cursor()
cursor.execute("select * from awareness")
a_day=[]
a_low=[]
a_mid=[]
a_high=[]
for row in cursor:
a_day.append(row[0])
a_low.append(row[1])
a_mid.append(row[2])
a_high.append(row[3])
conn.close()
etc... I'll then work with these lists and others to produce some values to return and display.
Appreciate the help!
George