I am using the function open_workbook() to open an excel file. But I cannot find any function to close the file later in the xlrd module. Is there a way to close the xls file using xlrd? Or is not required at all?

link|improve this question

80% accept rate
It's been a couple years since I used xlrd, but I think it takes care of closing the file for you. – GreenMatt Mar 23 '11 at 10:36
feedback

2 Answers

up vote 4 down vote accepted

Digging into the mailing list archive, it seems that the file object is closed directly by the constructor, so you don't need to close it explicitly.

link|improve this answer
1  
The method name is a bit misleading, of course. – Andrea Spadaccini Mar 23 '11 at 10:39
1  
Note if you use on_demand=True the file is not closed, even if the workbook is collected. This is documented in the xlrd comments. You should be careful to call release_resources() before letting the workbook go away. – Paul Du Bois Nov 23 '11 at 3:50
feedback

The open_workbook calls the release_resources ( which closes the mmaped file ) before returning.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.