Skip to main content

A python library to read and write structured data in csv, zipped csvformat and to/from databases

Project description

https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png https://raw.githubusercontent.com/pyexcel/pyexcel-mobans/master/images/awesome-badge.svg https://github.com/pyexcel/pyexcel-io/workflows/run_tests/badge.svg https://codecov.io/gh/pyexcel/pyexcel-io/branch/master/graph/badge.svg https://badge.fury.io/py/pyexcel-io.svg https://anaconda.org/conda-forge/pyexcel-io/badges/version.svg https://pepy.tech/badge/pyexcel-io/month https://anaconda.org/conda-forge/pyexcel-io/badges/downloads.svg https://img.shields.io/gitter/room/gitterHQ/gitter.svg https://img.shields.io/static/v1?label=continuous%20templating&message=%E6%A8%A1%E7%89%88%E6%9B%B4%E6%96%B0&color=blue&style=flat-square https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square https://readthedocs.org/projects/pyexcel-io/badge/?version=latest

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

pyexcel-io provides one application programming interface(API) to read and write the data in excel format, import the data into and export the data from database. It provides support for csv(z) format, django database and sqlalchemy supported databases. Its supported file formats are extended to cover “xls”, “xlsx”, “ods” by the following extensions:

A list of file formats supported by external plugins

Package name

Supported file formats

Dependencies

pyexcel-io

csv, csvz [1], tsv, tsvz [2]

pyexcel-xls

xls, xlsx(read only), xlsm(read only)

xlrd, xlwt

pyexcel-xlsx

xlsx

openpyxl

pyexcel-ods3

ods

pyexcel-ezodf, lxml

pyexcel-ods

ods

odfpy

Dedicated file reader and writers

Package name

Supported file formats

Dependencies

pyexcel-xlsxw

xlsx(write only)

XlsxWriter

pyexcel-libxlsxw

xlsx(write only)

libxlsxwriter

pyexcel-xlsxr

xlsx(read only)

lxml

pyexcel-xlsbr

xlsb(read only)

pyxlsb

pyexcel-odsr

read only for ods, fods

lxml

pyexcel-odsw

write only for ods

loxun

pyexcel-htmlr

html(read only)

lxml,html5lib

pyexcel-pdfr

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’).

Footnotes

If you need to manipulate the data, you might do it yourself or use its brother library pyexcel .

If you would like to extend it, you may use it to write your own extension to handle a specific file format.

Installation

You can install pyexcel-io via pip:

$ pip install pyexcel-io

or clone it and install it:

$ git clone https://github.com/pyexcel/pyexcel-io.git
$ cd pyexcel-io
$ python setup.py install

Development guide

Development steps for code changes

  1. git clone https://github.com/pyexcel/pyexcel-io.git

  2. cd pyexcel-io

Upgrade your setup tools and pip. They are needed for development and testing only:

  1. pip install –upgrade setuptools pip

Then install relevant development requirements:

  1. pip install -r rnd_requirements.txt # if such a file exists

  2. pip install -r requirements.txt

  3. pip install -r tests/requirements.txt

Once you have finished your changes, please provide test case(s), relevant documentation and update changelog.yml

How to test your contribution

Although nose and doctest are both used in code testing, it is adviable that unit tests are put in tests. doctest is incorporated only to make sure the code examples in documentation remain valid across different development releases.

On Linux/Unix systems, please launch your tests like this:

$ make

On Windows, please issue this command:

> test.bat

Before you commit

Please run:

$ make format

so as to beautify your code otherwise your build may fail your unit test.

License

New BSD License

Change log

0.6.6 - 31.1.2022

updated

  1. #112: Log Empty Row Warning instead ‘print’

0.6.5 - 08.10.2021

updated

  1. #109: enable ods3 to have datetime

0.6.4 - 31.10.2020

updated

  1. #102: skip columns from imported excel sheet.

0.6.3 - 12.10.2020

fixed

  1. #96: regression: unknown file type shall trigger NoSupportingPluginFound

updated

  1. extra dependencies uses 0.6.0 based plugins

0.6.2 - 7.10.2020

updated

  1. #94: keep backward compatibility for pyexcel-xls 0.4.1

0.6.1 - 7.10.2020

removed

  1. python 3.6 lower versions are no longer supported

updated

  1. pyexcel-io plugin interface has been rewritten. PyInstaller user will be impacted. please read ‘Packaging with Pyinstaller’ in the documentation.

  2. new query set reader plugin. pyexcel<=0.6.4 has used intrusive way of getting query set source done. it is against the plugin interface.

fixed

  1. #74: handle zip files which contain non-UTF-8 encoded files.

added

  1. #86: allow trailing options, get_data(…keep_trailing_empty_cells=True).

0.5.20 - 17.7.2019

updated

  1. #70: when the given file is a root directory, the error shall read it is not a file

0.5.19 - 14.7.2019

updated

  1. pyexcel#185: handle stream conversion if file type(html) needs string content then bytes to handle

0.5.18 - 12.06.2019

updated

  1. #69: Force file type(force_file_type) on write

0.5.17 - 04.04.2019

updated

  1. #68: Raise IOError when the data file does not exist

0.5.16 - 19.03.2019

updated

  1. #67: fix conversion issue for long type on python 2.7 for ods

0.5.15 - 16.03.2019

updated

  1. pyexcel-ods#33: fix integer comparision error on i586

0.5.14 - 21.02.2019

updated

  1. #65: add tests/__init__.py because python2.7 setup.py test needs it

0.5.13 - 12.02.2019

updated

  1. #63: Version 0.5.12 prevents xslx and ods plugin from being loaded

0.5.12 - 9.02.2019

updated

  1. #60: include tests in tar ball

  2. #61: enable python setup.py test

0.5.11 - 3.12.2018

updated

  1. #59: Please use scan_plugins_regex, which lml 0.7 complains about

0.5.10 - 27.11.2018

added

  1. #57, long type will not be written in ods. please use string type. And if the integer is equal or greater than 10 to the power of 16, it will not be written either in ods. In both situation, IntegerPrecisionLossError will be raised. And this version enables pyexcel-ods and pyexcel-ods3 to do so.

0.5.9.1 - 30.08.2018

updated

  1. #53, upgrade lml dependency to at least 0.0.2

0.5.9 - 23.08.2018

added

  1. pyexcel#148, support force_file_type

0.5.8 - 16.08.2018

added

  1. #49, support additional options when detecting float values in csv format. default_float_nan, ignore_nan_text

0.5.7 - 02.05.2018

fixed

  1. #48, turn off pep 0515

  2. #47, csv reader cannot handle relative file names

0.5.6 - 11.01.2018

fixed

  1. #46, expose bulk_save to developer

0.5.5 - 23.12.2017

fixed

  1. Issue #45, csv reader throws exception because google app engine does not support mmap. People who are not working with google app engine, need not to take this update. Enjoy your Christmas break.

0.5.4 - 10.11.2017

updated

  1. PR #44, use unicodewriter for csvz writers.

0.5.3 - 23.10.2017

updated

  1. pyexcel pyexcel#105, remove gease from setup_requires, introduced by 0.5.2.

  2. remove python2.6 test support

0.5.2 - 20.10.2017

added

  1. pyexcel#103, include LICENSE file in MANIFEST.in, meaning LICENSE file will appear in the released tar ball.

0.5.1 - 02.09.2017

Fixed

  1. pyexcel-ods#25, Unwanted dependency on pyexcel.

0.5.0 - 30.08.2017

Added

  1. Collect all data type conversion codes as service.py.

Updated

  1. #19, use cString by default. For python, it will be a performance boost

0.4.4 - 08.08.2017

Updated

  1. #42, raise exception if database table name does not match the sheet name

0.4.3 - 29.07.2017

Updated

  1. #41, walk away gracefully when mmap is not available.

0.4.2 - 05.07.2017

Updated

  1. #37, permanently fix the residue folder pyexcel by release all future releases in a clean clone.

