Source code for anyblok_io.bloks.io_csv.mixin

# This file is a part of the AnyBlok project
#
#    Copyright (C) 2015 Jean-Sebastien SUZANNE <jssuzanne@anybox.fr>
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file,You can
# obtain one at http://mozilla.org/MPL/2.0/.
from anyblok import Declarations
from anyblok.column import String, Integer


register = Declarations.register
Mixin = Declarations.Mixin


[docs]@register(Mixin) class IOCSVFieldMixin: id = Integer(primary_key=True) name = String(nullable=False)
[docs]@register(Mixin) class IOCSVMixin: csv_delimiter = String(nullable=False, default=",") csv_quotechar = String(nullable=False, default='"')