All Versions
49
Latest Version
Avg Release Cycle
58 days
Latest Release
-

Changelog History
Page 3

  • v0.5.6 Changes

    โœ‚ removed

    ๐Ÿšš #. #105 <https://github.com/pyexcel/pyexcel/issues/105>_, remove gease from setup_requires, introduced by 0.5.5. ๐Ÿšš #. removed testing against python 2.6

    . #103 <https://github.com/pyexcel/pyexcel/issues/103>_, include LICENSE file

    in MANIFEST.in, meaning LICENSE file will appear in the released tar ball.

  • v0.5.5 Changes

    โœ‚ removed

    ๐Ÿšš #. #105 <https://github.com/pyexcel/pyexcel/issues/105>_, remove gease from setup_requires, introduced by 0.5.5. ๐Ÿšš #. removed testing against python 2.6

    . #103 <https://github.com/pyexcel/pyexcel/issues/103>_, include LICENSE file

    in MANIFEST.in, meaning LICENSE file will appear in the released tar ball.

  • v0.5.4 Changes

    ๐Ÿ›  fixed

    . #100 <https://github.com/pyexcel/pyexcel/issues/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.

  • v0.5.3 Changes

    August 01, 2017

    โž• added

    . #95 <https://github.com/pyexcel/pyexcel/issues/95>_, respect the order of

    records in iget_records, isave_as and save_as.

    . #97 <https://github.com/pyexcel/pyexcel/issues/97>_, new feature to allow

    intuitive initialization of pyexcel.Book.

  • v0.5.2 Changes

    July 26, 2017

    โšก๏ธ Updated

    ๐Ÿ‘ #. embeded the enabler for pyexcel-htmlr. http source does not support text/html as mime type.

  • v0.5.1 Changes

    โšก๏ธ Updated

    ๐Ÿ‘ #. support saving SheetStream and BookStream to database targets. This is needed for pyexcel-webio and its downstream projects.

  • v0.5.0 Changes

    โž• Added

    . Sheet.top() and Sheet.top_left() for data browsing

    0๏ธโƒฃ #. add html as default rich display in Jupyter notebook when pyexcel-text and pyexcel-chart is installed 0๏ธโƒฃ #. 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 <https://github.com/pyexcel/pyexcel/issues/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

  • v0.4.5 Changes

    โšก๏ธ Updated

    ๐Ÿšš #. #80 <https://github.com/pyexcel/pyexcel/issues/80>_: remove pyexcel-chart import from v0.4.x

  • v0.4.4 Changes

    โšก๏ธ Updated

    . #68 <https://github.com/pyexcel/pyexcel/issues/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 <https://github.com/pyexcel/pyexcel/issues/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.

  • v0.4.3 Changes

    โž• 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.