0c667b13ae
* CSV * PDF (requires Python dependency `weasyprint`) * ODS (requires Python dependency `pyexcel_ods3`) Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
300 B
Python
13 lines
300 B
Python
from pyexcel_ods3 import save_data
|
|
from collections import OrderedDict
|
|
from io import BytesIO as StringIO
|
|
import json
|
|
|
|
def generate(data):
|
|
struct = json.loads(data)
|
|
data = OrderedDict()
|
|
data.update({"Sheet 1": struct})
|
|
io = StringIO()
|
|
save_data(io, data)
|
|
return io.getvalue()
|