Top "Xlrd" questions

xlrd is a python library to extract data from Microsoft Excel spreadsheet files

How to use ``xlrd.xldate_as_tuple()``

I am not quite sure how to use the following function: xlrd.xldate_as_tuple for the following data xldate:39274.0 …

python date xlrd
How to get line number in excel sheet using python?

I have an Excel sheet like this: A B C D E F G 1 0 0 0 2 0 0 3 0 4 5 0 0 0 0 0 0 0 6 0 0 0 And every '0' represents some …

python xlrd
How to get excel sheet name in Python using xlrd

Please see the code below. def getSheetName(file_name): pointSheetObj = [] import xlrd as xl TeamPointWorkbook = xl.open_workbook(file_name) …

python xlrd
Importing data from an excel file using python into SQL Server

I have found some other questions that have a similar error to what I am getting, but have not been …

python python-3.x pyodbc xlrd
How to sort Excel sheet using Python

I am using Python 3.4 and xlrd. I want to sort the Excel sheet based on the primary column before processing …

python xlrd
How to detect if a cell is empty when reading Excel files using the xlrd library?

I handle Excel files using the functions row_values and col_values: import xlrd workbook = xlrd.open_workbook( filename ) sheet_…

python excel xlrd
How to set color of text using xlwt

I haven't been able to find documentation on how to set the color of text. How would the following be …

python xlrd xlwt
Get formula from Excel cell with python xlrd

I have to port an algorithm from an Excel sheet to python code but I have to reverse engineer the …

python excel formula xls xlrd
Integers from excel files become floats?

I use xlrd to read data from excel files. For integers stored in the files, let's say 63, the xlrd interprets …

python xlrd
Reading numeric Excel data as text using xlrd in Python

I am trying to read in an Excel file using xlrd, and I am wondering if there is a way …

python excel csv xls xlrd