The xlrd tag has no wiki summary.
8
votes
5answers
8k views
How do I read an Excel file into Python using xlrd? Can it read newer Office formats?
My issue is below but would be interested comments from anyone with experience with xlrd.
I just found xlrd and it looks like the perfect solution but I'm having a little problem getting started. I ...
7
votes
5answers
1k views
Converting a Python Float to a String without losing precision
I am maintaining a Python script that uses xlrd to retrieve values from Excel spreadsheets, and then do various things with them. Some of the cells in the spreadsheet are high-precision numbers, and ...
6
votes
3answers
2k views
Preserving styles using python's xlrd,xlwt, and xlutils.copy
I'm using xlrd, xlutils.copy, and xlwt to open up a template file, copy it, fill it with new values, and save it.
However, there doesn't seem to be any easy way to preserve the formatting of the ...
5
votes
3answers
2k views
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 algorithm from the Excel file.
The Excel sheet is quite complicated, it contains many cells in which ...
4
votes
4answers
6k views
Unicode to UTF8 for CSV Files - Python via xlrd
I'm trying to translate an Excel spreadsheet to CSV using the Python xlrd and csv modules, but am getting hung up on encoding issues. Xlrd produces output from Excel in Unicode, and the CSV module ...
3
votes
1answer
233 views
Python Excel (xlrd, xlwt) - How to copy a style from one cell and put it on another
Specifically I'm trying to open an existing workbook, and write some data to it.
However whenever I write the data it obliterates the borders on those cells.
So I'm wondering if there's a way to ...
3
votes
2answers
512 views
Is there a way to close a workbook using xlrd
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 ...
3
votes
1answer
529 views
Django and xlrd, reading from memory
Hello
My plan is to let a user to upload an excel file, once uploaded I will be displaying editable form which contains the content of the uploaded excel, once user confirms the input is correct, ...
2
votes
1answer
46 views
Writing variable from list individually in table with corresponding value from other variable
Ok, the code I have is the following:
for shidx in xrange(0, book.nsheets):
print shidx
sheet = book.sheet_by_index(shidx)
d = sheet.col_values(0,2)
D = sheet.col_values(1,2)
dim = ...
2
votes
1answer
189 views
Getting a hyperlink URL from an Excel document
I am reading an Excel file using xlrd. In one column I have a company name which is formatted as a hyperlink (meaning there is a URL behind it). When I get the cell value I only get the company name. ...
2
votes
2answers
539 views
Python xlwt - accessing existing cell content, auto-adjust column width
I am trying to create an Excel workbook where I can auto-set, or auto-adjust the widths of the columns before saving the workbook.
I have been reading the Python-Excel tutorial in hopes of finding ...
2
votes
3answers
746 views
xldate_as_tuple
im not quite sure how to use the following function:
xldate_as_tuple
for the following data
xldate:39274.0
xldate:39839.0
could someone please give me an example on usage of the function for the ...
2
votes
2answers
2k views
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 to ignore the cell formatting used in Excel file, and just import all data as text?
Here is the code I am using ...
2
votes
3answers
5k views
writing to existing workbook using xlwt
I am unable to find examples where xlwt is used to write into existing files. I have a existing xls file that I need to write to. When I use xlrd to read the file, I cant seem to figure out how to ...
1
vote
1answer
55 views
Recalling sheet names for a while loop
I have imported xlrd etc. The main part of my code is then as follows:
for serie_diam in range(0,9):
namesheet = "Diamètre " + str(serie_diam)
#select(namesheet)
numLine = sh.row_values(3)
OK = 1
...
1
vote
2answers
55 views
Mapping data from excel with Python
I am reading data from an xls spreadsheet with xlrd. First, I gather the index for the column that contains the data that I need (may not always be in the same column in every instance):
amr_list, ...
1
vote
1answer
190 views
Identifying Excel Sheet cell color code using XLRD package
I am writing a python script to read data from an excel sheet using xlrd. Few of the cells of the the work sheet are highlighted with different color and I want to identify the color code of the cell. ...
1
vote
1answer
103 views
Using python and xlrd, what is the best way to read 2 columns from a spreadsheet
I have an excel spreadsheet that has 2 columns. Something like this
|ColA | ColB |
|Key | Value |
|1 | test |
|2 | test2 |
|3 | test4 |
and I want to read these two columns into a ...
1
vote
2answers
126 views
Downsides to reading strings from Excel in python using encode('utf-8')
I am reading a large amount of data from an excel spreadsheet in which I read (and reformat and rewrite) from the spreadsheet using the following general structure:
book = open_workbook('file.xls')
...
1
vote
1answer
114 views
Excel Combobox in Python xlwt module
Is this possible? Generation of Excel combobox in a cell using xlwt or similar module?
When I load the xls using xlrd, then copy and save it using xlwt, the combobox from original xls is lost.
1
vote
2answers
197 views
Creating multiple dictionary variables with loop commands?
This is my first time working with python. I'm trying to create a dictionary for each county (23 in total) with year as the key for population and income values. Strong arming the code seems to work, ...
1
vote
1answer
253 views
xlrd: want to read sheets of several xl files and store in one list/array? (better way?)
I don't have much xp with xlrd/xlwt but I have managed to access one of the files I want to collect data from. I want to collect data from all files in the directory and move it to one sheet. I was ...
1
vote
3answers
1k views
Python xlrd read as string
I'm having difficulties in reading a particular cell value from Excel in xlrd. Whatever value I'm reading (date value) is getting converted to a number. I know there are solutions to convert it into a ...
1
vote
4answers
794 views
python: creating excel workbook and dumping csv files as worksheets
I have few csv files which I would like to dump as new worksheets in a excel workbook(xls/xlsx).
How do I achieve this?
Googled and found 'pyXLwriter' but it seems the project was stopped.
While Im ...
1
vote
3answers
851 views
Unable to import xlrd module
Few of the packages which my executable script is using are dependent on xlrd module. So I tried to include this module in the setup script by using the include option as shown. But when the ...
1
vote
1answer
241 views
How can an image be retrieved from an excel worksheet using python xlrd
I am using the xlrd python excel library python-excel. I can read my excel workbook allright (I must say their tutorials are pretty good). BUT I can't retrieve an image stored in a worksheet and thats ...
1
vote
2answers
955 views
Facing problem with XLWT and XLRD - Reading and writing simultaneously
I am facing a problem with xlrd and xlwt. Pasting the sample code
below.
from xlwt import Workbook, Formula, XFStyle
import xlrd
book = Workbook()
sheet1 = book.add_sheet('Sheet 1')
myFontStyle = ...
1
vote
3answers
1k views
using xlrd to read Excel xls file containing Chinese and/or Hindi characters
http://scienceoss.com/read-excel-files-from-python/comment-page-1/#comment-1051
From the above link i use this utility to read an xls file.If the xls contains different language characters like chine ...
1
vote
1answer
268 views
How to locate and access named ranges (global, nd per-worksheet) using xlrd, Python?
The documentation for xlrd here
http://www.python-excel.org/
mentions that it is now possible in latest version, but does not say how.
1
vote
2answers
893 views
pivots using pyExcelerator/xlrd
How can I go about creating a worksheet (within an excel workbook) with a pivot table using python libs like pyExcelerator / xlrd? I need to generate a daily report that has a pivot table to summarize ...
1
vote
4answers
4k views
create a .csv file with values from a Python list
I am trying to create a .csv file with the values from a Python list
when I print the values in the list they are all unicode (?) i.e. they look something like this [u'value 1', u'value 2', ...]
if ...
1
vote
4answers
2k views
pyExcelerator or xlrd - How to FIND/SEARCH a row for the given few column data?
Python communicating with EXCEL... i need to find a way so that I can find/search a row for given column datas. Now, i m scanning entire rows one by one... It would be useful, If there is some ...
0
votes
2answers
49 views
Python - store chinese characters read from excel
I am trying to read in an excel sheet using xlrd, but I'm having some problems storing Chinese characters.
I am not sure why values get translated when I store it in a list:
Code:
for rownum in ...
0
votes
1answer
52 views
xlrd: struct.error: unpack requires a string argument of length 512
I was using xlrd 0.6.1 and 0.7.1 to open my xls files the both complained:
Traceback (most recent call last):
File "../../xls2csv.py", line 53, in <module>
book = ...
0
votes
1answer
55 views
Python xlrd : how to convert an extracted value?
Well i have a question that i feel i've been answered several times, from what i found here. However, as a newbie, i can't really understand how to perform a really basic operation.
Here's the thing ...
0
votes
4answers
71 views
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 it as 63.0 of type number.
Why can't xlrd recognize 63 as an integer?
Assume ...
0
votes
4answers
68 views
python: no such file or directory error
import xlrd
book = xlrd.open_workbook("univ_list.xls")
I'm new to python. I'm trying to read a MS excel file that is in the same directory as my python script. Running the above code gives me a no ...
0
votes
1answer
97 views
xlrd python library
import xlrd
wb = xlrd.open_workbook("file.xls")
wb.sheet_names()
sh = wb.sheet_by_index(0)
for item in sh.col(0):
value = unicode(item.value)
if value.startswith("cheap"):
print ...
0
votes
1answer
47 views
How do we preserve Shared Workbook property settings using xlrd,xlwt & xlutils?
When I open a Shared Workbook with Multiple Edit enabled, I loose the settings while saving the file using xlwt. Here is the code which I am trying, but this do not save the shared workbook ...
0
votes
0answers
41 views
How to parse categories and subcategories in Excel using python xlrd?
Hi, I want to parse an Excel file using python and the excellent xlrd library. The spreadsheet I has the following structure:
First sheet have:
No category
1 Building
2 Animals
3 ...
0
votes
1answer
101 views
python xlrd receiving float from excel text cell
I am attempting to read values from an Excel file using xlrd. It has been working great on dates, numbers, and up until now text. I have a column (category) with cells containing text (the cells are ...
0
votes
2answers
76 views
Python Xlrd Result format
i want to know, the result format of xlrd.
See the code
>>> sh.cell_value(rowx=2, colx=1)
u'Adam Gilchrist xxxxxxxxxxxxxxxxxxxxx'
Now when i try running a res.search
>>> ...
0
votes
1answer
66 views
Retrieving value from Excel table from an intersection of values using Python
I have a table in Excel and I want to be able to read it (I know how to achieve this) but also tell Python that if there are certain values of d, D and B, for it to return the dimension value in the ...
0
votes
1answer
143 views
xlrd library not working with xlsx files.any way to covert xlsx to xls using python?
I want to convert xlsx file to xls format using python. The reason is that im using xlrd library to parse xls files, but xlrd is not able to parse xlsx files.
Switching to a different library is not ...
0
votes
2answers
149 views
Is there any way to edit an existing Excel file using Python preserving formulae?
I am trying to edit several excel files (.xls) without changing the rest of the sheet. The only thing close so far that I've found is the xlrd, xlwt, and xlutils modules. The problem with these is it ...
0
votes
2answers
80 views
Suppress an error message
I am using xlrd to process excel files. I am running a script on a folder that contains many files, and I am printing messages related to the files. However, for each file I run, I get the following ...
0
votes
2answers
123 views
python Help with calculating the average and std on excel files
im trying to calculate the average and std for x, y, and z column for about 50 excel files that i saved in a folder. each excel files has x values in the first column, y in the second, and z in the ...
0
votes
2answers
133 views
Connecting Excel with Python
Using code below, I can get the data to print.
How would switch code to xlrd?
How would modify this code to use a xls file that is already open and visible.
So, file is open first manually, then ...
0
votes
1answer
143 views
Can't get Excel drop-down list (combobox) value with python
I have an excel file with a drop-down list and I would like to access its current value from python.
In vba the code is really simple :
Sheets("name_of_my_sheet").name_of_my_list.value
I looked ...
0
votes
2answers
243 views
Using XLRD module and Python to determine cell font style (italics or not)
I'm trying to parse data in an excel spreadsheet using XLRD to determine which cell values are italicized. This information will be used to set a flag as to whether the value is an estimated or ...