A wrapper library that provides one API to read, manipulate and writedata in different excel formats
Project description
Support the project
If your company has embedded pyexcel and its components into a revenue generating product, please support me on github, patreon or bounty source to maintain the project and develop it further.
If you are an individual, you are welcome to support me too and for however long you feel like. As my backer, you will receive early access to pyexcel related contents.
And your issues will get prioritized if you would like to become my patreon as pyexcel pro user.
With your financial support, I will be able to invest a little bit more time in coding, documentation and writing interesting posts.
Known constraints
Fonts, colors and charts are not supported.
Nor to read password protected xls, xlsx and ods files.
Introduction
Feature Highlights
file format |
definition |
---|---|
csv |
comma separated values |
tsv |
tab separated values |
csvz |
a zip file that contains one or many csv files |
tsvz |
a zip file that contains one or many tsv files |
xls |
a spreadsheet file format created by MS-Excel 97-2003 |
xlsx |
MS-Excel Extensions to the Office Open XML SpreadsheetML File Format. |
xlsm |
an MS-Excel Macro-Enabled Workbook file |
ods |
open document spreadsheet |
fods |
flat open document spreadsheet |
json |
java script object notation |
html |
html table of the data structure |
simple |
simple presentation |
rst |
rStructured Text presentation of the data |
mediawiki |
media wiki table |
One application programming interface(API) to handle multiple data sources:
physical file
memory file
SQLAlchemy table
Django Model
Python data structures: dictionary, records and array
One API to read and write data in various excel file formats.
For large data sets, data streaming are supported. A genenerator can be returned to you. Checkout iget_records, iget_array, isave_as and isave_book_as.
Installation
You can install pyexcel via pip:
$ pip install pyexcel
or clone it and install it:
$ git clone https://github.com/pyexcel/pyexcel.git
$ cd pyexcel
$ python setup.py install
One liners
This section shows you how to get data from your excel files and how to export data to excel files in one line
Read from the excel files
Get a list of dictionaries
Suppose you want to process History of Classical Music:
History of Classical Music:
Name |
Period |
Representative Composers |
Medieval |
c.1150-c.1400 |
Machaut, Landini |
Renaissance |
c.1400-c.1600 |
Gibbons, Frescobaldi |
Baroque |
c.1600-c.1750 |
JS Bach, Vivaldi |
Classical |
c.1750-c.1830 |
Joseph Haydn, Wolfgan Amadeus Mozart |
Early Romantic |
c.1830-c.1860 |
Chopin, Mendelssohn, Schumann, Liszt |
Late Romantic |
c.1860-c.1920 |
Wagner,Verdi |
Modernist |
20th century |
Sergei Rachmaninoff,Calude Debussy |
Let’s get a list of dictionary out from the xls file:
>>> records = p.get_records(file_name="your_file.xls")
And let’s check what do we have:
>>> for row in records:
... print(f"{row['Representative Composers']} are from {row['Name']} period ({row['Period']})")
Machaut, Landini are from Medieval period (c.1150-c.1400)
Gibbons, Frescobaldi are from Renaissance period (c.1400-c.1600)
JS Bach, Vivaldi are from Baroque period (c.1600-c.1750)
Joseph Haydn, Wolfgan Amadeus Mozart are from Classical period (c.1750-c.1830)
Chopin, Mendelssohn, Schumann, Liszt are from Early Romantic period (c.1830-c.1860)
Wagner,Verdi are from Late Romantic period (c.1860-c.1920)
Sergei Rachmaninoff,Calude Debussy are from Modernist period (20th century)
Get two dimensional array
Instead, what if you have to use pyexcel.get_array to do the same:
>>> for row in p.get_array(file_name="your_file.xls", start_row=1):
... print(f"{row[2]} are from {row[0]} period ({row[1]})")
Machaut, Landini are from Medieval period (c.1150-c.1400)
Gibbons, Frescobaldi are from Renaissance period (c.1400-c.1600)
JS Bach, Vivaldi are from Baroque period (c.1600-c.1750)
Joseph Haydn, Wolfgan Amadeus Mozart are from Classical period (c.1750-c.1830)
Chopin, Mendelssohn, Schumann, Liszt are from Early Romantic period (c.1830-c.1860)
Wagner,Verdi are from Late Romantic period (c.1860-c.1920)
Sergei Rachmaninoff,Calude Debussy are from Modernist period (20th century)
where start_row skips the header row.
Get a dictionary
You can get a dictionary too:
>>> my_dict = p.get_dict(file_name="your_file.xls", name_columns_by_row=0)
And let’s have a look inside:
>>> from pyexcel._compact import OrderedDict
>>> isinstance(my_dict, OrderedDict)
True
>>> for key, values in my_dict.items():
... print(key + " : " + ','.join([str(item) for item in values]))
Name : Medieval,Renaissance,Baroque,Classical,Early Romantic,Late Romantic,Modernist
Period : c.1150-c.1400,c.1400-c.1600,c.1600-c.1750,c.1750-c.1830,c.1830-c.1860,c.1860-c.1920,20th century
Representative Composers : Machaut, Landini,Gibbons, Frescobaldi,JS Bach, Vivaldi,Joseph Haydn, Wolfgan Amadeus Mozart,Chopin, Mendelssohn, Schumann, Liszt,Wagner,Verdi,Sergei Rachmaninoff,Calude Debussy
Please note that my_dict is an OrderedDict.
Get a dictionary of two dimensional array
Suppose you have a multiple sheet book as the following:
Top Violinist:
Name |
Period |
Nationality |
Antonio Vivaldi |
1678-1741 |
Italian |
Niccolo Paganini |
1782-1840 |
Italian |
Pablo de Sarasate |
1852-1904 |
Spainish |
Eugene Ysaye |
1858-1931 |
Belgian |
Fritz Kreisler |
1875-1962 |
Astria-American |
Jascha Heifetz |
1901-1987 |
Russian-American |
David Oistrakh |
1908-1974 |
Russian |
Yehundi Menuhin |
1916-1999 |
American |
Itzhak Perlman |
1945- |
Israeli-American |
Hilary Hahn |
1979- |
American |
Noteable Violin Makers:
Maker |
Period |
Country |
Antonio Stradivari |
1644-1737 |
Cremona, Italy |
Giovanni Paolo Maggini |
1580-1630 |
Botticino, Italy |
Amati Family |
1500-1740 |
Cremona, Italy |
Guarneri Family |
1626-1744 |
Cremona, Italy |
Rugeri Family |
1628-1719 |
Cremona, Italy |
Carlo Bergonzi |
1683-1747 |
Cremona, Italy |
Jacob Stainer |
1617-1683 |
Austria |
Most Expensive Violins:
Name |
Estimated Value |
Location |
Messiah Stradivarious |
$ 20,000,000 |
Ashmolean Museum in Oxford, England |
Vieuxtemps Guarneri |
$ 16,000,000 |
On loan to Anne Akiko Meyers |
Lady Blunt |
$ 15,900,000 |
Anonymous bidder |
Here is the code to obtain those sheets as a single dictionary:
>>> book_dict = p.get_book_dict(file_name="book.xls")
And check:
>>> isinstance(book_dict, OrderedDict)
True
>>> import json
>>> for key, item in book_dict.items():
... print(json.dumps({key: item}))
{"Most Expensive Violins": [["Name", "Estimated Value", "Location"], ["Messiah Stradivarious", "$ 20,000,000", "Ashmolean Museum in Oxford, England"], ["Vieuxtemps Guarneri", "$ 16,000,000", "On loan to Anne Akiko Meyers"], ["Lady Blunt", "$ 15,900,000", "Anonymous bidder"]]}
{"Noteable Violin Makers": [["Maker", "Period", "Country"], ["Antonio Stradivari", "1644-1737", "Cremona, Italy"], ["Giovanni Paolo Maggini", "1580-1630", "Botticino, Italy"], ["Amati Family", "1500-1740", "Cremona, Italy"], ["Guarneri Family", "1626-1744", "Cremona, Italy"], ["Rugeri Family", "1628-1719", "Cremona, Italy"], ["Carlo Bergonzi", "1683-1747", "Cremona, Italy"], ["Jacob Stainer", "1617-1683", "Austria"]]}
{"Top Violinist": [["Name", "Period", "Nationality"], ["Antonio Vivaldi", "1678-1741", "Italian"], ["Niccolo Paganini", "1782-1840", "Italian"], ["Pablo de Sarasate", "1852-1904", "Spainish"], ["Eugene Ysaye", "1858-1931", "Belgian"], ["Fritz Kreisler", "1875-1962", "Astria-American"], ["Jascha Heifetz", "1901-1987", "Russian-American"], ["David Oistrakh", "1908-1974", "Russian"], ["Yehundi Menuhin", "1916-1999", "American"], ["Itzhak Perlman", "1945-", "Israeli-American"], ["Hilary Hahn", "1979-", "American"]]}
Write data
Export an array
Suppose you have the following array:
>>> data = [['G', 'D', 'A', 'E'], ['Thomastik-Infield Domaints', 'Thomastik-Infield Domaints', 'Thomastik-Infield Domaints', 'Pirastro'], ['Silver wound', '', 'Aluminum wound', 'Gold Label Steel']]
And here is the code to save it as an excel file :
>>> p.save_as(array=data, dest_file_name="example.xls")
Let’s verify it:
>>> p.get_sheet(file_name="example.xls")
pyexcel_sheet1:
+----------------------------+----------------------------+----------------------------+------------------+
| G | D | A | E |
+----------------------------+----------------------------+----------------------------+------------------+
| Thomastik-Infield Domaints | Thomastik-Infield Domaints | Thomastik-Infield Domaints | Pirastro |
+----------------------------+----------------------------+----------------------------+------------------+
| Silver wound | | Aluminum wound | Gold Label Steel |
+----------------------------+----------------------------+----------------------------+------------------+
And here is the code to save it as a csv file :
>>> p.save_as(array=data,
... dest_file_name="example.csv",
... dest_delimiter=':')
Let’s verify it:
>>> with open("example.csv") as f:
... for line in f.readlines():
... print(line.rstrip())
...
G:D:A:E
Thomastik-Infield Domaints:Thomastik-Infield Domaints:Thomastik-Infield Domaints:Pirastro
Silver wound::Aluminum wound:Gold Label Steel
Export a list of dictionaries
>>> records = [
... {"year": 1903, "country": "Germany", "speed": "206.7km/h"},
... {"year": 1964, "country": "Japan", "speed": "210km/h"},
... {"year": 2008, "country": "China", "speed": "350km/h"}
... ]
>>> p.save_as(records=records, dest_file_name='high_speed_rail.xls')
Export a dictionary of single key value pair
>>> henley_on_thames_facts = {
... "area": "5.58 square meters",
... "population": "11,619",
... "civial parish": "Henley-on-Thames",
... "latitude": "51.536",
... "longitude": "-0.898"
... }
>>> p.save_as(adict=henley_on_thames_facts, dest_file_name='henley.xlsx')
Export a dictionary of single dimensonal array
>>> ccs_insights = {
... "year": ["2017", "2018", "2019", "2020", "2021"],
... "smart phones": [1.53, 1.64, 1.74, 1.82, 1.90],
... "feature phones": [0.46, 0.38, 0.30, 0.23, 0.17]
... }
>>> p.save_as(adict=ccs_insights, dest_file_name='ccs.csv')
Export a dictionary of two dimensional array as a book
Suppose you want to save the below dictionary to an excel file :
>>> a_dictionary_of_two_dimensional_arrays = {
... 'Sheet 1':
... [
... [1.0, 2.0, 3.0],
... [4.0, 5.0, 6.0],
... [7.0, 8.0, 9.0]
... ],
... 'Sheet 2':
... [
... ['X', 'Y', 'Z'],
... [1.0, 2.0, 3.0],
... [4.0, 5.0, 6.0]
... ],
... 'Sheet 3':
... [
... ['O', 'P', 'Q'],
... [3.0, 2.0, 1.0],
... [4.0, 3.0, 2.0]
... ]
... }
Here is the code:
>>> p.save_book_as(
... bookdict=a_dictionary_of_two_dimensional_arrays,
... dest_file_name="book.xls"
... )
If you want to preserve the order of sheets in your dictionary, you have to pass on an ordered dictionary to the function itself. For example:
>>> data = OrderedDict()
>>> data.update({"Sheet 2": a_dictionary_of_two_dimensional_arrays['Sheet 2']})
>>> data.update({"Sheet 1": a_dictionary_of_two_dimensional_arrays['Sheet 1']})
>>> data.update({"Sheet 3": a_dictionary_of_two_dimensional_arrays['Sheet 3']})
>>> p.save_book_as(bookdict=data, dest_file_name="book.xls")
Let’s verify its order:
>>> book_dict = p.get_book_dict(file_name="book.xls")
>>> for key, item in book_dict.items():
... print(json.dumps({key: item}))
{"Sheet 2": [["X", "Y", "Z"], [1, 2, 3], [4, 5, 6]]}
{"Sheet 1": [[1, 2, 3], [4, 5, 6], [7, 8, 9]]}
{"Sheet 3": [["O", "P", "Q"], [3, 2, 1], [4, 3, 2]]}
Please notice that “Sheet 2” is the first item in the book_dict, meaning the order of sheets are preserved.
Transcoding
The following code does a simple file format transcoding from xls to csv:
>>> p.save_as(file_name="birth.xls", dest_file_name="birth.csv")
Again it is really simple. Let’s verify what we have gotten:
>>> sheet = p.get_sheet(file_name="birth.csv")
>>> sheet
birth.csv:
+-------+--------+----------+
| name | weight | birth |
+-------+--------+----------+
| Adam | 3.4 | 03/02/15 |
+-------+--------+----------+
| Smith | 4.2 | 12/11/14 |
+-------+--------+----------+
Let use previous example and save it as xlsx instead
>>> p.save_as(file_name="birth.xls",
... dest_file_name="birth.xlsx") # change the file extension
Again let’s verify what we have gotten:
>>> sheet = p.get_sheet(file_name="birth.xlsx")
>>> sheet
pyexcel_sheet1:
+-------+--------+----------+
| name | weight | birth |
+-------+--------+----------+
| Adam | 3.4 | 03/02/15 |
+-------+--------+----------+
| Smith | 4.2 | 12/11/14 |
+-------+--------+----------+
Excel book merge and split operation in one line
Merge all excel files in directory into a book where each file become a sheet
The following code will merge every excel files into one file, say “output.xls”:
from pyexcel.cookbook import merge_all_to_a_book
import glob
merge_all_to_a_book(glob.glob("your_csv_directory\*.csv"), "output.xls")
You can mix and match with other excel formats: xls, xlsm and ods. For example, if you are sure you have only xls, xlsm, xlsx, ods and csv files in your_excel_file_directory, you can do the following:
from pyexcel.cookbook import merge_all_to_a_book
import glob
merge_all_to_a_book(glob.glob("your_excel_file_directory\*.*"), "output.xls")
Split a book into single sheet files
Suppose you have many sheets in a work book and you would like to separate each into a single sheet excel file. You can easily do this:
>>> from pyexcel.cookbook import split_a_book
>>> split_a_book("megabook.xls", "output.xls")
>>> import glob
>>> outputfiles = glob.glob("*_output.xls")
>>> for file in sorted(outputfiles):
... print(file)
...
Sheet 1_output.xls
Sheet 2_output.xls
Sheet 3_output.xls
for the output file, you can specify any of the supported formats
Extract just one sheet from a book
Suppose you just want to extract one sheet from many sheets that exists in a work book and you would like to separate it into a single sheet excel file. You can easily do this:
>>> from pyexcel.cookbook import extract_a_sheet_from_a_book
>>> extract_a_sheet_from_a_book("megabook.xls", "Sheet 1", "output.xls")
>>> if os.path.exists("Sheet 1_output.xls"):
... print("Sheet 1_output.xls exists")
...
Sheet 1_output.xls exists
for the output file, you can specify any of the supported formats
Stream APIs for big file : A set of two liners
When you are dealing with BIG excel files, you will want pyexcel to use constant memory.
This section shows you how to get data from your BIG excel files and how to export data to excel files in two lines at most, without eating all your computer memory.
Two liners for get data from big excel files
Get a list of dictionaries
Suppose you want to process the following coffee data again:
Top 5 coffeine drinks:
Coffees |
Serving Size |
Caffeine (mg) |
Starbucks Coffee Blonde Roast |
venti(20 oz) |
475 |
Dunkin’ Donuts Coffee with Turbo Shot |
large(20 oz.) |
398 |
Starbucks Coffee Pike Place Roast |
grande(16 oz.) |
310 |
Panera Coffee Light Roast |
regular(16 oz.) |
300 |
Let’s get a list of dictionary out from the xls file:
>>> records = p.iget_records(file_name="your_file.xls")
And let’s check what do we have:
>>> for r in records:
... print(f"{r['Serving Size']} of {r['Coffees']} has {r['Caffeine (mg)']} mg")
venti(20 oz) of Starbucks Coffee Blonde Roast has 475 mg
large(20 oz.) of Dunkin' Donuts Coffee with Turbo Shot has 398 mg
grande(16 oz.) of Starbucks Coffee Pike Place Roast has 310 mg
regular(16 oz.) of Panera Coffee Light Roast has 300 mg
Please do not forgot the second line to close the opened file handle:
>>> p.free_resources()
Get two dimensional array
Instead, what if you have to use pyexcel.get_array to do the same:
>>> for row in p.iget_array(file_name="your_file.xls", start_row=1):
... print(f"{row[1]} of {row[0]} has {row[2]} mg")
venti(20 oz) of Starbucks Coffee Blonde Roast has 475 mg
large(20 oz.) of Dunkin' Donuts Coffee with Turbo Shot has 398 mg
grande(16 oz.) of Starbucks Coffee Pike Place Roast has 310 mg
regular(16 oz.) of Panera Coffee Light Roast has 300 mg
Again, do not forgot the second line:
>>> p.free_resources()
where start_row skips the header row.
Data export in one liners
Export an array
Suppose you have the following array:
>>> data = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
And here is the code to save it as an excel file :
>>> p.isave_as(array=data, dest_file_name="example.xls")
But the following line is not required because the data source are not file sources:
>>> # p.free_resources()
Let’s verify it:
>>> p.get_sheet(file_name="example.xls")
pyexcel_sheet1:
+---+---+---+
| 1 | 2 | 3 |
+---+---+---+
| 4 | 5 | 6 |
+---+---+---+
| 7 | 8 | 9 |
+---+---+---+
And here is the code to save it as a csv file :
>>> p.isave_as(array=data,
... dest_file_name="example.csv",
... dest_delimiter=':')
Let’s verify it:
>>> with open("example.csv") as f:
... for line in f.readlines():
... print(line.rstrip())
...
1:2:3
4:5:6
7:8:9
Export a list of dictionaries
>>> records = [
... {"year": 1903, "country": "Germany", "speed": "206.7km/h"},
... {"year": 1964, "country": "Japan", "speed": "210km/h"},
... {"year": 2008, "country": "China", "speed": "350km/h"}
... ]
>>> p.isave_as(records=records, dest_file_name='high_speed_rail.xls')
Export a dictionary of single key value pair
>>> henley_on_thames_facts = {
... "area": "5.58 square meters",
... "population": "11,619",
... "civial parish": "Henley-on-Thames",
... "latitude": "51.536",
... "longitude": "-0.898"
... }
>>> p.isave_as(adict=henley_on_thames_facts, dest_file_name='henley.xlsx')
Export a dictionary of single dimensonal array
>>> ccs_insights = {
... "year": ["2017", "2018", "2019", "2020", "2021"],
... "smart phones": [1.53, 1.64, 1.74, 1.82, 1.90],
... "feature phones": [0.46, 0.38, 0.30, 0.23, 0.17]
... }
>>> p.isave_as(adict=ccs_insights, dest_file_name='ccs.csv')
>>> p.free_resources()
Export a dictionary of two dimensional array as a book
Suppose you want to save the below dictionary to an excel file :
>>> a_dictionary_of_two_dimensional_arrays = {
... 'Sheet 1':
... [
... [1.0, 2.0, 3.0],
... [4.0, 5.0, 6.0],
... [7.0, 8.0, 9.0]
... ],
... 'Sheet 2':
... [
... ['X', 'Y', 'Z'],
... [1.0, 2.0, 3.0],
... [4.0, 5.0, 6.0]
... ],
... 'Sheet 3':
... [
... ['O', 'P', 'Q'],
... [3.0, 2.0, 1.0],
... [4.0, 3.0, 2.0]
... ]
... }
Here is the code:
>>> p.isave_book_as(
... bookdict=a_dictionary_of_two_dimensional_arrays,
... dest_file_name="book.xls"
... )
If you want to preserve the order of sheets in your dictionary, you have to pass on an ordered dictionary to the function itself. For example:
>>> from pyexcel._compact import OrderedDict
>>> data = OrderedDict()
>>> data.update({"Sheet 2": a_dictionary_of_two_dimensional_arrays['Sheet 2']})
>>> data.update({"Sheet 1": a_dictionary_of_two_dimensional_arrays['Sheet 1']})
>>> data.update({"Sheet 3": a_dictionary_of_two_dimensional_arrays['Sheet 3']})
>>> p.isave_book_as(bookdict=data, dest_file_name="book.xls")
>>> p.free_resources()
Let’s verify its order:
>>> import json
>>> book_dict = p.get_book_dict(file_name="book.xls")
>>> for key, item in book_dict.items():
... print(json.dumps({key: item}))
{"Sheet 2": [["X", "Y", "Z"], [1, 2, 3], [4, 5, 6]]}
{"Sheet 1": [[1, 2, 3], [4, 5, 6], [7, 8, 9]]}
{"Sheet 3": [["O", "P", "Q"], [3, 2, 1], [4, 3, 2]]}
Please notice that “Sheet 2” is the first item in the book_dict, meaning the order of sheets are preserved.
File format transcoding on one line
The following code does a simple file format transcoding from xls to csv:
>>> import pyexcel
>>> p.save_as(file_name="birth.xls", dest_file_name="birth.csv")
Again it is really simple. Let’s verify what we have gotten:
>>> sheet = p.get_sheet(file_name="birth.csv")
>>> sheet
birth.csv:
+-------+--------+----------+
| name | weight | birth |
+-------+--------+----------+
| Adam | 3.4 | 03/02/15 |
+-------+--------+----------+
| Smith | 4.2 | 12/11/14 |
+-------+--------+----------+
Let use previous example and save it as xlsx instead
>>> import pyexcel
>>> p.isave_as(file_name="birth.xls",
... dest_file_name="birth.xlsx") # change the file extension
Again let’s verify what we have gotten:
>>> sheet = p.get_sheet(file_name="birth.xlsx")
>>> sheet
pyexcel_sheet1:
+-------+--------+----------+
| name | weight | birth |
+-------+--------+----------+
| Adam | 3.4 | 03/02/15 |
+-------+--------+----------+
| Smith | 4.2 | 12/11/14 |
+-------+--------+----------+
Available Plugins
Package name |
Supported file formats |
Dependencies |
---|---|---|
csvz,tsvz readers depends on chardet |
||
xls, xlsx(read only), xlsm(read only) |
||
xlsx |
||
ods |
pyexcel-ezodf, lxml |
|
ods |
Package name |
Supported file formats |
Dependencies |
---|---|---|
xlsx(write only) |
||
xlsx(write only) |
||
xlsx(read only) |
lxml |
|
xlsb(read only) |
pyxlsb |
|
read only for ods, fods |
lxml |
|
write only for ods |
loxun |
|
html(read only) |
lxml,html5lib |
|
pdf(read only) |
camelot |
Plugin shopping guide
Since 2020, all pyexcel-io plugins have dropped the support for python versions which are lower than 3.6. If you want to use any of those Python versions, please use pyexcel-io and its plugins versions that are lower than 0.6.0.
Except csv files, xls, xlsx and ods files are a zip of a folder containing a lot of xml files
The dedicated readers for excel files can stream read
In order to manage the list of plugins installed, you need to use pip to add or remove a plugin. When you use virtualenv, you can have different plugins per virtual environment. In the situation where you have multiple plugins that does the same thing in your environment, you need to tell pyexcel which plugin to use per function call. For example, pyexcel-ods and pyexcel-odsr, and you want to get_array to use pyexcel-odsr. You need to append get_array(…, library=’pyexcel-odsr’).
Package name |
Supported file formats |
Dependencies |
Python versions |
---|---|---|---|
write only:rst, mediawiki, html, latex, grid, pipe, orgtbl, plain simple read only: ndjson r/w: json |
2.6, 2.7, 3.3, 3.4 3.5, 3.6, pypy |
||
handsontable in html |
same as above |
||
svg chart |
2.7, 3.3, 3.4, 3.5 3.6, pypy |
||
sortable table in html |
same as above |
||
gantt chart in html |
except pypy, same as above |
Footnotes
Acknowledgement
All great work have been done by odf, ezodf, xlrd, xlwt, tabulate and other individual developers. This library unites only the data access code.
License
New BSD License
21 contributors
In alphabetical order:
Change log
0.7.1 - 11.09.2024
Fixed
#272: remove chardet as a requirement
Updated
various typos and linted the code
0.7.0 - 12.2.2022
Fixed
#250: RecursionError raised on deepcopy of a sheet
Updated
#255: pyexcel.get_array documentation page seems to be a copy of pyexcel.get_sheet
Removed
#249: drop the support for dummy import statements pyexcel.ext.*
0.6.7 - 12.09.2021
Updated
#243: fix small typo.
add chardet as explicit dependency
0.6.6 - 14.11.2020
Updated
#233: dynamically resize the table matrix on set_value. sheet[‘AA1’] = ‘test’ will work in this release.
0.6.5 - 8.10.2020
Updated
update queryset source to work with pyexcel-io 0.6.0
0.6.4 - 18.08.2020
Updated
#219: book created from dict no longer discards order.
0.6.3 - 01.08.2020
fixed
#214: remove leading and trailing whitespace for column names
removed
python 2 compatibility have been permanently removed.
0.6.2 - 8.06.2020
fixed
#109: Control the column order when write the data output
0.6.1 - 02.05.2020
fixed
#203: texttable was dropped out in 0.6.0 as compulsary dependency. end user may experience it when a sheet/table is printed in a shell. otherwise, new user of pyexcel won’t see it. As of release date, no issues were created
0.6.0 - 21.04.2020
updated
#199: += in place; = + shall return new instance
#195: documentation update. however small is welcome
removed
Dropping the test support for python version lower than 3.6. v0.6.0 should work with python 2.7 but is not guaranteed to work. Please upgrade to python 3.6+.
0.5.15 - 07.07.2019
updated
#185: fix a bug with http data source. The real fix lies in pyexcel-io v0.5.19. this release just put the version requirement in.
0.5.14 - 12.06.2019
updated
#182: support dest_force_file_type on save_as and save_book_as
0.5.13 - 12.03.2019
updated
#176: get_sheet {IndexError}list index out of range // XLSX can’t be opened
0.5.12 - 25.02.2019
updated
#174: include examples in tarbar
0.5.11 - 22.02.2019
updated
#169: remove pyexcel-handsontalbe in test
add tests, and docs folder in distribution
0.5.10 - 3.12.2018
updated
#157: Please use scan_plugins_regex, which lml 0.7 complains about
updated dependency on pyexcel-io to 0.5.11
0.5.9.1 - 30.08.2018
updated
to require pyexcel-io 0.5.9.1 and use lml at least version 0.0.2
0.5.9 - 30.08.2018
added
support __len__. len(book) returns the number of sheets and len(sheet) returns the number of rows
#144: memory-efficient way to read sheet names.
#148: force_file_type is introduced. When reading a file on a disk, this parameter allows you to choose a reader. i.e. csv reader for a text file. xlsx reader for a xlsx file but with .blob file suffix.
finally, pyexcel got import pyexcel.__version__
updated
0.5.8 - 26.03.2018
added
#125, sort book sheets
updated
0.5.7 - 11.01.2018
added
pyexcel-io#46, expose bulk_save to developer.
0.5.6 - 23.10.2017
removed
0.5.5 - 20.10.2017
removed
0.5.4 - 27.09.2017
fixed
#100, Sheet.to_dict() gets out of range error because there is only one row.
updated
Updated the baseline of pyexcel-io to 0.5.1.
0.5.3 - 01-08-2017
added
0.5.2 - 26-07-2017
Updated
embeded the enabler for pyexcel-htmlr. http source does not support text/html as mime type.
0.5.1 - 12.06.2017
Updated
support saving SheetStream and BookStream to database targets. This is needed for pyexcel-webio and its downstream projects.
0.5.0 - 19.06.2017
Added
Sheet.top() and Sheet.top_left() for data browsing
add html as default rich display in Jupyter notebook when pyexcel-text and pyexcel-chart is installed
add svg as default rich display in Jupyter notebook when pyexcel-chart and one of its implementation plugin(pyexcel-pygal, etc.) are is installed
new dictionary source supported: a dictionary of key value pair could be read into a sheet.
added dynamic external plugin loading. meaning if a pyexcel plugin is installed, it will be loaded implicitly. And this change would remove unnecessary info log for those who do not use pyexcel-text and pyexcel-gal
save_book_as before 0.5.0 becomes isave_book_as and save_book_as in 0.5.0 convert BookStream to Book before saving.
#83, file closing mechanism is enfored. free_resource is added and it should be called when iget_array, iget_records, isave_as and/or isave_book_as are used.
Updated
array is passed to pyexcel.Sheet as reference. it means your array data will be modified.
Removed
pyexcel.Writer and pyexcel.BookWriter were removed
pyexcel.load_book_from_sql and pyexcel.load_from_sql were removed
pyexcel.deprecated.load_from_query_sets, pyexcel.deprecated.load_book_from_django_models and pyexcel.deprecated.load_from_django_model were removed
Removed plugin loading code and lml is used instead
0.4.5 - 17.03.2017
Updated
#80: remove pyexcel-chart import from v0.4.x
0.4.4 - 06.02.2017
Updated
#68: regression save_to_memory() should have returned a stream instance which has been reset to zero if possible. The exception is sys.stdout, which cannot be reset.
#74: Not able to handle decimal.Decimal
Removed
remove get_{{file_type}}_stream functions from pyexcel.Sheet and pyexcel.Book introduced since 0.4.3.
0.4.3 - 26.01.2017
Added
‘.stream’ attribute are attached to ~pyexcel.Sheet and ~pyexcel.Book to get direct access the underneath stream in responding to file type attributes, such as sheet.xls. it helps provide a custom stream to external world, for example, Sheet.stream.csv gives a text stream that contains csv formatted data. Book.stream.xls returns a xls format data in a byte stream.
Updated
Better error reporting when an unknown parameters or unsupported file types were given to the signature functions.
0.4.2 - 17.01.2017
Updated
Raise exception if the incoming sheet does not have column names. In other words, only sheet with column names could be saved to database. sheet with row names cannot be saved. The alternative is to transpose the sheet, then name_columns_by_row and then save.
fix iget_records where a non-uniform content should be given, e.g. [[“x”, “y”], [1, 2], [3]], some record would become non-uniform, e.g. key ‘y’ would be missing from the second record.
skip_empty_rows is applicable when saving a python data structure to another data source. For example, if your array contains a row which is consisted of empty string, such as [‘’, ‘’, ‘’ … ‘’], please specify skip_empty_rows=False in order to preserve it. This becomes subtle when you try save a python dictionary where empty rows is not easy to be spotted.
#69: better documentation for save_book_as.
0.4.1 - 23.12.2016
Updated
#68: regression save_to_memory() should have returned a stream instance.
0.4.0 - 22.12.2016
Added
Flask-Excel#19 allow sheet_name parameter
pyexcel-xls#11 case-insensitive for file_type. xls and XLS are treated in the same way
Updated
#66: export_columns is ignored
Update dependency on pyexcel-io v0.3.0
0.3.3 - 07.11.2016
Updated
#63: cannot display empty sheet(hence book with empty sheet) as texttable
0.3.2 - 02.11.2016
Updated
#62: optional module import error become visible.
0.3.0 - 28.10.2016
Added:
file type setters for Sheet and Book, and its documentation
iget_records returns a generator for a list of records and should have better memory performance, especially dealing with large csv files.
iget_array returns a generator for a list of two dimensional array and should have better memory performance, especially dealing with large csv files.
Enable pagination support, and custom row renderer via pyexcel-io v0.2.3
Updated
Take isave_as out from save_as. Hence two functions are there for save a sheet as
#60: encode ‘utf-8’ if the console is of ascii encoding.
#59: custom row renderer
#56: set cell value does not work
pyexcel.transpose becomes pyexcel.sheets.transpose
iterator functions of pyexcel.Sheet were converted to generator functions
pyexcel.Sheet.enumerate()
pyexcel.Sheet.reverse()
pyexcel.Sheet.vertical()
pyexcel.Sheet.rvertical()
pyexcel.Sheet.rows()
pyexcel.Sheet.rrows()
pyexcel.Sheet.columns()
pyexcel.Sheet.rcolumns()
pyexcel.Sheet.named_rows()
pyexcel.Sheet.named_columns()
~pyexcel.Sheet.save_to_memory and ~pyexcel.Book.save_to_memory return the actual content. No longer they will return a io object hence you cannot call getvalue() on them.
Removed:
content and out_file as function parameters to the signature functions are no longer supported.
SourceFactory and RendererFactory are removed
The following methods are removed
pyexcel.to_array
pyexcel.to_dict
pyexcel.utils.to_one_dimensional_array
pyexcel.dict_to_array
pyexcel.from_records
pyexcel.to_records
pyexcel.Sheet.filter has been re-implemented and all filters were removed:
pyexcel.filters.ColumnIndexFilter
pyexcel.filters.ColumnFilter
pyexcel.filters.RowFilter
pyexcel.filters.EvenColumnFilter
pyexcel.filters.OddColumnFilter
pyexcel.filters.EvenRowFilter
pyexcel.filters.OddRowFilter
pyexcel.filters.RowIndexFilter
pyexcel.filters.SingleColumnFilter
pyexcel.filters.RowValueFilter
pyexcel.filters.NamedRowValueFilter
pyexcel.filters.ColumnValueFilter
pyexcel.filters.NamedColumnValueFilter
pyexcel.filters.SingleRowFilter
the following functions have been removed
add_formatter
remove_formatter
clear_formatters
freeze_formatters
add_filter
remove_filter
clear_filters
freeze_formatters
pyexcel.Sheet.filter has been re-implemented and all filters were removed:
pyexcel.formatters.SheetFormatter
0.2.5 - 31.08.2016
Updated:
#58: texttable should have been made as compulsory requirement
0.2.4 - 14.07.2016
Updated:
For python 2, writing to sys.stdout by pyexcel-cli raise IOError.
0.2.3 - 11.07.2016
Updated:
For python 3, do not seek 0 when saving to memory if sys.stdout is passed on. Hence, adding support for sys.stdin and sys.stdout.
0.2.2 - 01.06.2016
Updated:
Explicit imports, no longer needed
Depends on latest setuptools 18.0.1
NotImplementedError will be raised if parameters to core functions are not supported, e.g. get_sheet(cannot_find_me_option=”will be thrown out as NotImplementedError”)
0.2.1 - 23.04.2016
Added:
add pyexcel-text file types as attributes of pyexcel.Sheet and pyexcel.Book, related to #31
auto import pyexcel-text if it is pip installed
Updated:
code refactoring done for easy addition of sources.
bug fix #29, Even if the format is a string it is displayed as a float
pyexcel-text is no longer a plugin to pyexcel-io but to pyexcel.sources, see pyexcel-text#22
Removed:
pyexcel.presentation is removed. No longer the internal decorate @outsource is used. related to #31
0.2.0 - 17.01.2016
Updated
adopt pyexcel-io yield key word to return generator as content
pyexcel.save_as and pyexcel.save_book_as get performance improvements
0.1.7 - 03.07.2015
Added
Support pyramid-excel which does the database commit on its own.
0.1.6 - 13.06.2015
Added
get excel data from a http url
0.0.13 - 07.02.2015
Added
Support django
texttable as default renderer
0.0.12 - 25.01.2015
Added
Added sqlalchemy support
0.0.10 - 15.12.2015
Added
added csvz and tsvz format
0.0.4 - 12.10.2014
Updated
Support python 3
0.0.1 - 14.09.2014
Features:
read and write csv, ods, xls, xlsx and xlsm files(which are referred later as excel files)
various iterators for the reader
row and column filters for the reader
utilities to get array and dictionary out from excel files.
cookbok receipes for some common and simple usage of this library.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyexcel-0.7.1.tar.gz
.
File metadata
- Download URL: pyexcel-0.7.1.tar.gz
- Upload date:
- Size: 819.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c875991c1de901406345d13c7dde6c4acfd5f08b16af6c4a881a52c6c3c3ab06 |
|
MD5 | cf8688734d9077277a3c988859165413 |
|
BLAKE2b-256 | 9ad5c2438b59cc1a61e72dba86aabaa3e5dcbb1489aef24a43ed17304ec322c2 |
Provenance
The following attestation bundles were made for pyexcel-0.7.1.tar.gz
:
Publisher:
pythonpublish.yml
on pyexcel/pyexcel
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pyexcel-0.7.1.tar.gz
- Subject digest:
c875991c1de901406345d13c7dde6c4acfd5f08b16af6c4a881a52c6c3c3ab06
- Sigstore transparency entry: 147798246
- Sigstore integration time:
- Predicate type:
File details
Details for the file pyexcel-0.7.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pyexcel-0.7.1-py2.py3-none-any.whl
- Upload date:
- Size: 88.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3306e66e24ef24e34399d329a508d669884a3577a557679c94edda9efc88b834 |
|
MD5 | 9efc11d18d5364f57c4b09ebd1e78d10 |
|
BLAKE2b-256 | a93972a95e9327fe27d0597adce3c317d23e45ca899df335313e6ba20464b8fc |
Provenance
The following attestation bundles were made for pyexcel-0.7.1-py2.py3-none-any.whl
:
Publisher:
pythonpublish.yml
on pyexcel/pyexcel
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
pyexcel-0.7.1-py2.py3-none-any.whl
- Subject digest:
3306e66e24ef24e34399d329a508d669884a3577a557679c94edda9efc88b834
- Sigstore transparency entry: 147798247
- Sigstore integration time:
- Predicate type: