Easily render CSVs within any flask application
Project description
Easily render CSVs within any flask application
Install
Flask-CSV is packaged and you can use pip to install it:
pip install flask_csv
How to use ?
Flask-CSV has a simple hepler method named send_csv which allows you to send csv files in flask endpoints. It takes an iterable of dict, a filename and a list of fields. The keys of all dict in the iterable must correspond to given fields.
It will return a Response object with filename set and body containing the CSV data.
You will better understand with a short example.
@app.route("/")
def index():
return send_csv([{"id": 42, "foo": "bar"}, {"id": 91, "foo": "baz"}],
"test.csv", ["id", "foo"])
Hitting this endpoint will return:
id,foo 42,bar 91,baz
Passing additionnal parameters
The remaining arguments of send_csv will be passed to send_file. For example, to disable caching, do the following:
send_csv([{"id": 42, "foo": "bar"}, {"id": 91, "foo": "baz"}],
"test.csv", ["id", "foo"], cache_timeout=0)
You can also pass additionnal parameters to the CSV writer like this:
send_csv([{"foo": 42}, {"bar": "baz"}], "test.csv", ["foo"],
writer_kwargs={"extrasaction": "ignore"})
In this example, the “bar” key will not raise a ValueError since the writer will be given the parameter extrasaction with the value “ignore”.
Change delimiter
You can also change the delimiter with the delimiter option.
send_csv([{"id": 42, "foo": "bar"}, {"id": 91, "foo": "baz"}],
"test.csv", ["id", "foo"], delimiter=';')
Will result in:
id;foo 42;bar 91;baz
Specifying file encoding
You can also specify the encoding used to send the file, with the encoding option (utf-8 by default).
send_csv([{"id": 42, "foo": "bar"}, {"id": 91, "foo": "baz"}],
"test.csv", ["id", "foo"], encoding='iso-8859-1')
Use Marshmallow Schemas
You can use Schema from marshmallow by passing it as schema to send_csv. If you want to keep only ids and ensure they are integers, you could do:
class IdSchema(Schema):
id = fields.Integer()
send_csv([{"id": 42, "foo": "bar"}, {"id": 91, "foo": "baz"}],
"test.csv", ["id", "foo"], schema=IdSchema())
And that would result in this:
id 42 91
SystemError returned a result with an error set
When using uwsgi for your flask app, it might raise this kind of error on the send_file method. If that were the case, adding the following option to your uwsgi conf should solve it :
wsgi-disable-file-wrapper = true
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Flask-CSV-1.2.1.tar.gz
.
File metadata
- Download URL: Flask-CSV-1.2.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 384aebb21e2cee978b23fb09a54dcb231336eee65699f3bb09b6fa3c4e2ce6ec |
|
MD5 | e11a983b62bb8f2b2aa0a6312e61f62a |
|
BLAKE2b-256 | f59eb16eb61fc32dbfdca2da934466d44ebfaa84a7ce29c9e4012e20a6fb67e3 |
File details
Details for the file Flask_CSV-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: Flask_CSV-1.2.1-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 065fd2e11e2ef67b18182acec2fd47e0b4f16030c2d0a7ff4cedb27b409504a3 |
|
MD5 | f657005b348193ca2142e5ed227efd0c |
|
BLAKE2b-256 | 871317deefcc17965d9fcaae85ba9c72ae852d45c54110a938c3e6777028fd01 |