Loading data using YAML files

A third format for data import is YAML, which gives you less overhead than XML, but still more control than CSV. Traditionally, it was used for tests rather than for data import, which is why you have more possibilities to call code here.

How to do it...

Take the following steps to translate the first recipe in this chapter to YAML:

  1. Add in a file called data/demo.yml to your manifest, in the demo section:
        'demo': [
            'data/demo.yml',
        ],
  2. Add content to this file:
    - !record {id: author_af, model: res.partner} name: Alexandre Fayolle - !record {id: author_dr, model: res.partner} name: Daniel Reis - !record {id: author_hb, model: res.partner} name: Holger Brunn - !record {id: book_cookbook, model: library.book} name: Odoo cookbook ...

Get Odoo Development Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.