django-yamlfield

A Django database field for storing YAML data

Getting started

Install this module

pipenv install django-yamlfield

Add it to one of your models.

from django.db import models
from yamlfield.fields import YAMLField

class YourModel(models.Model):
    yaml = YAMLField()

That's it! You can now start storing YAML data.

Credits

This module was developed by Ben Welsh, based on Brad Jasper's django-jsonfield.

Other resources

Build Status PyPI version Coverage Status