pyexcel-io


Namepyexcel-io JSON
Version 0.6.6 PyPI version JSON
download
home_pagehttps://github.com/pyexcel/pyexcel-io
SummaryA python library to read and write structured data in csv, zipped csvformat and to/from databases
upload_time2022-01-29 20:09:25
maintainer
docs_urlNone
authorC.W.
requires_python>=3.6
licenseNew BSD
keywords python api tsv tsvz csv csvz django sqlalchemy
VCS
bugtrack_url
requirements lml
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ================================================================================
pyexcel-io - Let you focus on data, instead of file formats
================================================================================

.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png
   :target: https://www.patreon.com/chfw

.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel-mobans/master/images/awesome-badge.svg
   :target: https://awesome-python.com/#specific-formats-processing

.. image:: https://github.com/pyexcel/pyexcel-io/workflows/run_tests/badge.svg
   :target: http://github.com/pyexcel/pyexcel-io/actions

.. image:: https://codecov.io/gh/pyexcel/pyexcel-io/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/pyexcel/pyexcel-io

.. image:: https://badge.fury.io/py/pyexcel-io.svg
   :target: https://pypi.org/project/pyexcel-io

.. image:: https://anaconda.org/conda-forge/pyexcel-io/badges/version.svg
   :target: https://anaconda.org/conda-forge/pyexcel-io

.. image:: https://pepy.tech/badge/pyexcel-io/month
   :target: https://pepy.tech/project/pyexcel-io

.. image:: https://anaconda.org/conda-forge/pyexcel-io/badges/downloads.svg
   :target: https://anaconda.org/conda-forge/pyexcel-io

.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
   :target: https://gitter.im/pyexcel/Lobby

.. image:: 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
    :target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects

.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square
    :target: https://github.com/psf/black
.. image:: https://readthedocs.org/projects/pyexcel-io/badge/?version=latest
   :target: http://pyexcel-io.readthedocs.org/en/latest/

Support the project
================================================================================

If your company has embedded pyexcel and its components into a revenue generating
product, please support me on github, `patreon <https://www.patreon.com/bePatron?u=5537627>`_
or `bounty source <https://salt.bountysource.com/teams/chfw-pyexcel>`_ 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 <https://www.patreon.com/pyexcel/posts>`_.

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:

.. _file-format-list:
.. _a-map-of-plugins-and-file-formats:

