Browse Source

Adding debug flag to importXLSX.importData

Andrej 2 months ago
parent
commit
25e1dc9abd
1 changed files with 4 additions and 3 deletions
  1. 4 3
      importXLSX.py

+ 4 - 3
importXLSX.py

@@ -306,7 +306,7 @@ def convertLookup(xlsColumnName):
    return True
 
 def importData(pars,filename,getId=getId,modify=modify,\
-   convertLookup=convertLookup,dryRun=True):
+   convertLookup=convertLookup,dryRun=True,debug=True):
 #master routine that imports data based on pars, 
 #applies user supplied functions modify, convertLookup and get Id and 
 #updates relevant database
@@ -344,8 +344,9 @@ def importData(pars,filename,getId=getId,modify=modify,\
 
    pMap={}
    print('Index: {}'.format(len(df.index)))
-   idx=df.index[0:10] #for debug
-#   idx=df.index #for all
+   idx=df.index #for all
+   if debug:
+      idx=df.index[0:10] #for debug
 
    entries=[]
    for r in idx: