updated
updated
- #112: Log Empty Row Warning instead 'print'
updated
- #109: enable ods3 to have datetime
updated
- #102: skip columns from imported excel sheet.
fixed
- #96: regression: unknown file type shall trigger NoSupportingPluginFound
updated
- extra dependencies uses 0.6.0 based plugins
updated
- #94: keep backward compatibility for pyexcel-xls 0.4.1
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: handle zip files which contain non-UTF-8 encoded files.
added
- #86: allow trailing options, get_data(...keep_trailing_empty_cells=True).
updated
- #70: when the given file is a root directory, the error shall read it is not a file
updated
- pyexcel#185: handle stream conversion if file type(html) needs string content then bytes to handle
updated
- #69: Force file type(force_file_type) on write
updated
- #68: Raise IOError when the data file does not exist
updated
- #67: fix conversion issue for long type on python 2.7 for ods
updated
- pyexcel-ods#33: fix integer comparision error on i586
updated
- #65: add tests/__init__.py because python2.7 setup.py test needs it
updated
- #63: Version 0.5.12 prevents xslx and ods plugin from being loaded
updated
updated
- #59: Please use scan_plugins_regex, which lml 0.7 complains about
added
- #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.
updated
- #53, upgrade lml dependency to at least 0.0.2
added
- pyexcel#148, support force_file_type
added
- #49, support additional options when detecting float values in csv format. default_float_nan, ignore_nan_text
fixed
fixed
- #46, expose bulk_save to developer
fixed
- 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.
updated
- PR #44, use unicodewriter for csvz writers.
updated
- pyexcel pyexcel#105, remove gease from setup_requires, introduced by 0.5.2.
- remove python2.6 test support
added
- pyexcel#103, include LICENSE file in MANIFEST.in, meaning LICENSE file will appear in the released tar ball.
Fixed
- pyexcel-ods#25, Unwanted dependency on pyexcel.
Added
- Collect all data type conversion codes as service.py.
Updated
- #19, use cString by default. For python, it will be a performance boost
Updated
- #42, raise exception if database table name does not match the sheet name
Updated
- #41, walk away gracefully when mmap is not available.
Updated
- #37, permanently fix the residue folder pyexcel by release all future releases in a clean clone.
Updated
- #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.
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, 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
Updated
- #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, treat mmap object as a file content.
- #35, encoding parameter take no effect when given along with file content
- use ZIP_DEFALTED to really do the compression
Updated
- #31, support pyinstaller
Updated
- #29, change skip_empty_rows to False by default
Added
- updated versions of extra packages
Updated
- #23, provide helpful message when old pyexcel plugin exists
- restored previously available diagnosis message for missing libraries
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, make case-insensitive for file type
Updated
- #24, pass on batch_size
Updated
- #26, performance issue with getting the number of columns.
Updated
- #23, Failed to convert long integer string in python 2 to its actual value
Added
- #21, choose subset from data base tables for export
- #22, custom renderer if given row_renderer as parameter.
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, pyexcel-io attempts to parse cell contents of 'infinity' as a float/int, crashes
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, support foreign django/sql foreign key
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
Added
- yield key word to return generator as content