This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.core import serializers | |
from django.db.models import get_app, get_models | |
from django.db.models.query import QuerySet | |
def export_filer_models(output_file=None): | |
""" | |
Exports filer models to output_file. | |
""" | |
app = get_app('filer') |