Skip to main content

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

Project description

https://api.travis-ci.org/pyexcel/pyexcel-io.svg?branch=master https://codecov.io/github/pyexcel/pyexcel-io/coverage.png https://readthedocs.org/projects/pyexcel-io/badge/?version=latest

Known constraints

Fonts, colors and charts are not supported.

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

Python versions

pyexcel-io

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

2.6, 2.7, 3.3, 3.4, 3.5, 3.6 pypy

pyexcel-xls

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

xlrd, xlwt

same as above

pyexcel-xlsx

xlsx

openpyxl

same as above

pyexcel-xlsxw

xlsx(write only)

XlsxWriter

same as above

pyexcel-ods3

ods

ezodf, lxml

2.6, 2.7, 3.3, 3.4 3.5, 3.6

pyexcel-ods

ods

odfpy

same as above

pyexcel-odsr

ods(read only)

lxml

same as above

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 it via pip:

$ pip install pyexcel-io

or clone it and install it:

$ git clone http://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

In order to update test environment, and documentation, additional steps are required:

  1. pip install moban

  2. git clone https://github.com/pyexcel/pyexcel-commons.git commons

  3. make your changes in .moban.d directory, then issue command moban

What is rnd_requirements.txt

Usually, it is created when a dependent library is not released. Once the dependecy is installed(will be released), the future version of the dependency in the requirements.txt will be valid.

What is pyexcel-commons

Many information that are shared across pyexcel projects, such as: this developer guide, license info, etc. are stored in pyexcel-commons project.

What is .moban.d

.moban.d stores the specific meta data for the library.

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 systems, please issue this command:

> test.bat

License

New BSD License

Change log

deferred - unreleased

Updated

  1. #19, use cString by default

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 issue 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

# 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.3.3.tar.gz (22.6 kB view hashes)

Uploaded Source

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