Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
walinchus committed Jun 7, 2017
1 parent 1015353 commit eb5223d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def cellval(cell, datemode):
#use the open_workbook function on that new variable to create another
book = xlrd.open_workbook(file_contents=xlbin)
sheetstotal = book.nsheets

#the .nsheets method tells us how many sheets 'book' has
print "nsheets result: ", book.nsheets
id = 0
sheetsrange = range(0,sheetstotal)
for sheetnum in sheetsrange:
Expand Down

0 comments on commit eb5223d

Please sign in to comment.