Flask-Excel
Flask-Excel copied to clipboard
A flask extension using pyexcel to read, manipulate and write data in different excel formats: csv, ods, xls, xlsx and xlsm.
Flask-Excel doesn't support sqlalchemy's [Enum type](https://docs.sqlalchemy.org/en/14/core/type_basics.html#sqlalchemy.types.Enum). Example: import enum class Animal(enum.Enum): dog = "Dog" cat = "Cat" rabbit = "Rabbit" class Child(db.Model): name = db.Column(db.String(100)) age = db.Column(db.Integer) animal =...
Flask 1.1.2 Flask-Excel 0.0.7 when running the quick start sample from http://flask.pyexcel.org/en/latest/, it raised error: - http://localhost:5000/download `AttributeError: module 'flask_excel' has no attribute 'make_response_from_array'` - http://localhost:5000/upload AttributeError: 'Request' object has...
Hi, when i use the save_book_to_database almost keeping with your example i kept getting the Index out of range error, but with other functions such as get_dict it works fine,...
Is there anyway that the function ```make_response_from_records``` does not sort the keys in each of the records
Does this package support exporting HTML tables (jinja template) to excel? It would be a nice feature to have. Sometimes we might just want to design the table layout and...
I was wondering what the best way is for creating a multiple sheet Excel book. I have data that is being generated live (nothing from SQL). My idea was to...
Hello, I suggest telling about the **auto_commit** parameter in the documentation for **save_to_database** and **save_book_to_database** methods. In my need, when uploading a big table, if any row goes wrong (e.g.:...
Hey ~ I am using office to open the CSV file and the reason may be that utf8sig is not used, so I am in response. Charset = 'utf8-sig' setting...
https://readthedocs.org/projects/flask-excel/builds/8760397/
Hello! I need help , again) if i use mapdict parameter for CSV file i'ts raise builtins.KeyError KeyError: 'sku' but for xslx files, with same content, its work prefectly My...