# DATA.🐫

Gist files prefixed with `data.` are stored in Odoo. This might be helpful for mapping or initial data imports.

For example, a gist file named `data.restaurant.csv` can be accessed in task code via `DATA.restaurant.csv()`.

Supported parsers include: 

* `csv()`
* `json()`
* `yaml()`
* `html()` (for markdown files)

To obtain the raw binary data, use `DATA.restaurant.file_content`.
To get decoded text, use `DATA.restaurant.text`.

> Note that gists have a size limit: a maximum of **100MB** per file.

Documentation for the `DATA.🐫` tab can be specified in the gist file `datas.markdown`.