Browse Source

csv export

ansible-setup-and-deploy
Michael Murtaugh 6 years ago
parent
commit
7938ec3591
  1. 17
      app/views.py
  2. 2
      import_csv.py

17
app/views.py

@ -394,6 +394,23 @@ def add_to_stack(id):
db.session.commit()
return render_template('show_stack_detail.html', stack=stack)
from csv import DictWriter
import io
@app.route('/export/csv', methods=['GET'])
def export_csv ():
output = io.StringIO()
fieldnames = ['title', 'authors']
csv = DictWriter(output,fieldnames)
csv.writeheader()
# for i in range(10):
# csv.writerow({'ID': i, 'fruit': "Tomato"})
for book in Book.query.order_by("title"):
authors = ", ".join([x.author_name for x in book.authors])
csv.writerow({"title": book.title, "authors": authors})
resp = Response(output.getvalue(), mimetype="text/plain")
# resp.headers["Content-Disposition"] = "attachment;filename=export.csv"
return resp
###
# The API
###

2
import_csv.py

@ -39,7 +39,7 @@ with open(args.csv) as f:
if stack:
b = db.session.query(Stack).filter_by(stack_name=stack).first()
if b == None:
b = Stack(stack_name=stack, stack_description=stack_description)
b = Stack(stack_name=stack, stack_description=None)
db.session.add(b)
book.stacks.append(b)

Loading…
Cancel
Save