.. table:: A list of file formats supported by external plugins

   ======================== ======================= =================
   Package name              Supported file formats  Dependencies
   ======================== ======================= =================
   `pyexcel-io`_            csv, csvz [#f1]_, tsv,
                            tsvz [#f2]_
   `pyexcel-xls`_           xls, xlsx(read only),   `xlrd`_,
                            xlsm(read only)         `xlwt`_
   `pyexcel-xlsx`_          xlsx                    `openpyxl`_
   `pyexcel-ods3`_          ods                     `pyexcel-ezodf`_,
                                                    lxml
   `pyexcel-ods`_           ods                     `odfpy`_
   ======================== ======================= =================

.. table:: 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').



.. _pyexcel-io: https://github.com/pyexcel/pyexcel-io
.. _pyexcel-xls: https://github.com/pyexcel/pyexcel-xls
.. _pyexcel-xlsx: https://github.com/pyexcel/pyexcel-xlsx
.. _pyexcel-ods: https://github.com/pyexcel/pyexcel-ods
.. _pyexcel-ods3: https://github.com/pyexcel/pyexcel-ods3
.. _pyexcel-odsr: https://github.com/pyexcel/pyexcel-odsr
.. _pyexcel-odsw: https://github.com/pyexcel/pyexcel-odsw
.. _pyexcel-pdfr: https://github.com/pyexcel/pyexcel-pdfr

.. _pyexcel-xlsxw: https://github.com/pyexcel/pyexcel-xlsxw
.. _pyexcel-libxlsxw: https://github.com/pyexcel/pyexcel-libxlsxw
.. _pyexcel-xlsxr: https://github.com/pyexcel/pyexcel-xlsxr
.. _pyexcel-xlsbr: https://github.com/pyexcel/pyexcel-xlsbr
.. _pyexcel-htmlr: https://github.com/pyexcel/pyexcel-htmlr

.. _xlrd: https://github.com/python-excel/xlrd
.. _xlwt: https://github.com/python-excel/xlwt
.. _openpyxl: https://bitbucket.org/openpyxl/openpyxl
.. _XlsxWriter: https://github.com/jmcnamara/XlsxWriter
.. _pyexcel-ezodf: https://github.com/pyexcel/pyexcel-ezodf
.. _odfpy: https://github.com/eea/odfpy
.. _libxlsxwriter: http://libxlsxwriter.github.io/getting_started.html


.. rubric:: Footnotes

.. [#f1] zipped csv file
.. [#f2] zipped tsv file

If you need to manipulate the data, you might do it yourself or use its brother
library `pyexcel <https://github.com/pyexcel/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:

.. code-block:: bash

    $ pip install pyexcel-io


or clone it and install it:

.. code-block:: bash

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



Development guide
================================================================================

Development steps for code changes

#. git clone https://github.com/pyexcel/pyexcel-io.git
#. cd pyexcel-io

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

#. pip install --upgrade setuptools pip

Then install relevant development requirements:

#. pip install -r rnd_requirements.txt # if such a file exists
#. pip install -r requirements.txt
#. pip install -r tests/requirements.txt

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

.. note::

    As to 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.


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

#. `#112 <https://github.com/pyexcel/pyexcel-io/issues/112>`_: Log Empty Row
   Warning instead 'print' 

0.6.5 - 08.10.2021
--------------------------------------------------------------------------------

**updated**

#. `#109 <https://github.com/pyexcel/pyexcel-io/issues/109>`_: enable ods3 to
   have datetime

0.6.4 - 31.10.2020
--------------------------------------------------------------------------------

**updated**

#. `#102 <https://github.com/pyexcel/pyexcel-io/issues/102>`_: skip columns from
   imported excel sheet.

0.6.3 - 12.10.2020
--------------------------------------------------------------------------------

**fixed**

#. `#96 <https://github.com/pyexcel/pyexcel-io/issues/96>`_: regression: unknown
   file type shall trigger NoSupportingPluginFound

**updated**

#. extra dependencies uses 0.6.0 based plugins

0.6.2 - 7.10.2020
--------------------------------------------------------------------------------

**updated**

#. `#94 <https://github.com/pyexcel/pyexcel-io/issues/94>`_: keep backward
   compatibility for pyexcel-xls 0.4.1

0.6.1 - 7.10.2020
--------------------------------------------------------------------------------

**removed**

#. python 3.6 lower versions are no longer supported

**updated**

#. pyexcel-io plugin interface has been rewritten. PyInstaller user will be
   impacted. please read 'Packaging with Pyinstaller' in the documentation.
#. 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**

#. `#74 <https://github.com/pyexcel/pyexcel-io/issues/74>`_: handle zip files
   which contain non-UTF-8 encoded files.

**added**

#. `#86 <https://github.com/pyexcel/pyexcel-io/issues/86>`_: allow trailing
   options, get_data(...keep_trailing_empty_cells=True).

0.5.20 - 17.7.2019
--------------------------------------------------------------------------------

**updated**

#. `#70 <https://github.com/pyexcel/pyexcel-io/issues/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**

#. `pyexcel#185 <https://github.com/pyexcel/pyexcel/issues/185>`_: handle stream
   conversion if file type(html) needs string content then bytes to handle

0.5.18 - 12.06.2019
--------------------------------------------------------------------------------

**updated**

#. `#69 <https://github.com/pyexcel/pyexcel-io/issues/69>`_: Force file
   type(force_file_type) on write

0.5.17 - 04.04.2019
--------------------------------------------------------------------------------

**updated**

#. `#68 <https://github.com/pyexcel/pyexcel-io/issues/68>`_: Raise IOError when
   the data file does not exist

0.5.16 - 19.03.2019
--------------------------------------------------------------------------------

**updated**

#. `#67 <https://github.com/pyexcel/pyexcel-io/issues/67>`_: fix conversion
   issue for long type on python 2.7 for ods

0.5.15 - 16.03.2019
--------------------------------------------------------------------------------

**updated**

#. `pyexcel-ods#33 <https://github.com/pyexcel/pyexcel-ods/issues/33>`_: fix
   integer comparision error on i586

0.5.14 - 21.02.2019
--------------------------------------------------------------------------------

**updated**

#. `#65 <https://github.com/pyexcel/pyexcel-io/issues/65>`_: add
   tests/__init__.py because python2.7 setup.py test needs it

0.5.13 - 12.02.2019
--------------------------------------------------------------------------------

**updated**

#. `#63 <https://github.com/pyexcel/pyexcel-io/issues/63>`_: Version 0.5.12
   prevents xslx and ods plugin from being loaded

0.5.12 - 9.02.2019
--------------------------------------------------------------------------------

**updated**

#. `#60 <https://github.com/pyexcel/pyexcel-io/issues/60>`_: include tests in
   tar ball
#. `#61 <https://github.com/pyexcel/pyexcel-io/issues/61>`_: enable python
   setup.py test

0.5.11 - 3.12.2018
--------------------------------------------------------------------------------

**updated**

#. `#59 <https://github.com/pyexcel/pyexcel-io/issues/59>`_: Please use
   scan_plugins_regex, which lml 0.7 complains about

0.5.10 - 27.11.2018
--------------------------------------------------------------------------------

**added**

#. `#57 <https://github.com/pyexcel/pyexcel-io/issues/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**

#. `#53 <https://github.com/pyexcel/pyexcel-io/issues/53>`_, upgrade lml
   dependency to at least 0.0.2

0.5.9 - 23.08.2018
--------------------------------------------------------------------------------

**added**

#. `pyexcel#148 <https://github.com/pyexcel/pyexcel/issues/148>`_, support
   force_file_type

0.5.8 - 16.08.2018
--------------------------------------------------------------------------------

**added**

#. `#49 <https://github.com/pyexcel/pyexcel-io/issues/49>`_, support additional
   options when detecting float values in csv format. default_float_nan,
   ignore_nan_text

0.5.7 - 02.05.2018
--------------------------------------------------------------------------------

**fixed**

#. `#48 <https://github.com/pyexcel/pyexcel-io/issues/48>`_, turn off pep 0515
#. `#47 <https://github.com/pyexcel/pyexcel-io/issues/47>`_, csv reader cannot
   handle relative file names

0.5.6 - 11.01.2018
--------------------------------------------------------------------------------

**fixed**

#. `#46 <https://github.com/pyexcel/pyexcel-io/issues/46>`_, expose `bulk_save`
   to developer

0.5.5 - 23.12.2017
--------------------------------------------------------------------------------

**fixed**

#. Issue `#45 <https://github.com/pyexcel/pyexcel-io/issues/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**

#. PR `#44 <https://github.com/pyexcel/pyexcel-io/pull/44>`_, use unicodewriter
   for csvz writers.

0.5.3 - 23.10.2017
--------------------------------------------------------------------------------

**updated**

#. pyexcel `pyexcel#105 <https://github.com/pyexcel/pyexcel/issues/105>`_,
   remove gease from setup_requires, introduced by 0.5.2.
#. remove python2.6 test support

0.5.2 - 20.10.2017
--------------------------------------------------------------------------------

**added**

#. `pyexcel#103 <https://github.com/pyexcel/pyexcel/issues/103>`_, include
   LICENSE file in MANIFEST.in, meaning LICENSE file will appear in the released
   tar ball.

0.5.1 - 02.09.2017
--------------------------------------------------------------------------------

**Fixed**

#. `pyexcel-ods#25 <https://github.com/pyexcel/pyexcel-ods/issues/25>`_,
   Unwanted dependency on pyexcel.

0.5.0 - 30.08.2017
--------------------------------------------------------------------------------

**Added**

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

**Updated**

#. `#19 <https://github.com/pyexcel/pyexcel-io/issues/19>`_, use cString by
   default. For python, it will be a performance boost

0.4.4 - 08.08.2017
--------------------------------------------------------------------------------

**Updated**

#. `#42 <https://github.com/pyexcel/pyexcel-io/issues/42>`_, raise exception if
   database table name does not match the sheet name

0.4.3 - 29.07.2017
--------------------------------------------------------------------------------

**Updated**

#. `#41 <https://github.com/pyexcel/pyexcel-io/issues/41>`_, walk away
   gracefully when mmap is not available.

0.4.2 - 05.07.2017
--------------------------------------------------------------------------------

**Updated**

#. `#37 <https://github.com/pyexcel/pyexcel-io/issues/37>`_, permanently fix the
   residue folder pyexcel by release all future releases in a clean clone.

0.4.1 - 29.06.2017
--------------------------------------------------------------------------------

**Updated**

#. `#39 <https://github.com/pyexcel/pyexcel-io/issues/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**

#. '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'.
#. built-in csv, tsv, csvz, tsvz, django and sql are lazy loaded.
#. pyexcel-io plugin interface has been updated. v0.3.x plugins won't work.
#. `#32 <https://github.com/pyexcel/pyexcel-io/issues/32>`_, csv and csvz file
   handle are made sure to be closed. File close mechanism is enfored.
#. iget_data function is introduced to cope with dangling file handle issue.

**Removed**

#. Removed plugin loading code and lml is used instead

0.3.4 - 18.05.2017
--------------------------------------------------------------------------------

**Updated**

#. `#33 <https://github.com/pyexcel/pyexcel-io/issues/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.
#. `#34 <https://github.com/pyexcel/pyexcel-io/issues/34>`_, treat mmap object
   as a file content.
#. `#35 <https://github.com/pyexcel/pyexcel-io/issues/35>`_, encoding parameter
   take no effect when given along with file content
#. use ZIP_DEFALTED to really do the compression

0.3.3 - 30.03.2017
--------------------------------------------------------------------------------

**Updated**

#. `#31 <https://github.com/pyexcel/pyexcel-io/issues/31>`_, support pyinstaller

0.3.2 - 26.01.2017
--------------------------------------------------------------------------------

**Updated**

#. `#29 <https://github.com/pyexcel/pyexcel-io/issues/29>`_, change
   skip_empty_rows to False by default

0.3.1 - 21.01.2017
--------------------------------------------------------------------------------

**Added**

#. updated versions of extra packages

**Updated**

#. `#23 <https://github.com/pyexcel/pyexcel-io/issues/23>`_, provide helpful
   message when old pyexcel plugin exists
#. restored previously available diagnosis message for missing libraries

0.3.0 - 22.12.2016
--------------------------------------------------------------------------------

**Added**

#. 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.
#. `pyexcel-xls#11 <https://github.com/pyexcel/pyexcel-xls/issues/11>`_, make
   case-insensitive for file type

0.2.6 - 21.12.2016
--------------------------------------------------------------------------------

**Updated**

#. `#24 <https://github.com/pyexcel/pyexcel-io/issues/24>`__, pass on batch_size

0.2.5 - 20.12.2016
--------------------------------------------------------------------------------

**Updated**

#. `#26 <https://github.com/pyexcel/pyexcel-io/issues/26>`__, performance issue
   with getting the number of columns.

0.2.4 - 24.11.2016
--------------------------------------------------------------------------------

**Updated**

#. `#23 <https://github.com/pyexcel/pyexcel-io/issues/23>`__, Failed to convert
   long integer string in python 2 to its actual value

0.2.3 - 16.09.2016
--------------------------------------------------------------------------------

**Added**

#. `#21 <https://github.com/pyexcel/pyexcel-io/issues/21>`__, choose subset from
   data base tables for export
#. `#22 <https://github.com/pyexcel/pyexcel-io/issues/22>`__, custom renderer if
   given `row_renderer` as parameter.

0.2.2 - 31.08.2016
--------------------------------------------------------------------------------

**Added**

#. support pagination. two pairs: start_row, row_limit and start_column,
   column_limit help you deal with large files.
#. `skip_empty_rows=True` was introduced. To include empty rows, put it to
   False.

**Updated**

#. `#20 <https://github.com/pyexcel/pyexcel-io/issues/20>`__, pyexcel-io
   attempts to parse cell contents of 'infinity' as a float/int, crashes

0.2.1 - 11.07.2016
--------------------------------------------------------------------------------

**Added**

#. csv format: handle utf-16 encoded csv files. Potentially being able to decode
   other formats if correct "encoding" is provided
#. csv format: write utf-16 encoded files. Potentially other encoding is also
   supported
#. support stdin as input stream and stdout as output stream

**Updated**

#. 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.
#. `#15 <https://github.com/pyexcel/pyexcel-io/issues/15>`__, support foreign
   django/sql foreign key

0.2.0 - 01.06.2016
--------------------------------------------------------------------------------

**Added**

#. autoload of pyexcel-io plugins
#. 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




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pyexcel/pyexcel-io",
    "name": "pyexcel-io",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "python,API,tsv,tsvz,csv,csvz,django,sqlalchemy",
    "author": "C.W.",
    "author_email": "info@pyexcel.org",
    "download_url": "https://files.pythonhosted.org/packages/78/0d/8fea776e89e4b1657c818710623d55aa5807671bd7e04821efaee82bf847/pyexcel-io-0.6.6.tar.gz",
    "platform": "",
    "description": "================================================================================\npyexcel-io - Let you focus on data, instead of file formats\n================================================================================\n\n.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png\n   :target: https://www.patreon.com/chfw\n\n.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel-mobans/master/images/awesome-badge.svg\n   :target: https://awesome-python.com/#specific-formats-processing\n\n.. image:: https://github.com/pyexcel/pyexcel-io/workflows/run_tests/badge.svg\n   :target: http://github.com/pyexcel/pyexcel-io/actions\n\n.. image:: https://codecov.io/gh/pyexcel/pyexcel-io/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/pyexcel/pyexcel-io\n\n.. image:: https://badge.fury.io/py/pyexcel-io.svg\n   :target: https://pypi.org/project/pyexcel-io\n\n.. image:: https://anaconda.org/conda-forge/pyexcel-io/badges/version.svg\n   :target: https://anaconda.org/conda-forge/pyexcel-io\n\n.. image:: https://pepy.tech/badge/pyexcel-io/month\n   :target: https://pepy.tech/project/pyexcel-io\n\n.. image:: https://anaconda.org/conda-forge/pyexcel-io/badges/downloads.svg\n   :target: https://anaconda.org/conda-forge/pyexcel-io\n\n.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg\n   :target: https://gitter.im/pyexcel/Lobby\n\n.. image:: 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\n    :target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects\n\n.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square\n    :target: https://github.com/psf/black\n.. image:: https://readthedocs.org/projects/pyexcel-io/badge/?version=latest\n   :target: http://pyexcel-io.readthedocs.org/en/latest/\n\nSupport the project\n================================================================================\n\nIf your company has embedded pyexcel and its components into a revenue generating\nproduct, please support me on github, `patreon <https://www.patreon.com/bePatron?u=5537627>`_\nor `bounty source <https://salt.bountysource.com/teams/chfw-pyexcel>`_ to maintain\nthe project and develop it further.\n\nIf you are an individual, you are welcome to support me too and for however long\nyou feel like. As my backer, you will receive\n`early access to pyexcel related contents <https://www.patreon.com/pyexcel/posts>`_.\n\nAnd your issues will get prioritized if you would like to become my patreon as `pyexcel pro user`.\n\nWith your financial support, I will be able to invest\na little bit more time in coding, documentation and writing interesting posts.\n\n\nKnown constraints\n==================\n\nFonts, colors and charts are not supported.\n\nNor to read password protected xls, xlsx and ods files.\n\nIntroduction\n================================================================================\n\n**pyexcel-io** provides **one** application programming interface(API) to read\nand write the data in excel format, import the data into and export the data\nfrom database. It provides support for csv(z) format, django database and\nsqlalchemy supported databases. Its supported file formats are extended to cover\n\"xls\", \"xlsx\", \"ods\" by the following extensions:\n\n.. _file-format-list:\n.. _a-map-of-plugins-and-file-formats:\n\n.. table:: A list of file formats supported by external plugins\n\n   ======================== ======================= =================\n   Package name              Supported file formats  Dependencies\n   ======================== ======================= =================\n   `pyexcel-io`_            csv, csvz [#f1]_, tsv,\n                            tsvz [#f2]_\n   `pyexcel-xls`_           xls, xlsx(read only),   `xlrd`_,\n                            xlsm(read only)         `xlwt`_\n   `pyexcel-xlsx`_          xlsx                    `openpyxl`_\n   `pyexcel-ods3`_          ods                     `pyexcel-ezodf`_,\n                                                    lxml\n   `pyexcel-ods`_           ods                     `odfpy`_\n   ======================== ======================= =================\n\n.. table:: Dedicated file reader and writers\n\n   ======================== ======================= =================\n   Package name              Supported file formats  Dependencies\n   ======================== ======================= =================\n   `pyexcel-xlsxw`_         xlsx(write only)        `XlsxWriter`_\n   `pyexcel-libxlsxw`_      xlsx(write only)        `libxlsxwriter`_\n   `pyexcel-xlsxr`_         xlsx(read only)         lxml\n   `pyexcel-xlsbr`_         xlsb(read only)         pyxlsb\n   `pyexcel-odsr`_          read only for ods, fods lxml\n   `pyexcel-odsw`_          write only for ods      loxun\n   `pyexcel-htmlr`_         html(read only)         lxml,html5lib\n   `pyexcel-pdfr`_          pdf(read only)          camelot\n   ======================== ======================= =================\n\n\nPlugin shopping guide\n------------------------\n\nSince 2020, all pyexcel-io plugins have dropped the support for python versions\nwhich are lower than 3.6. If you want to use any of those Python versions, please use pyexcel-io\nand its plugins versions that are lower than 0.6.0.\n\n\nExcept csv files, xls, xlsx and ods files are a zip of a folder containing a lot of\nxml files\n\nThe dedicated readers for excel files can stream read\n\n\nIn order to manage the list of plugins installed, you need to use pip to add or remove\na plugin. When you use virtualenv, you can have different plugins per virtual\nenvironment. In the situation where you have multiple plugins that does the same thing\nin your environment, you need to tell pyexcel which plugin to use per function call.\nFor example, pyexcel-ods and pyexcel-odsr, and you want to get_array to use pyexcel-odsr.\nYou need to append get_array(..., library='pyexcel-odsr').\n\n\n\n.. _pyexcel-io: https://github.com/pyexcel/pyexcel-io\n.. _pyexcel-xls: https://github.com/pyexcel/pyexcel-xls\n.. _pyexcel-xlsx: https://github.com/pyexcel/pyexcel-xlsx\n.. _pyexcel-ods: https://github.com/pyexcel/pyexcel-ods\n.. _pyexcel-ods3: https://github.com/pyexcel/pyexcel-ods3\n.. _pyexcel-odsr: https://github.com/pyexcel/pyexcel-odsr\n.. _pyexcel-odsw: https://github.com/pyexcel/pyexcel-odsw\n.. _pyexcel-pdfr: https://github.com/pyexcel/pyexcel-pdfr\n\n.. _pyexcel-xlsxw: https://github.com/pyexcel/pyexcel-xlsxw\n.. _pyexcel-libxlsxw: https://github.com/pyexcel/pyexcel-libxlsxw\n.. _pyexcel-xlsxr: https://github.com/pyexcel/pyexcel-xlsxr\n.. _pyexcel-xlsbr: https://github.com/pyexcel/pyexcel-xlsbr\n.. _pyexcel-htmlr: https://github.com/pyexcel/pyexcel-htmlr\n\n.. _xlrd: https://github.com/python-excel/xlrd\n.. _xlwt: https://github.com/python-excel/xlwt\n.. _openpyxl: https://bitbucket.org/openpyxl/openpyxl\n.. _XlsxWriter: https://github.com/jmcnamara/XlsxWriter\n.. _pyexcel-ezodf: https://github.com/pyexcel/pyexcel-ezodf\n.. _odfpy: https://github.com/eea/odfpy\n.. _libxlsxwriter: http://libxlsxwriter.github.io/getting_started.html\n\n\n.. rubric:: Footnotes\n\n.. [#f1] zipped csv file\n.. [#f2] zipped tsv file\n\nIf you need to manipulate the data, you might do it yourself or use its brother\nlibrary `pyexcel <https://github.com/pyexcel/pyexcel>`__ .\n\nIf you would like to extend it, you may use it to write your own\nextension to handle a specific file format.\n\n\n\n\nInstallation\n================================================================================\n\nYou can install pyexcel-io via pip:\n\n.. code-block:: bash\n\n    $ pip install pyexcel-io\n\n\nor clone it and install it:\n\n.. code-block:: bash\n\n    $ git clone https://github.com/pyexcel/pyexcel-io.git\n    $ cd pyexcel-io\n    $ python setup.py install\n\n\n\nDevelopment guide\n================================================================================\n\nDevelopment steps for code changes\n\n#. git clone https://github.com/pyexcel/pyexcel-io.git\n#. cd pyexcel-io\n\nUpgrade your setup tools and pip. They are needed for development and testing only:\n\n#. pip install --upgrade setuptools pip\n\nThen install relevant development requirements:\n\n#. pip install -r rnd_requirements.txt # if such a file exists\n#. pip install -r requirements.txt\n#. pip install -r tests/requirements.txt\n\nOnce you have finished your changes, please provide test case(s), relevant documentation\nand update changelog.yml\n\n.. note::\n\n    As to rnd_requirements.txt, usually, it is created when a dependent\n    library is not released. Once the dependecy is installed\n    (will be released), the future\n    version of the dependency in the requirements.txt will be valid.\n\n\nHow to test your contribution\n------------------------------\n\nAlthough `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.\n\nOn Linux/Unix systems, please launch your tests like this::\n\n    $ make\n\nOn Windows, please issue this command::\n\n    > test.bat\n\n\nBefore you commit\n------------------------------\n\nPlease run::\n\n    $ make format\n\nso as to beautify your code otherwise your build may fail your unit test.\n\n\n\n\nLicense\n================================================================================\n\nNew BSD License\n\nChange log\n================================================================================\n\n0.6.6 - 31.1.2022\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#112 <https://github.com/pyexcel/pyexcel-io/issues/112>`_: Log Empty Row\n   Warning instead 'print' \n\n0.6.5 - 08.10.2021\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#109 <https://github.com/pyexcel/pyexcel-io/issues/109>`_: enable ods3 to\n   have datetime\n\n0.6.4 - 31.10.2020\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#102 <https://github.com/pyexcel/pyexcel-io/issues/102>`_: skip columns from\n   imported excel sheet.\n\n0.6.3 - 12.10.2020\n--------------------------------------------------------------------------------\n\n**fixed**\n\n#. `#96 <https://github.com/pyexcel/pyexcel-io/issues/96>`_: regression: unknown\n   file type shall trigger NoSupportingPluginFound\n\n**updated**\n\n#. extra dependencies uses 0.6.0 based plugins\n\n0.6.2 - 7.10.2020\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#94 <https://github.com/pyexcel/pyexcel-io/issues/94>`_: keep backward\n   compatibility for pyexcel-xls 0.4.1\n\n0.6.1 - 7.10.2020\n--------------------------------------------------------------------------------\n\n**removed**\n\n#. python 3.6 lower versions are no longer supported\n\n**updated**\n\n#. pyexcel-io plugin interface has been rewritten. PyInstaller user will be\n   impacted. please read 'Packaging with Pyinstaller' in the documentation.\n#. new query set reader plugin. pyexcel<=0.6.4 has used intrusive way of getting\n   query set source done. it is against the plugin interface.\n\n**fixed**\n\n#. `#74 <https://github.com/pyexcel/pyexcel-io/issues/74>`_: handle zip files\n   which contain non-UTF-8 encoded files.\n\n**added**\n\n#. `#86 <https://github.com/pyexcel/pyexcel-io/issues/86>`_: allow trailing\n   options, get_data(...keep_trailing_empty_cells=True).\n\n0.5.20 - 17.7.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#70 <https://github.com/pyexcel/pyexcel-io/issues/70>`_: when the given file\n   is a root directory, the error shall read it is not a file\n\n0.5.19 - 14.7.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `pyexcel#185 <https://github.com/pyexcel/pyexcel/issues/185>`_: handle stream\n   conversion if file type(html) needs string content then bytes to handle\n\n0.5.18 - 12.06.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#69 <https://github.com/pyexcel/pyexcel-io/issues/69>`_: Force file\n   type(force_file_type) on write\n\n0.5.17 - 04.04.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#68 <https://github.com/pyexcel/pyexcel-io/issues/68>`_: Raise IOError when\n   the data file does not exist\n\n0.5.16 - 19.03.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#67 <https://github.com/pyexcel/pyexcel-io/issues/67>`_: fix conversion\n   issue for long type on python 2.7 for ods\n\n0.5.15 - 16.03.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `pyexcel-ods#33 <https://github.com/pyexcel/pyexcel-ods/issues/33>`_: fix\n   integer comparision error on i586\n\n0.5.14 - 21.02.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#65 <https://github.com/pyexcel/pyexcel-io/issues/65>`_: add\n   tests/__init__.py because python2.7 setup.py test needs it\n\n0.5.13 - 12.02.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#63 <https://github.com/pyexcel/pyexcel-io/issues/63>`_: Version 0.5.12\n   prevents xslx and ods plugin from being loaded\n\n0.5.12 - 9.02.2019\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#60 <https://github.com/pyexcel/pyexcel-io/issues/60>`_: include tests in\n   tar ball\n#. `#61 <https://github.com/pyexcel/pyexcel-io/issues/61>`_: enable python\n   setup.py test\n\n0.5.11 - 3.12.2018\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#59 <https://github.com/pyexcel/pyexcel-io/issues/59>`_: Please use\n   scan_plugins_regex, which lml 0.7 complains about\n\n0.5.10 - 27.11.2018\n--------------------------------------------------------------------------------\n\n**added**\n\n#. `#57 <https://github.com/pyexcel/pyexcel-io/issues/57>`_, long type will not\n   be written in ods. please use string type. And if the integer is equal or\n   greater than 10 to the power of 16, it will not be written either in ods. In\n   both situation, IntegerPrecisionLossError will be raised. And this version\n   enables pyexcel-ods and pyexcel-ods3 to do so.\n\n0.5.9.1 - 30.08.2018\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. `#53 <https://github.com/pyexcel/pyexcel-io/issues/53>`_, upgrade lml\n   dependency to at least 0.0.2\n\n0.5.9 - 23.08.2018\n--------------------------------------------------------------------------------\n\n**added**\n\n#. `pyexcel#148 <https://github.com/pyexcel/pyexcel/issues/148>`_, support\n   force_file_type\n\n0.5.8 - 16.08.2018\n--------------------------------------------------------------------------------\n\n**added**\n\n#. `#49 <https://github.com/pyexcel/pyexcel-io/issues/49>`_, support additional\n   options when detecting float values in csv format. default_float_nan,\n   ignore_nan_text\n\n0.5.7 - 02.05.2018\n--------------------------------------------------------------------------------\n\n**fixed**\n\n#. `#48 <https://github.com/pyexcel/pyexcel-io/issues/48>`_, turn off pep 0515\n#. `#47 <https://github.com/pyexcel/pyexcel-io/issues/47>`_, csv reader cannot\n   handle relative file names\n\n0.5.6 - 11.01.2018\n--------------------------------------------------------------------------------\n\n**fixed**\n\n#. `#46 <https://github.com/pyexcel/pyexcel-io/issues/46>`_, expose `bulk_save`\n   to developer\n\n0.5.5 - 23.12.2017\n--------------------------------------------------------------------------------\n\n**fixed**\n\n#. Issue `#45 <https://github.com/pyexcel/pyexcel-io/issues/45>`_, csv reader\n   throws exception because google app engine does not support mmap. People who\n   are not working with google app engine, need not to take this update. Enjoy\n   your Christmas break.\n\n0.5.4 - 10.11.2017\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. PR `#44 <https://github.com/pyexcel/pyexcel-io/pull/44>`_, use unicodewriter\n   for csvz writers.\n\n0.5.3 - 23.10.2017\n--------------------------------------------------------------------------------\n\n**updated**\n\n#. pyexcel `pyexcel#105 <https://github.com/pyexcel/pyexcel/issues/105>`_,\n   remove gease from setup_requires, introduced by 0.5.2.\n#. remove python2.6 test support\n\n0.5.2 - 20.10.2017\n--------------------------------------------------------------------------------\n\n**added**\n\n#. `pyexcel#103 <https://github.com/pyexcel/pyexcel/issues/103>`_, include\n   LICENSE file in MANIFEST.in, meaning LICENSE file will appear in the released\n   tar ball.\n\n0.5.1 - 02.09.2017\n--------------------------------------------------------------------------------\n\n**Fixed**\n\n#. `pyexcel-ods#25 <https://github.com/pyexcel/pyexcel-ods/issues/25>`_,\n   Unwanted dependency on pyexcel.\n\n0.5.0 - 30.08.2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. Collect all data type conversion codes as service.py.\n\n**Updated**\n\n#. `#19 <https://github.com/pyexcel/pyexcel-io/issues/19>`_, use cString by\n   default. For python, it will be a performance boost\n\n0.4.4 - 08.08.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#42 <https://github.com/pyexcel/pyexcel-io/issues/42>`_, raise exception if\n   database table name does not match the sheet name\n\n0.4.3 - 29.07.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#41 <https://github.com/pyexcel/pyexcel-io/issues/41>`_, walk away\n   gracefully when mmap is not available.\n\n0.4.2 - 05.07.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#37 <https://github.com/pyexcel/pyexcel-io/issues/37>`_, permanently fix the\n   residue folder pyexcel by release all future releases in a clean clone.\n\n0.4.1 - 29.06.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#39 <https://github.com/pyexcel/pyexcel-io/issues/39>`_, raise exception\n   when bulk save in django fails. Please `bulk_save=False` if you as the\n   developer choose to save the records one by one if bulk_save cannot be used.\n   However, exception in one-by-one save case will be raised as well. This\n   change is made to raise exception in the first place so that you as the\n   developer will be suprised when it was deployed in production.\n\n0.4.0 - 19.06.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. 'built-in' as the value to the parameter 'library' as parameter to invoke\n   pyexcel-io's built-in csv, tsv, csvz, tsvz, django and sql won't work. It is\n   renamed to 'pyexcel-io'.\n#. built-in csv, tsv, csvz, tsvz, django and sql are lazy loaded.\n#. pyexcel-io plugin interface has been updated. v0.3.x plugins won't work.\n#. `#32 <https://github.com/pyexcel/pyexcel-io/issues/32>`_, csv and csvz file\n   handle are made sure to be closed. File close mechanism is enfored.\n#. iget_data function is introduced to cope with dangling file handle issue.\n\n**Removed**\n\n#. Removed plugin loading code and lml is used instead\n\n0.3.4 - 18.05.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#33 <https://github.com/pyexcel/pyexcel-io/issues/33>`_, handle mmap object\n   differently given as file content. This issue has put in a priority to single\n   sheet csv over multiple sheets in a single memory stream. The latter format\n   is pyexcel own creation but is rarely used. In latter case,\n   multiple_sheet=True should be passed along get_data.\n#. `#34 <https://github.com/pyexcel/pyexcel-io/issues/34>`_, treat mmap object\n   as a file content.\n#. `#35 <https://github.com/pyexcel/pyexcel-io/issues/35>`_, encoding parameter\n   take no effect when given along with file content\n#. use ZIP_DEFALTED to really do the compression\n\n0.3.3 - 30.03.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#31 <https://github.com/pyexcel/pyexcel-io/issues/31>`_, support pyinstaller\n\n0.3.2 - 26.01.2017\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#29 <https://github.com/pyexcel/pyexcel-io/issues/29>`_, change\n   skip_empty_rows to False by default\n\n0.3.1 - 21.01.2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. updated versions of extra packages\n\n**Updated**\n\n#. `#23 <https://github.com/pyexcel/pyexcel-io/issues/23>`_, provide helpful\n   message when old pyexcel plugin exists\n#. restored previously available diagnosis message for missing libraries\n\n0.3.0 - 22.12.2016\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. lazy loading of plugins. for example, pyexcel-xls is not entirely loaded\n   until xls format is used at its first attempted reading or writing. Since it\n   is loaded, it will not be loaded in the second io action.\n#. `pyexcel-xls#11 <https://github.com/pyexcel/pyexcel-xls/issues/11>`_, make\n   case-insensitive for file type\n\n0.2.6 - 21.12.2016\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#24 <https://github.com/pyexcel/pyexcel-io/issues/24>`__, pass on batch_size\n\n0.2.5 - 20.12.2016\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#26 <https://github.com/pyexcel/pyexcel-io/issues/26>`__, performance issue\n   with getting the number of columns.\n\n0.2.4 - 24.11.2016\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#23 <https://github.com/pyexcel/pyexcel-io/issues/23>`__, Failed to convert\n   long integer string in python 2 to its actual value\n\n0.2.3 - 16.09.2016\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#21 <https://github.com/pyexcel/pyexcel-io/issues/21>`__, choose subset from\n   data base tables for export\n#. `#22 <https://github.com/pyexcel/pyexcel-io/issues/22>`__, custom renderer if\n   given `row_renderer` as parameter.\n\n0.2.2 - 31.08.2016\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. support pagination. two pairs: start_row, row_limit and start_column,\n   column_limit help you deal with large files.\n#. `skip_empty_rows=True` was introduced. To include empty rows, put it to\n   False.\n\n**Updated**\n\n#. `#20 <https://github.com/pyexcel/pyexcel-io/issues/20>`__, pyexcel-io\n   attempts to parse cell contents of 'infinity' as a float/int, crashes\n\n0.2.1 - 11.07.2016\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. csv format: handle utf-16 encoded csv files. Potentially being able to decode\n   other formats if correct \"encoding\" is provided\n#. csv format: write utf-16 encoded files. Potentially other encoding is also\n   supported\n#. support stdin as input stream and stdout as output stream\n\n**Updated**\n\n#. Attention, user of pyexcel-io! No longer io stream validation is performed in\n   python 3. The guideline is: io.StringIO for csv, tsv only, otherwise BytesIO\n   for xlsx, xls, ods. You can use RWManager.get_io to produce a correct stream\n   type for you.\n#. `#15 <https://github.com/pyexcel/pyexcel-io/issues/15>`__, support foreign\n   django/sql foreign key\n\n0.2.0 - 01.06.2016\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. autoload of pyexcel-io plugins\n#. auto detect `datetime`, `float` and `int`. Detection can be switched off by\n   `auto_detect_datetime`, `auto_detect_float`, `auto_detect_int`\n\n0.1.0 - 17.01.2016\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. yield key word to return generator as content\n\n\n\n",
    "bugtrack_url": null,
    "license": "New BSD",
    "summary": "A python library to read and write structured data in csv, zipped csvformat and to/from databases",
    "version": "0.6.6",
    "split_keywords": [
        "python",
        "api",
        "tsv",
        "tsvz",
        "csv",
        "csvz",
        "django",
        "sqlalchemy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "e1cf9603cfe50a07669c86caf106fe22",
                "sha256": "19ff1d599a8a6c0982e4181ef86aa50e1f8d231410fa7e0e204d62e37551c1d6"
            },
            "downloads": -1,
            "filename": "pyexcel_io-0.6.6-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e1cf9603cfe50a07669c86caf106fe22",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 44191,
            "upload_time": "2022-01-29T20:09:23",
            "upload_time_iso_8601": "2022-01-29T20:09:23.337598Z",
            "url": "https://files.pythonhosted.org/packages/4f/e1/68ec0cfd9c2b165eb199e07aaaaacde5a92d4a5fd986560027037c9491a5/pyexcel_io-0.6.6-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e06252a039ccee3d9d2ebd0696fbc453",
                "sha256": "f6084bf1afa5fbf4c61cf7df44370fa513821af188b02e3e19b5efb66d8a969f"
            },
            "downloads": -1,
            "filename": "pyexcel-io-0.6.6.tar.gz",
            "has_sig": false,
            "md5_digest": "e06252a039ccee3d9d2ebd0696fbc453",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 75207,
            "upload_time": "2022-01-29T20:09:25",
            "upload_time_iso_8601": "2022-01-29T20:09:25.642147Z",
            "url": "https://files.pythonhosted.org/packages/78/0d/8fea776e89e4b1657c818710623d55aa5807671bd7e04821efaee82bf847/pyexcel-io-0.6.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-01-29 20:09:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "pyexcel",
    "github_project": "pyexcel-io",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "lml",
            "specs": [
                [
                    ">=",
                    "0.0.4"
                ]
            ]
        }
    ],
    "lcname": "pyexcel-io"
}
        
Elapsed time: 0.02018s