some notes
This commit is contained in:
@ -31,15 +31,17 @@ def findlatestExport(currentDash):
|
||||
|
||||
def copytoDash(latestdownload, currentDash):
|
||||
readExport = pd.read_excel(latestdownload, index_col=False)
|
||||
print(readExport)
|
||||
readExport.drop(
|
||||
readExport.filter(
|
||||
regex="Unname"
|
||||
),axis=1,
|
||||
inplace=True)
|
||||
copiedData = readExport.copy()
|
||||
bringtoExcel(latestdownload, currentDash, copiedData)
|
||||
#with pd.ExcelWriter("")
|
||||
|
||||
def bringtoExcel(latestdownload, currentDash):
|
||||
def bringtoExcel(latestdownload, currentDash, copiedData):
|
||||
with pd.ExcelWriter(
|
||||
currentDash,
|
||||
mode="a",
|
||||
|
||||
Reference in New Issue
Block a user