0.4.1 - 29.06.2017

Updated

  1. #39, raise exception when bulk save in django fails. Please bulk_save=False if you as the developer choose to save the records one by one if bulk_save cannot be used. However, exception in one-by-one save case will be raised as well. This change is made to raise exception in the first place so that you as the developer will be suprised when it was deployed in production.

0.4.0 - 19.06.2017

Updated

  1. ‘built-in’ as the value to the parameter ‘library’ as parameter to invoke pyexcel-io’s built-in csv, tsv, csvz, tsvz, django and sql won’t work. It is renamed to ‘pyexcel-io’.

  2. built-in csv, tsv, csvz, tsvz, django and sql are lazy loaded.

  3. pyexcel-io plugin interface has been updated. v0.3.x plugins won’t work.

  4. #32, csv and csvz file handle are made sure to be closed. File close mechanism is enfored.

  5. iget_data function is introduced to cope with dangling file handle issue.

Removed

  1. Removed plugin loading code and lml is used instead

0.3.4 - 18.05.2017

Updated

  1. #33, handle mmap object differently given as file content. This issue has put in a priority to single sheet csv over multiple sheets in a single memory stream. The latter format is pyexcel own creation but is rarely used. In latter case, multiple_sheet=True should be passed along get_data.

  2. #34, treat mmap object as a file content.

  3. #35, encoding parameter take no effect when given along with file content

  4. use ZIP_DEFALTED to really do the compression

0.3.3 - 30.03.2017

Updated

  1. #31, support pyinstaller

0.3.2 - 26.01.2017

Updated

  1. #29, change skip_empty_rows to False by default

0.3.1 - 21.01.2017

Added

  1. updated versions of extra packages

Updated

  1. #23, provide helpful message when old pyexcel plugin exists

  2. restored previously available diagnosis message for missing libraries

0.3.0 - 22.12.2016

Added

  1. lazy loading of plugins. for example, pyexcel-xls is not entirely loaded until xls format is used at its first attempted reading or writing. Since it is loaded, it will not be loaded in the second io action.

  2. pyexcel-xls#11, make case-insensitive for file type

0.2.6 - 21.12.2016

Updated

  1. #24, pass on batch_size

0.2.5 - 20.12.2016

Updated

  1. #26, performance issue with getting the number of columns.

0.2.4 - 24.11.2016

Updated

  1. #23, Failed to convert long integer string in python 2 to its actual value

0.2.3 - 16.09.2016

Added

  1. #21, choose subset from data base tables for export

  2. #22, custom renderer if given row_renderer as parameter.

0.2.2 - 31.08.2016

Added

  1. support pagination. two pairs: start_row, row_limit and start_column, column_limit help you deal with large files.

  2. skip_empty_rows=True was introduced. To include empty rows, put it to False.

Updated

  1. #20, pyexcel-io attempts to parse cell contents of ‘infinity’ as a float/int, crashes

0.2.1 - 11.07.2016

Added

  1. csv format: handle utf-16 encoded csv files. Potentially being able to decode other formats if correct “encoding” is provided

  2. csv format: write utf-16 encoded files. Potentially other encoding is also supported

  3. support stdin as input stream and stdout as output stream

Updated

  1. Attention, user of pyexcel-io! No longer io stream validation is performed in python 3. The guideline is: io.StringIO for csv, tsv only, otherwise BytesIO for xlsx, xls, ods. You can use RWManager.get_io to produce a correct stream type for you.

  2. #15, support foreign django/sql foreign key

0.2.0 - 01.06.2016

Added

  1. autoload of pyexcel-io plugins

  2. auto detect datetime, float and int. Detection can be switched off by auto_detect_datetime, auto_detect_float, auto_detect_int

0.1.0 - 17.01.2016

Added

  1. yield key word to return generator as content

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyexcel-io-0.6.6.tar.gz (75.2 kB view hashes)

Uploaded Source

Built Distribution

pyexcel_io-0.6.6-py2.py3-none-any.whl (44.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page